diff --git a/3rdparty b/3rdparty index 57245d2a64c99aab8a438f909988e7a4ffef5b23..82d02dd48ad11312bd740c57720dc84b4d66fa8a 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 57245d2a64c99aab8a438f909988e7a4ffef5b23 +Subproject commit 82d02dd48ad11312bd740c57720dc84b4d66fa8a diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index aed53d5db5a33de4f8a7cb48cb2a0b15e1ff5a53..323b70706ce1dda148944c3504a2c020bbad0159 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -2,7 +2,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get data diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 4b4a7f8948d4d2bbd1a2a19fec65484b79fa1285..b2e144c4b8f5540859dd2e37573c40bb0d9fc3af 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -23,7 +23,7 @@ // Check if we are a user OCP\User::checkLoggedIn(); -\OC::$session->close(); +\OC::$server->getSession()->close(); $files = $_GET["files"]; $dir = $_GET["dir"]; diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd8af39bada3ec55abb2c0fde56b000463823faa..4ab5b9a779c6d084e95679a55394fc0976761e00 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -7,7 +7,7 @@ if (isset($_GET['dir'])) { } OCP\JSON::checkLoggedIn(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // send back json OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir))); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index b4641343ed4f2b0c534c888f5dfc23668ca60e0f..16e48a2c2afe6110b2a1e46ba6b5205246b676fd 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -1,8 +1,8 @@ close(); -$l = OC_L10N::get('files'); +\OC::$server->getSession()->close(); +$l = \OC::$server->getL10N('files'); // Load the files $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/mimeicon.php b/apps/files/ajax/mimeicon.php index 6557ff941ac1dc8095d9f62ce7948fcce2e5e49b..fdbcc441a7844eeaab32b0220e8c037dfbaffc8b 100644 --- a/apps/files/ajax/mimeicon.php +++ b/apps/files/ajax/mimeicon.php @@ -1,4 +1,4 @@ close(); +\OC::$server->getSession()->close(); print OC_Helper::mimetypeIcon($_GET['mime']); diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 0a8dbc24a650abb41f5616f140c51fe0b5e628a8..3a07554ad008ffaf543c55c823d3d94aae695d29 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -2,14 +2,14 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get data $dir = stripslashes($_POST["dir"]); $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); -$l = OC_L10N::get('files'); +$l = \OC::$server->getL10N('files'); if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 9cfe51a6218e635e80cadb3ea53f00c803ad528d..606576760ec014f28b22712219abb53919fbaf85 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -7,7 +7,7 @@ if(!OC_User::isLoggedIn()) { exit; } -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get the params $dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : ''; @@ -46,7 +46,7 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } -$l10n = \OC_L10n::get('files'); +$l10n = \OC::$server->getL10N('files'); $result = array( 'success' => false, diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index 89c241189d71cf8f0fc3332e4c79925e58a79d4b..ea7a10c2ab9d5870674c77ca04d6c98347983a25 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -5,13 +5,13 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); // Get the params $dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : ''; $foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : ''; -$l10n = \OC_L10n::get('files'); +$l10n = \OC::$server->getL10N('files'); $result = array( 'success' => false, diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index fa3ddace63d4b887d077bd78bee231589dc5aade..00c8a1e44db25fcc7768272344e602e44dcf22b5 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -23,11 +23,11 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -\OC::$session->close(); +\OC::$server->getSession()->close(); $files = new \OCA\Files\App( \OC\Files\Filesystem::getView(), - \OC_L10n::get('files') + \OC::$server->getL10N('files') ); $result = $files->rename( $_GET["dir"], diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index d5d884838013407ced18732a3b576a4ab5000c7d..3ec7f9394b115e2d1a29be20e47a2f41de4b5a49 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -1,6 +1,6 @@ close(); +\OC::$server->getSession()->close(); $force = (isset($_GET['force']) and ($_GET['force'] === 'true')); $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index b737d5f8710aa7fe975a3b29f65b321d225126df..b960e02ced741c0eecd0a5535eb963bd386195f7 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -10,7 +10,7 @@ OCP\JSON::setContentTypeHeader('text/plain'); $allowedPermissions = OCP\PERMISSION_ALL; $errorCode = null; -$l = OC_L10N::get('files'); +$l = \OC::$server->getL10N('files'); if (empty($_POST['dirToken'])) { // The standard case, files are uploaded through logged in users :) OCP\JSON::checkLoggedIn(); @@ -68,7 +68,7 @@ if (empty($_POST['dirToken'])) { OCP\JSON::callCheck(); if (!\OCP\App::isEnabled('files_encryption')) { // encryption app need to create keys later, so can't close too early - \OC::$session->close(); + \OC::$server->getSession()->close(); } diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 9af36c682fdc13b201a3a5b2838eefeddc5e8091..3567bc26def8a89f8eaae4dd1ee51cc83caf7156 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -1,6 +1,6 @@ getL10N('files'); OCP\App::registerAdmin('files', 'admin'); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3cbc25fc24b1178dfbdbe0a2a699ebedbefc42da..fd11a80248df7823a8a77c04d721aa41065ee9dc 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -703,7 +703,7 @@ "class": "modified", "title": formatDate(mtime), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' - }).text( relative_modified_date(mtime / 1000) )); + }).text(OC.Util.relativeModifiedDate(mtime))); tr.find('.filesize').text(simpleSize); tr.append(td); return tr; diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index b2eec2a830c171baafa14b5e883b2327c298a2be..7e7b84617206a667e49dc91a69ce981fb016ae83 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", "Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", +"All files" => "সব ফাইল", "Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", "File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", "{new_name} already exists" => "{new_name} টি বিদ্যমান", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 91ea214445af0c10e4269e2707564142d68cebfc..46246047ac9ef5fed41c55f75252e9288e7fbfc4 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -68,6 +68,7 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "{dirs} and {files}" => "{dirs} ja {files}", +"%s could not be renamed as it has been deleted" => "%s ei saa ümber nimetada, kuna see on kustutatud", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 77dd45161993d856b64d940738f356f4c4dde082..5eae5e46f275992e09546bec12c335d14fdad350 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "New" => "חדש", "Text file" => "קובץ טקסט", +"New folder" => "תיקייה חדשה", "Folder" => "תיקייה", "From link" => "מקישור", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index b44cd02a8af70eda7d16dab3f72b79acb9b01ede..85c439ecab19db99c0bbd495a9a4aee9cf983abf 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -11,14 +11,14 @@ $TRANSLATIONS = array( "The target folder has been moved or deleted." => "A célmappa törlődött, vagy áthelyezésre került.", "The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", "Not a valid source" => "A kiinduló állomány érvénytelen", -"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", -"The file exceeds your quota by %s" => "A fájl meghaladja kvótádat %s-kal", +"Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat!", +"The file exceeds your quota by %s" => "A fájl ennyivel meghaladja a kvótáját: %s", "Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", "Error when creating the file" => "Hiba történt az állomány létrehozásakor", "Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", "Error when creating the folder" => "Hiba történt a mappa létrehozásakor", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", -"Invalid Token" => "Hibás mappacím", +"Invalid Token" => "Hibás token", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", @@ -31,13 +31,13 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "A feltöltés nem sikerült. Nem található a feltöltendő állomány.", "Upload failed. Could not get file info." => "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el.", "Invalid directory." => "Érvénytelen mappa.", -"Files" => "Fájlok", +"Files" => "Fájlkezelő", "All files" => "Az összes állomány", "Unable to upload {filename} as it is a directory or has 0 bytes" => "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll.", "Total file size {size1} exceeds upload limit {size2}" => "A teljes fájlméret: {size1} meghaladja a feltöltési limitet: {size2}", "Not enough free space, you are uploading {size1} but only {size2} is left" => "Nincs elég szabad hely. A feltöltés mérete {size1}, de csak ennyi hely van: {size2}.", "Upload cancelled." => "A feltöltést megszakítottuk.", -"Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", +"Could not get result from server." => "A kiszolgálótól nem kapható meg a művelet eredménye.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty" => "Az URL-cím nem maradhat kitöltetlenül", "{new_name} already exists" => "{new_name} már létezik", @@ -79,7 +79,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Ezt a címet használja, ha WebDAV-on keresztül szeretné elérni a fájljait", "New" => "Új", -"New text file" => "Új szöveges file", +"New text file" => "Új szövegfájl", "Text file" => "Szövegfájl", "New folder" => "Új mappa", "Folder" => "Mappa", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index f610ee902d54438bc02e0468caf329d0c2091485..502c313aa06c12c8beb44f215e1cc31cdbcefe8b 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,5 +1,6 @@ "Ukjend feil", "Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 1fcf85fc85617fa6a7efc229900c51d3b4064812..dfa599e10ac0d423c70ab38cb77def1d1752ffbc 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente.", "Not a valid source" => "Não é uma fonte válida", "Server is not allowed to open URLs, please check the server configuration" => "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor", +"The file exceeds your quota by %s" => "O ficheiro excede a sua quota por %s", "Error while downloading %s to %s" => "Erro ao transferir %s para %s", "Error when creating the file" => "Erro ao criar o ficheiro", "Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", @@ -68,6 +69,7 @@ $TRANSLATIONS = array( "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "{dirs} and {files}" => "{dirs} e {files}", +"%s could not be renamed as it has been deleted" => "Não foi possível renomear %s devido a ter sido eliminado", "%s could not be renamed" => "%s não pode ser renomeada", "Upload (max. %s)" => "Enviar (max. %s)", "File handling" => "Manuseamento do ficheiro", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 39ec148fba0c16f78682b9cd6f799afb8f5f19be..e269cca316860ce9e88afb155f95569544d4a0fc 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "The name %s is already used in the folder %s. Please choose a different name." => "%s 已經被使用於資料夾 %s ,請換一個名字", "Not a valid source" => "不是有效的來源", "Server is not allowed to open URLs, please check the server configuration" => "伺服器上不允許開啓 URL ,請檢查伺服器設定", +"The file exceeds your quota by %s" => "這個檔案大小超出配額 %s", "Error while downloading %s to %s" => "下載 %s 到 %s 失敗", "Error when creating the file" => "建立檔案失敗", "Folder name cannot be empty." => "資料夾名稱不能留空", diff --git a/apps/files_encryption/ajax/adminrecovery.php b/apps/files_encryption/ajax/adminrecovery.php index 303ba0e16e12dd9b71aa49ee163e8aaa99f0ddad..070ca6f667e2e789194bc69bce4cc06d2cf507a4 100644 --- a/apps/files_encryption/ajax/adminrecovery.php +++ b/apps/files_encryption/ajax/adminrecovery.php @@ -13,7 +13,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('files_encryption'); +$l = \OC::$server->getL10N('files_encryption'); $return = false; // Enable recoveryAdmin diff --git a/apps/files_encryption/ajax/changeRecoveryPassword.php b/apps/files_encryption/ajax/changeRecoveryPassword.php index 99cc7b3cddeb034a8e6bfd3baa824660de694def..71fbe333fe0bb450640c2c8dd9e35b95c63de82b 100644 --- a/apps/files_encryption/ajax/changeRecoveryPassword.php +++ b/apps/files_encryption/ajax/changeRecoveryPassword.php @@ -15,7 +15,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); $return = false; diff --git a/apps/files_encryption/ajax/updatePrivateKeyPassword.php b/apps/files_encryption/ajax/updatePrivateKeyPassword.php index a14c9fe5076d9447a34a32df62dc70236ceccb6f..f88e9c64dfda477136a7530947777c16b387fc25 100644 --- a/apps/files_encryption/ajax/updatePrivateKeyPassword.php +++ b/apps/files_encryption/ajax/updatePrivateKeyPassword.php @@ -15,7 +15,7 @@ use OCA\Encryption; \OCP\JSON::checkAppEnabled('files_encryption'); \OCP\JSON::callCheck(); -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); $return = false; diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index b436587dfaf47492b9abb2a59ee4eebd953a8e08..c33a5a531f5368f00dbe4102bf920670786e2feb 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -4,7 +4,7 @@ if (!isset($_)) { //also provide standalone error page require_once __DIR__ . '/../../../lib/base.php'; require_once __DIR__ . '/../lib/crypt.php'; - $l = OC_L10N::get('files_encryption'); + $l = \OC::$server->getL10N('files_encryption'); if (isset($_GET['errorCode'])) { $errorCode = $_GET['errorCode']; diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 63e335bd2b9d9c90143d2431830037a2bd2baf0e..43699906e4dafe4b40402c0fe0be917ec0ba9545 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,5 +1,6 @@ "সংকেতায়ন" +"Encryption" => "সংকেতায়ন", +"Change Password" => "কূটশব্দ পরিবর্তন করুন" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index b455bf09bc4c1a6f879b3b452b6c6146b61f1309..dc2cf9e24759bbdfba9c55ccdf7f7bd118ac3a5b 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -30,6 +30,8 @@ $TRANSLATIONS = array( "New Recovery key password" => "Ny Gendannelsesnøgle kodeord", "Repeat New Recovery key password" => "Gentag dannelse af ny gendannaleses nøglekode", "Change Password" => "Skift Kodeord", +"Your private key password no longer matches your log-in password." => "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.", +"Set your old private key password to your current log-in password:" => "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ", " If you don't remember your old password you can ask your administrator to recover your files." => "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.", "Old log-in password" => "Gammelt login kodeord", "Current log-in password" => "Nuvrende login kodeord", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index f6ef4d09956498b71d5647308eef7699e552d328..7e298d8e6631065739dd50facae4c029d0c4e6f9 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "New Recovery key password" => "Uus taastevõtme parool", "Repeat New Recovery key password" => "Korda uut taastevõtme parooli", "Change Password" => "Muuda parooli", +"Your private key password no longer matches your log-in password." => "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.", " If you don't remember your old password you can ask your administrator to recover your files." => "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", "Old log-in password" => "Vana sisselogimise parool", "Current log-in password" => "Praegune sisselogimise parool", diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index ff8fbd24ecbbc44e5a58274cf6e10a12ac88ad65..7bd4fd02421da2ecb3239f3f8823b9701231061b 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -117,7 +117,7 @@ class Session { */ public function setPrivateKey($privateKey) { - \OC::$session->set('privateKey', $privateKey); + \OC::$server->getSession()->set('privateKey', $privateKey); return true; @@ -140,7 +140,7 @@ class Session { */ public function setInitialized($init) { - \OC::$session->set('encryptionInitialized', $init); + \OC::$server->getSession()->set('encryptionInitialized', $init); return true; @@ -150,8 +150,8 @@ class Session { * remove encryption keys and init status from session */ public function closeSession() { - \OC::$session->remove('encryptionInitialized'); - \OC::$session->remove('privateKey'); + \OC::$server->getSession()->remove('encryptionInitialized'); + \OC::$server->getSession()->remove('privateKey'); } @@ -162,8 +162,8 @@ class Session { * @note this doesn not indicate of the init was successful, we just remeber the try! */ public function getInitialized() { - if (!is_null(\OC::$session->get('encryptionInitialized'))) { - return \OC::$session->get('encryptionInitialized'); + if (!is_null(\OC::$server->getSession()->get('encryptionInitialized'))) { + return \OC::$server->getSession()->get('encryptionInitialized'); } else { return self::NOT_INITIALIZED; } @@ -179,8 +179,8 @@ class Session { if (\OCA\Encryption\Helper::isPublicAccess()) { return $this->getPublicSharePrivateKey(); } else { - if (!is_null(\OC::$session->get('privateKey'))) { - return \OC::$session->get('privateKey'); + if (!is_null(\OC::$server->getSession()->get('privateKey'))) { + return \OC::$server->getSession()->get('privateKey'); } else { return false; } @@ -194,7 +194,7 @@ class Session { */ public function setPublicSharePrivateKey($privateKey) { - \OC::$session->set('publicSharePrivateKey', $privateKey); + \OC::$server->getSession()->set('publicSharePrivateKey', $privateKey); return true; @@ -207,8 +207,8 @@ class Session { */ public function getPublicSharePrivateKey() { - if (!is_null(\OC::$session->get('publicSharePrivateKey'))) { - return \OC::$session->get('publicSharePrivateKey'); + if (!is_null(\OC::$server->getSession()->get('publicSharePrivateKey'))) { + return \OC::$server->getSession()->get('publicSharePrivateKey'); } else { return false; } diff --git a/apps/files_external/3rdparty/select2/LICENSE b/apps/files_external/3rdparty/select2/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..0247cc7627392f27e171c531bc9f2efc09b45010 --- /dev/null +++ b/apps/files_external/3rdparty/select2/LICENSE @@ -0,0 +1,18 @@ +Copyright 2014 Igor Vaynberg + +Version: @@ver@@ Timestamp: @@timestamp@@ + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License at: + +http://www.apache.org/licenses/LICENSE-2.0 +http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the Apache License +or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the Apache License and the GPL License for the specific language governing +permissions and limitations under the Apache License and the GPL License. diff --git a/apps/files_external/3rdparty/select2/README.md b/apps/files_external/3rdparty/select2/README.md new file mode 100644 index 0000000000000000000000000000000000000000..406fe79dc9578ba50eea26c7da0b3d917d443f90 --- /dev/null +++ b/apps/files_external/3rdparty/select2/README.md @@ -0,0 +1,90 @@ +Select2 +======= + +Select2 is a jQuery-based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results. + +To get started, checkout examples and documentation at http://ivaynberg.github.com/select2 + +Use cases +--------- + +* Enhancing native selects with search. +* Enhancing native selects with a better multi-select interface. +* Loading data from JavaScript: easily load items via ajax and have them searchable. +* Nesting optgroups: native selects only support one level of nested. Select2 does not have this restriction. +* Tagging: ability to add new items on the fly. +* Working with large, remote datasets: ability to partially load a dataset based on the search term. +* Paging of large datasets: easy support for loading more pages when the results are scrolled to the end. +* Templating: support for custom rendering of results and selections. + +Browser compatibility +--------------------- +* IE 8+ +* Chrome 8+ +* Firefox 10+ +* Safari 3+ +* Opera 10.6+ + +Usage +----- +You can source Select2 directly from a [CDN like JSDliver](http://www.jsdelivr.com/#!select2), [download it from this GitHub repo](https://github.com/ivaynberg/select2/tags), or use one of the integrations below. + +Integrations +------------ + +* [Wicket-Select2](https://github.com/ivaynberg/wicket-select2) (Java / [Apache Wicket](http://wicket.apache.org)) +* [select2-rails](https://github.com/argerim/select2-rails) (Ruby on Rails) +* [AngularUI](http://angular-ui.github.com/#directives-select2) ([AngularJS](angularjs.org)) +* [Django](https://github.com/applegrew/django-select2) +* [Symfony](https://github.com/19Gerhard85/sfSelect2WidgetsPlugin) +* [Symfony2](https://github.com/avocode/FormExtensions) +* [Bootstrap 2](https://github.com/t0m/select2-bootstrap-css) and [Bootstrap 3](https://github.com/t0m/select2-bootstrap-css/tree/bootstrap3) (CSS skins) +* [Meteor](https://github.com/nate-strauser/meteor-select2) (modern reactive JavaScript framework; + [Bootstrap 3 skin](https://github.com/esperadomedia/meteor-select2-bootstrap3-css/)) +* [Yii 2.x](http://demos.krajee.com/widgets#select2) +* [Yii 1.x](https://github.com/tonybolzan/yii-select2) + +Internationalization (i18n) +--------------------------- + +Select2 supports multiple languages by simply including the right +language JS file (`select2_locale_it.js`, `select2_locale_nl.js`, etc.). + +Missing a language? Just copy `select2_locale_en.js.template`, translate +it, and make a pull request back to Select2 here on GitHub. + +Bug tracker +----------- + +Have a bug? Please create an issue here on GitHub! + +https://github.com/ivaynberg/select2/issues + +Mailing list +------------ + +Have a question? Ask on our mailing list! + +select2@googlegroups.com + +https://groups.google.com/d/forum/select2 + + +Copyright and license +--------------------- + +Copyright 2012 Igor Vaynberg + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: + +http://www.apache.org/licenses/LICENSE-2.0 +http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the Apache License +or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the Apache License and the GPL License for the specific language governing +permissions and limitations under the Apache License and the GPL License. diff --git a/apps/files_external/3rdparty/select2/bower.json b/apps/files_external/3rdparty/select2/bower.json new file mode 100644 index 0000000000000000000000000000000000000000..80e8596e8062fcde0334f34f98dafd96389fb63e --- /dev/null +++ b/apps/files_external/3rdparty/select2/bower.json @@ -0,0 +1,8 @@ +{ + "name": "select2", + "version": "3.4.8", + "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], + "dependencies": { + "jquery": ">= 1.7.1" + } +} diff --git a/apps/files_external/3rdparty/select2/component.json b/apps/files_external/3rdparty/select2/component.json new file mode 100644 index 0000000000000000000000000000000000000000..ad7abf9d9fac867adcb320e1f93b42f714e1e024 --- /dev/null +++ b/apps/files_external/3rdparty/select2/component.json @@ -0,0 +1,66 @@ +{ + "name": "select2", + "repo": "ivaynberg/select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "version": "3.4.8", + "demo": "http://ivaynberg.github.io/select2/", + "keywords": [ + "jquery" + ], + "main": "select2.js", + "styles": [ + "select2.css", + "select2-bootstrap.css" + ], + "scripts": [ + "select2.js", + "select2_locale_ar.js", + "select2_locale_bg.js", + "select2_locale_ca.js", + "select2_locale_cs.js", + "select2_locale_da.js", + "select2_locale_de.js", + "select2_locale_el.js", + "select2_locale_es.js", + "select2_locale_et.js", + "select2_locale_eu.js", + "select2_locale_fa.js", + "select2_locale_fi.js", + "select2_locale_fr.js", + "select2_locale_gl.js", + "select2_locale_he.js", + "select2_locale_hr.js", + "select2_locale_hu.js", + "select2_locale_id.js", + "select2_locale_is.js", + "select2_locale_it.js", + "select2_locale_ja.js", + "select2_locale_ka.js", + "select2_locale_ko.js", + "select2_locale_lt.js", + "select2_locale_lv.js", + "select2_locale_mk.js", + "select2_locale_ms.js", + "select2_locale_nl.js", + "select2_locale_no.js", + "select2_locale_pl.js", + "select2_locale_pt-BR.js", + "select2_locale_pt-PT.js", + "select2_locale_ro.js", + "select2_locale_ru.js", + "select2_locale_sk.js", + "select2_locale_sv.js", + "select2_locale_th.js", + "select2_locale_tr.js", + "select2_locale_uk.js", + "select2_locale_vi.js", + "select2_locale_zh-CN.js", + "select2_locale_zh-TW.js" + ], + "images": [ + "select2-spinner.gif", + "select2.png", + "select2x2.png" + ], + "license": "MIT" +} diff --git a/apps/files_external/3rdparty/select2/composer.json b/apps/files_external/3rdparty/select2/composer.json new file mode 100644 index 0000000000000000000000000000000000000000..c50fadba855bfcce5263c09848f1cd4dbb29d251 --- /dev/null +++ b/apps/files_external/3rdparty/select2/composer.json @@ -0,0 +1,29 @@ +{ + "name": + "ivaynberg/select2", + "description": "Select2 is a jQuery based replacement for select boxes.", + "version": "3.4.8", + "type": "component", + "homepage": "http://ivaynberg.github.io/select2/", + "license": "Apache-2.0", + "require": { + "robloach/component-installer": "*", + "components/jquery": ">=1.7.1" + }, + "extra": { + "component": { + "scripts": [ + "select2.js" + ], + "files": [ + "select2.js", + "select2_locale_*.js", + "select2.css", + "select2-bootstrap.css", + "select2-spinner.gif", + "select2.png", + "select2x2.png" + ] + } + } +} diff --git a/apps/files_external/3rdparty/select2/package.json b/apps/files_external/3rdparty/select2/package.json new file mode 100644 index 0000000000000000000000000000000000000000..75ad84acaf839365a01341a7cda46d131718f901 --- /dev/null +++ b/apps/files_external/3rdparty/select2/package.json @@ -0,0 +1,20 @@ +{ + "name" : "Select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "homepage": "http://ivaynberg.github.io/select2", + "author": "Igor Vaynberg", + "repository": {"type": "git", "url": "git://github.com/ivaynberg/select2.git"}, + "main": "select2.js", + "version": "3.4.8", + "jspm": { + "main": "select2", + "files": ["select2.js", "select2.png", "select2.css", "select2-spinner.gif"], + "shim": { + "select2": { + "imports": ["jquery", "./select2.css!"], + "exports": "$" + } + }, + "buildConfig": { "uglify": true } + } +} diff --git a/apps/files_external/3rdparty/select2/release.sh b/apps/files_external/3rdparty/select2/release.sh new file mode 100755 index 0000000000000000000000000000000000000000..0d2e279ead4e3c11f0732207e42169012daf6de0 --- /dev/null +++ b/apps/files_external/3rdparty/select2/release.sh @@ -0,0 +1,79 @@ +#!/bin/bash +set -e + +echo -n "Enter the version for this release: " + +read ver + +if [ ! $ver ]; then + echo "Invalid version." + exit +fi + +name="select2" +js="$name.js" +mini="$name.min.js" +css="$name.css" +release="$name-$ver" +tag="$ver" +branch="build-$ver" +curbranch=`git branch | grep "*" | sed "s/* //"` +timestamp=$(date) +tokens="s/@@ver@@/$ver/g;s/\@@timestamp@@/$timestamp/g" +remote="github" + +echo "Pulling from origin" + +git pull + +echo "Updating Version Identifiers" + +sed -E -e "s/\"version\": \"([0-9\.]+)\",/\"version\": \"$ver\",/g" -i -- bower.json select2.jquery.json component.json composer.json package.json + +git add bower.json +git add select2.jquery.json +git add component.json +git add composer.json +git add package.json + +git commit -m "modified version identifiers in descriptors for release $ver" +git push + +git branch "$branch" +git checkout "$branch" + +echo "Tokenizing..." + +find . -name "$js" | xargs -I{} sed -e "$tokens" -i -- {} +find . -name "$css" | xargs -I{} sed -e "$tokens" -i -- {} + +sed -e "s/latest/$ver/g" -i -- bower.json + +git add "$js" +git add "$css" + +echo "Minifying..." + +echo "/*" > "$mini" +cat LICENSE | sed "$tokens" >> "$mini" +echo "*/" >> "$mini" + +curl -s \ + --data-urlencode "js_code@$js" \ + http://marijnhaverbeke.nl/uglifyjs \ + >> "$mini" + +git add "$mini" + +git commit -m "release $ver" + +echo "Tagging..." +git tag -a "$tag" -m "tagged version $ver" +git push "$remote" --tags + +echo "Cleaning Up..." + +git checkout "$curbranch" +git branch -D "$branch" + +echo "Done" diff --git a/apps/files_external/3rdparty/select2/select2-bootstrap.css b/apps/files_external/3rdparty/select2/select2-bootstrap.css new file mode 100644 index 0000000000000000000000000000000000000000..3b83f0a2297833158d2a3503c1c63ec4bd0bf1e5 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2-bootstrap.css @@ -0,0 +1,87 @@ +.form-control .select2-choice { + border: 0; + border-radius: 2px; +} + +.form-control .select2-choice .select2-arrow { + border-radius: 0 2px 2px 0; +} + +.form-control.select2-container { + height: auto !important; + padding: 0; +} + +.form-control.select2-container.select2-dropdown-open { + border-color: #5897FB; + border-radius: 3px 3px 0 0; +} + +.form-control .select2-container.select2-dropdown-open .select2-choices { + border-radius: 3px 3px 0 0; +} + +.form-control.select2-container .select2-choices { + border: 0 !important; + border-radius: 3px; +} + +.control-group.warning .select2-container .select2-choice, +.control-group.warning .select2-container .select2-choices, +.control-group.warning .select2-container-active .select2-choice, +.control-group.warning .select2-container-active .select2-choices, +.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.warning .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #C09853 !important; +} + +.control-group.warning .select2-container .select2-choice div { + border-left: 1px solid #C09853 !important; + background: #FCF8E3 !important; +} + +.control-group.error .select2-container .select2-choice, +.control-group.error .select2-container .select2-choices, +.control-group.error .select2-container-active .select2-choice, +.control-group.error .select2-container-active .select2-choices, +.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.error .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #B94A48 !important; +} + +.control-group.error .select2-container .select2-choice div { + border-left: 1px solid #B94A48 !important; + background: #F2DEDE !important; +} + +.control-group.info .select2-container .select2-choice, +.control-group.info .select2-container .select2-choices, +.control-group.info .select2-container-active .select2-choice, +.control-group.info .select2-container-active .select2-choices, +.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.info .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #3A87AD !important; +} + +.control-group.info .select2-container .select2-choice div { + border-left: 1px solid #3A87AD !important; + background: #D9EDF7 !important; +} + +.control-group.success .select2-container .select2-choice, +.control-group.success .select2-container .select2-choices, +.control-group.success .select2-container-active .select2-choice, +.control-group.success .select2-container-active .select2-choices, +.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, +.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, +.control-group.success .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #468847 !important; +} + +.control-group.success .select2-container .select2-choice div { + border-left: 1px solid #468847 !important; + background: #DFF0D8 !important; +} diff --git a/apps/files_external/3rdparty/select2/select2-spinner.gif b/apps/files_external/3rdparty/select2/select2-spinner.gif new file mode 100644 index 0000000000000000000000000000000000000000..5b33f7e54f4e55b6b8774d86d96895db9af044b4 Binary files /dev/null and b/apps/files_external/3rdparty/select2/select2-spinner.gif differ diff --git a/apps/files_external/3rdparty/select2/select2.css b/apps/files_external/3rdparty/select2/select2.css new file mode 100644 index 0000000000000000000000000000000000000000..1eb4d229f6d4468fc52413f0fe9ebfa5de1892aa --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.css @@ -0,0 +1,646 @@ +/* +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 +*/ +.select2-container { + margin: 0; + position: relative; + display: inline-block; + /* inline-block for ie7 */ + zoom: 1; + *display: inline; + vertical-align: middle; +} + +.select2-container, +.select2-drop, +.select2-search, +.select2-search input { + /* + Force border-box so that % widths fit the parent + container without overlap because of margin/padding. + More Info : http://www.quirksmode.org/css/box.html + */ + -webkit-box-sizing: border-box; /* webkit */ + -moz-box-sizing: border-box; /* firefox */ + box-sizing: border-box; /* css3 */ +} + +.select2-container .select2-choice { + display: block; + height: 26px; + padding: 0 0 0 8px; + overflow: hidden; + position: relative; + + border: 1px solid #aaa; + white-space: nowrap; + line-height: 26px; + color: #444; + text-decoration: none; + + border-radius: 4px; + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #fff; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0); + background-image: linear-gradient(to top, #eee 0%, #fff 50%); +} + +.select2-container.select2-drop-above .select2-choice { + border-bottom-color: #aaa; + + border-radius: 0 0 4px 4px; + + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff)); + background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%); + background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0); + background-image: linear-gradient(to bottom, #eee 0%, #fff 90%); +} + +.select2-container.select2-allowclear .select2-choice .select2-chosen { + margin-right: 42px; +} + +.select2-container .select2-choice > .select2-chosen { + margin-right: 26px; + display: block; + overflow: hidden; + + white-space: nowrap; + + text-overflow: ellipsis; + float: none; + width: auto; +} + +.select2-container .select2-choice abbr { + display: none; + width: 12px; + height: 12px; + position: absolute; + right: 24px; + top: 8px; + + font-size: 1px; + text-decoration: none; + + border: 0; + background: url('select2.png') right top no-repeat; + cursor: pointer; + outline: 0; +} + +.select2-container.select2-allowclear .select2-choice abbr { + display: inline-block; +} + +.select2-container .select2-choice abbr:hover { + background-position: right -11px; + cursor: pointer; +} + +.select2-drop-mask { + border: 0; + margin: 0; + padding: 0; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 9998; + /* styles required for IE to work */ + background-color: #fff; + filter: alpha(opacity=0); +} + +.select2-drop { + width: 100%; + margin-top: -1px; + position: absolute; + z-index: 9999; + top: 100%; + + background: #fff; + color: #000; + border: 1px solid #aaa; + border-top: 0; + + border-radius: 0 0 4px 4px; + + -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop.select2-drop-above { + margin-top: 1px; + border-top: 1px solid #aaa; + border-bottom: 0; + + border-radius: 4px 4px 0 0; + + -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); + box-shadow: 0 -4px 5px rgba(0, 0, 0, .15); +} + +.select2-drop-active { + border: 1px solid #5897fb; + border-top: none; +} + +.select2-drop.select2-drop-above.select2-drop-active { + border-top: 1px solid #5897fb; +} + +.select2-drop-auto-width { + border-top: 1px solid #aaa; + width: auto; +} + +.select2-drop-auto-width .select2-search { + padding-top: 4px; +} + +.select2-container .select2-choice .select2-arrow { + display: inline-block; + width: 18px; + height: 100%; + position: absolute; + right: 0; + top: 0; + + border-left: 1px solid #aaa; + border-radius: 0 4px 4px 0; + + background-clip: padding-box; + + background: #ccc; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee)); + background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%); + background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0); + background-image: linear-gradient(to top, #ccc 0%, #eee 60%); +} + +.select2-container .select2-choice .select2-arrow b { + display: block; + width: 100%; + height: 100%; + background: url('select2.png') no-repeat 0 1px; +} + +.select2-search { + display: inline-block; + width: 100%; + min-height: 26px; + margin: 0; + padding-left: 4px; + padding-right: 4px; + + position: relative; + z-index: 10000; + + white-space: nowrap; +} + +.select2-search input { + width: 100%; + height: auto !important; + min-height: 26px; + padding: 4px 20px 4px 5px; + margin: 0; + + outline: 0; + font-family: sans-serif; + font-size: 1em; + + border: 1px solid #aaa; + border-radius: 0; + + -webkit-box-shadow: none; + box-shadow: none; + + background: #fff url('select2.png') no-repeat 100% -22px; + background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-drop.select2-drop-above .select2-search input { + margin-top: 4px; +} + +.select2-search input.select2-active { + background: #fff url('select2-spinner.gif') no-repeat 100%; + background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee)); + background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%); + background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; +} + +.select2-container-active .select2-choice, +.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} + +.select2-dropdown-open .select2-choice { + border-bottom-color: transparent; + -webkit-box-shadow: 0 1px 0 #fff inset; + box-shadow: 0 1px 0 #fff inset; + + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + + background-color: #eee; + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to top, #fff 0%, #eee 50%); +} + +.select2-dropdown-open.select2-drop-above .select2-choice, +.select2-dropdown-open.select2-drop-above .select2-choices { + border: 1px solid #5897fb; + border-top-color: transparent; + + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee)); + background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%); + background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0); + background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); +} + +.select2-dropdown-open .select2-choice .select2-arrow { + background: transparent; + border-left: none; + filter: none; +} +.select2-dropdown-open .select2-choice .select2-arrow b { + background-position: -18px 1px; +} + +.select2-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +/* results */ +.select2-results { + max-height: 200px; + padding: 0 0 0 4px; + margin: 4px 4px 4px 0; + position: relative; + overflow-x: hidden; + overflow-y: auto; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +.select2-results ul.select2-result-sub { + margin: 0; + padding-left: 0; +} + +.select2-results li { + list-style: none; + display: list-item; + background-image: none; +} + +.select2-results li.select2-result-with-children > .select2-result-label { + font-weight: bold; +} + +.select2-results .select2-result-label { + padding: 3px 7px 4px; + margin: 0; + cursor: pointer; + + min-height: 1em; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.select2-results-dept-1 .select2-result-label { padding-left: 20px } +.select2-results-dept-2 .select2-result-label { padding-left: 40px } +.select2-results-dept-3 .select2-result-label { padding-left: 60px } +.select2-results-dept-4 .select2-result-label { padding-left: 80px } +.select2-results-dept-5 .select2-result-label { padding-left: 100px } +.select2-results-dept-6 .select2-result-label { padding-left: 110px } +.select2-results-dept-7 .select2-result-label { padding-left: 120px } + +.select2-results .select2-highlighted { + background: #3875d7; + color: #fff; +} + +.select2-results li em { + background: #feffde; + font-style: normal; +} + +.select2-results .select2-highlighted em { + background: transparent; +} + +.select2-results .select2-highlighted ul { + background: #fff; + color: #000; +} + + +.select2-results .select2-no-results, +.select2-results .select2-searching, +.select2-results .select2-selection-limit { + background: #f4f4f4; + display: list-item; + padding-left: 5px; +} + +/* +disabled look for disabled choices in the results dropdown +*/ +.select2-results .select2-disabled.select2-highlighted { + color: #666; + background: #f4f4f4; + display: list-item; + cursor: default; +} +.select2-results .select2-disabled { + background: #f4f4f4; + display: list-item; + cursor: default; +} + +.select2-results .select2-selected { + display: none; +} + +.select2-more-results.select2-active { + background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%; +} + +.select2-more-results { + background: #f4f4f4; + display: list-item; +} + +/* disabled styles */ + +.select2-container.select2-container-disabled .select2-choice { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container.select2-container-disabled .select2-choice .select2-arrow { + background-color: #f4f4f4; + background-image: none; + border-left: 0; +} + +.select2-container.select2-container-disabled .select2-choice abbr { + display: none; +} + + +/* multiselect */ + +.select2-container-multi .select2-choices { + height: auto !important; + height: 1%; + margin: 0; + padding: 0; + position: relative; + + border: 1px solid #aaa; + cursor: text; + overflow: hidden; + + background-color: #fff; + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff)); + background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%); + background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%); + background-image: linear-gradient(to bottom, #eee 1%, #fff 15%); +} + +.select2-locked { + padding: 3px 5px 3px 5px !important; +} + +.select2-container-multi .select2-choices { + min-height: 26px; +} + +.select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #5897fb; + outline: none; + + -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3); + box-shadow: 0 0 5px rgba(0, 0, 0, .3); +} +.select2-container-multi .select2-choices li { + float: left; + list-style: none; +} +html[dir="rtl"] .select2-container-multi .select2-choices li +{ + float: right; +} +.select2-container-multi .select2-choices .select2-search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} + +.select2-container-multi .select2-choices .select2-search-field input { + padding: 5px; + margin: 1px 0; + + font-family: sans-serif; + font-size: 100%; + color: #666; + outline: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + background: transparent !important; +} + +.select2-container-multi .select2-choices .select2-search-field input.select2-active { + background: #fff url('select2-spinner.gif') no-repeat 100% !important; +} + +.select2-default { + color: #999 !important; +} + +.select2-container-multi .select2-choices .select2-search-choice { + padding: 3px 5px 3px 18px; + margin: 3px 0 3px 5px; + position: relative; + + line-height: 13px; + color: #333; + cursor: default; + border: 1px solid #aaaaaa; + + border-radius: 3px; + + -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); + + background-clip: padding-box; + + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + + background-color: #e4e4e4; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); + background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); + background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); +} +html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice +{ + margin-left: 0; + margin-right: 5px; +} +.select2-container-multi .select2-choices .select2-search-choice .select2-chosen { + cursor: default; +} +.select2-container-multi .select2-choices .select2-search-choice-focus { + background: #d4d4d4; +} + +.select2-search-choice-close { + display: block; + width: 12px; + height: 13px; + position: absolute; + right: 3px; + top: 4px; + + font-size: 1px; + outline: none; + background: url('select2.png') right top no-repeat; +} +html[dir="rtl"] .select2-search-choice-close { + right: auto; + left: 3px; +} + +.select2-container-multi .select2-search-choice-close { + left: 3px; +} + +.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover { + background-position: right -11px; +} +.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { + background-position: right -11px; +} + +/* disabled styles */ +.select2-container-multi.select2-container-disabled .select2-choices { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { + padding: 3px 5px 3px 5px; + border: 1px solid #ddd; + background-image: none; + background-color: #f4f4f4; +} + +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none; + background: none; +} +/* end multiselect */ + + +.select2-result-selectable .select2-match, +.select2-result-unselectable .select2-match { + text-decoration: underline; +} + +.select2-offscreen, .select2-offscreen:focus { + clip: rect(0 0 0 0) !important; + width: 1px !important; + height: 1px !important; + border: 0 !important; + margin: 0 !important; + padding: 0 !important; + overflow: hidden !important; + position: absolute !important; + outline: 0 !important; + left: 0px !important; + top: 0px !important; +} + +.select2-display-none { + display: none; +} + +.select2-measure-scrollbar { + position: absolute; + top: -10000px; + left: -10000px; + width: 100px; + height: 100px; + overflow: scroll; +} + +/* Retina-ize icons */ + +@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) { + .select2-search input, + .select2-search-choice-close, + .select2-container .select2-choice abbr, + .select2-container .select2-choice .select2-arrow b { + background-image: url('select2x2.png') !important; + background-repeat: no-repeat !important; + background-size: 60px 40px !important; + } + + .select2-search input { + background-position: 100% -21px !important; + } +} diff --git a/apps/files_external/3rdparty/select2/select2.jquery.json b/apps/files_external/3rdparty/select2/select2.jquery.json new file mode 100644 index 0000000000000000000000000000000000000000..e9119279f11871b4bb7e490775694b51cc917397 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.jquery.json @@ -0,0 +1,36 @@ +{ + "name": "select2", + "title": "Select2", + "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", + "keywords": [ + "select", + "autocomplete", + "typeahead", + "dropdown", + "multiselect", + "tag", + "tagging" + ], + "version": "3.4.8", + "author": { + "name": "Igor Vaynberg", + "url": "https://github.com/ivaynberg" + }, + "licenses": [ + { + "type": "Apache", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + }, + { + "type": "GPL v2", + "url": "http://www.gnu.org/licenses/gpl-2.0.html" + } + ], + "bugs": "https://github.com/ivaynberg/select2/issues", + "homepage": "http://ivaynberg.github.com/select2", + "docs": "http://ivaynberg.github.com/select2/", + "download": "https://github.com/ivaynberg/select2/tags", + "dependencies": { + "jquery": ">=1.7.1" + } +} diff --git a/apps/files_external/3rdparty/select2/select2.js b/apps/files_external/3rdparty/select2/select2.js new file mode 100644 index 0000000000000000000000000000000000000000..2969da5d1f7e3cf67a125ebe14cdde88026c6d03 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2.js @@ -0,0 +1,3448 @@ +/* +Copyright 2012 Igor Vaynberg + +Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014 + +This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU +General Public License version 2 (the "GPL License"). You may choose either license to govern your +use of this software only upon the condition that you accept all of the terms of either the Apache +License or the GPL License. + +You may obtain a copy of the Apache License and the GPL License at: + + http://www.apache.org/licenses/LICENSE-2.0 + http://www.gnu.org/licenses/gpl-2.0.html + +Unless required by applicable law or agreed to in writing, software distributed under the +Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for +the specific language governing permissions and limitations under the Apache License and the GPL License. +*/ +(function ($) { + if(typeof $.fn.each2 == "undefined") { + $.extend($.fn, { + /* + * 4-10 times faster .each replacement + * use it carefully, as it overrides jQuery context of element on each iteration + */ + each2 : function (c) { + var j = $([0]), i = -1, l = this.length; + while ( + ++i < l + && (j.context = j[0] = this[i]) + && c.call(j[0], i, j) !== false //"this"=DOM, i=index, j=jQuery object + ); + return this; + } + }); + } +})(jQuery); + +(function ($, undefined) { + "use strict"; + /*global document, window, jQuery, console */ + + if (window.Select2 !== undefined) { + return; + } + + var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer, + lastMousePosition={x:0,y:0}, $document, scrollBarDimensions, + + KEY = { + TAB: 9, + ENTER: 13, + ESC: 27, + SPACE: 32, + LEFT: 37, + UP: 38, + RIGHT: 39, + DOWN: 40, + SHIFT: 16, + CTRL: 17, + ALT: 18, + PAGE_UP: 33, + PAGE_DOWN: 34, + HOME: 36, + END: 35, + BACKSPACE: 8, + DELETE: 46, + isArrow: function (k) { + k = k.which ? k.which : k; + switch (k) { + case KEY.LEFT: + case KEY.RIGHT: + case KEY.UP: + case KEY.DOWN: + return true; + } + return false; + }, + isControl: function (e) { + var k = e.which; + switch (k) { + case KEY.SHIFT: + case KEY.CTRL: + case KEY.ALT: + return true; + } + + if (e.metaKey) return true; + + return false; + }, + isFunctionKey: function (k) { + k = k.which ? k.which : k; + return k >= 112 && k <= 123; + } + }, + MEASURE_SCROLLBAR_TEMPLATE = "
", + + DIACRITICS = {"\u24B6":"A","\uFF21":"A","\u00C0":"A","\u00C1":"A","\u00C2":"A","\u1EA6":"A","\u1EA4":"A","\u1EAA":"A","\u1EA8":"A","\u00C3":"A","\u0100":"A","\u0102":"A","\u1EB0":"A","\u1EAE":"A","\u1EB4":"A","\u1EB2":"A","\u0226":"A","\u01E0":"A","\u00C4":"A","\u01DE":"A","\u1EA2":"A","\u00C5":"A","\u01FA":"A","\u01CD":"A","\u0200":"A","\u0202":"A","\u1EA0":"A","\u1EAC":"A","\u1EB6":"A","\u1E00":"A","\u0104":"A","\u023A":"A","\u2C6F":"A","\uA732":"AA","\u00C6":"AE","\u01FC":"AE","\u01E2":"AE","\uA734":"AO","\uA736":"AU","\uA738":"AV","\uA73A":"AV","\uA73C":"AY","\u24B7":"B","\uFF22":"B","\u1E02":"B","\u1E04":"B","\u1E06":"B","\u0243":"B","\u0182":"B","\u0181":"B","\u24B8":"C","\uFF23":"C","\u0106":"C","\u0108":"C","\u010A":"C","\u010C":"C","\u00C7":"C","\u1E08":"C","\u0187":"C","\u023B":"C","\uA73E":"C","\u24B9":"D","\uFF24":"D","\u1E0A":"D","\u010E":"D","\u1E0C":"D","\u1E10":"D","\u1E12":"D","\u1E0E":"D","\u0110":"D","\u018B":"D","\u018A":"D","\u0189":"D","\uA779":"D","\u01F1":"DZ","\u01C4":"DZ","\u01F2":"Dz","\u01C5":"Dz","\u24BA":"E","\uFF25":"E","\u00C8":"E","\u00C9":"E","\u00CA":"E","\u1EC0":"E","\u1EBE":"E","\u1EC4":"E","\u1EC2":"E","\u1EBC":"E","\u0112":"E","\u1E14":"E","\u1E16":"E","\u0114":"E","\u0116":"E","\u00CB":"E","\u1EBA":"E","\u011A":"E","\u0204":"E","\u0206":"E","\u1EB8":"E","\u1EC6":"E","\u0228":"E","\u1E1C":"E","\u0118":"E","\u1E18":"E","\u1E1A":"E","\u0190":"E","\u018E":"E","\u24BB":"F","\uFF26":"F","\u1E1E":"F","\u0191":"F","\uA77B":"F","\u24BC":"G","\uFF27":"G","\u01F4":"G","\u011C":"G","\u1E20":"G","\u011E":"G","\u0120":"G","\u01E6":"G","\u0122":"G","\u01E4":"G","\u0193":"G","\uA7A0":"G","\uA77D":"G","\uA77E":"G","\u24BD":"H","\uFF28":"H","\u0124":"H","\u1E22":"H","\u1E26":"H","\u021E":"H","\u1E24":"H","\u1E28":"H","\u1E2A":"H","\u0126":"H","\u2C67":"H","\u2C75":"H","\uA78D":"H","\u24BE":"I","\uFF29":"I","\u00CC":"I","\u00CD":"I","\u00CE":"I","\u0128":"I","\u012A":"I","\u012C":"I","\u0130":"I","\u00CF":"I","\u1E2E":"I","\u1EC8":"I","\u01CF":"I","\u0208":"I","\u020A":"I","\u1ECA":"I","\u012E":"I","\u1E2C":"I","\u0197":"I","\u24BF":"J","\uFF2A":"J","\u0134":"J","\u0248":"J","\u24C0":"K","\uFF2B":"K","\u1E30":"K","\u01E8":"K","\u1E32":"K","\u0136":"K","\u1E34":"K","\u0198":"K","\u2C69":"K","\uA740":"K","\uA742":"K","\uA744":"K","\uA7A2":"K","\u24C1":"L","\uFF2C":"L","\u013F":"L","\u0139":"L","\u013D":"L","\u1E36":"L","\u1E38":"L","\u013B":"L","\u1E3C":"L","\u1E3A":"L","\u0141":"L","\u023D":"L","\u2C62":"L","\u2C60":"L","\uA748":"L","\uA746":"L","\uA780":"L","\u01C7":"LJ","\u01C8":"Lj","\u24C2":"M","\uFF2D":"M","\u1E3E":"M","\u1E40":"M","\u1E42":"M","\u2C6E":"M","\u019C":"M","\u24C3":"N","\uFF2E":"N","\u01F8":"N","\u0143":"N","\u00D1":"N","\u1E44":"N","\u0147":"N","\u1E46":"N","\u0145":"N","\u1E4A":"N","\u1E48":"N","\u0220":"N","\u019D":"N","\uA790":"N","\uA7A4":"N","\u01CA":"NJ","\u01CB":"Nj","\u24C4":"O","\uFF2F":"O","\u00D2":"O","\u00D3":"O","\u00D4":"O","\u1ED2":"O","\u1ED0":"O","\u1ED6":"O","\u1ED4":"O","\u00D5":"O","\u1E4C":"O","\u022C":"O","\u1E4E":"O","\u014C":"O","\u1E50":"O","\u1E52":"O","\u014E":"O","\u022E":"O","\u0230":"O","\u00D6":"O","\u022A":"O","\u1ECE":"O","\u0150":"O","\u01D1":"O","\u020C":"O","\u020E":"O","\u01A0":"O","\u1EDC":"O","\u1EDA":"O","\u1EE0":"O","\u1EDE":"O","\u1EE2":"O","\u1ECC":"O","\u1ED8":"O","\u01EA":"O","\u01EC":"O","\u00D8":"O","\u01FE":"O","\u0186":"O","\u019F":"O","\uA74A":"O","\uA74C":"O","\u01A2":"OI","\uA74E":"OO","\u0222":"OU","\u24C5":"P","\uFF30":"P","\u1E54":"P","\u1E56":"P","\u01A4":"P","\u2C63":"P","\uA750":"P","\uA752":"P","\uA754":"P","\u24C6":"Q","\uFF31":"Q","\uA756":"Q","\uA758":"Q","\u024A":"Q","\u24C7":"R","\uFF32":"R","\u0154":"R","\u1E58":"R","\u0158":"R","\u0210":"R","\u0212":"R","\u1E5A":"R","\u1E5C":"R","\u0156":"R","\u1E5E":"R","\u024C":"R","\u2C64":"R","\uA75A":"R","\uA7A6":"R","\uA782":"R","\u24C8":"S","\uFF33":"S","\u1E9E":"S","\u015A":"S","\u1E64":"S","\u015C":"S","\u1E60":"S","\u0160":"S","\u1E66":"S","\u1E62":"S","\u1E68":"S","\u0218":"S","\u015E":"S","\u2C7E":"S","\uA7A8":"S","\uA784":"S","\u24C9":"T","\uFF34":"T","\u1E6A":"T","\u0164":"T","\u1E6C":"T","\u021A":"T","\u0162":"T","\u1E70":"T","\u1E6E":"T","\u0166":"T","\u01AC":"T","\u01AE":"T","\u023E":"T","\uA786":"T","\uA728":"TZ","\u24CA":"U","\uFF35":"U","\u00D9":"U","\u00DA":"U","\u00DB":"U","\u0168":"U","\u1E78":"U","\u016A":"U","\u1E7A":"U","\u016C":"U","\u00DC":"U","\u01DB":"U","\u01D7":"U","\u01D5":"U","\u01D9":"U","\u1EE6":"U","\u016E":"U","\u0170":"U","\u01D3":"U","\u0214":"U","\u0216":"U","\u01AF":"U","\u1EEA":"U","\u1EE8":"U","\u1EEE":"U","\u1EEC":"U","\u1EF0":"U","\u1EE4":"U","\u1E72":"U","\u0172":"U","\u1E76":"U","\u1E74":"U","\u0244":"U","\u24CB":"V","\uFF36":"V","\u1E7C":"V","\u1E7E":"V","\u01B2":"V","\uA75E":"V","\u0245":"V","\uA760":"VY","\u24CC":"W","\uFF37":"W","\u1E80":"W","\u1E82":"W","\u0174":"W","\u1E86":"W","\u1E84":"W","\u1E88":"W","\u2C72":"W","\u24CD":"X","\uFF38":"X","\u1E8A":"X","\u1E8C":"X","\u24CE":"Y","\uFF39":"Y","\u1EF2":"Y","\u00DD":"Y","\u0176":"Y","\u1EF8":"Y","\u0232":"Y","\u1E8E":"Y","\u0178":"Y","\u1EF6":"Y","\u1EF4":"Y","\u01B3":"Y","\u024E":"Y","\u1EFE":"Y","\u24CF":"Z","\uFF3A":"Z","\u0179":"Z","\u1E90":"Z","\u017B":"Z","\u017D":"Z","\u1E92":"Z","\u1E94":"Z","\u01B5":"Z","\u0224":"Z","\u2C7F":"Z","\u2C6B":"Z","\uA762":"Z","\u24D0":"a","\uFF41":"a","\u1E9A":"a","\u00E0":"a","\u00E1":"a","\u00E2":"a","\u1EA7":"a","\u1EA5":"a","\u1EAB":"a","\u1EA9":"a","\u00E3":"a","\u0101":"a","\u0103":"a","\u1EB1":"a","\u1EAF":"a","\u1EB5":"a","\u1EB3":"a","\u0227":"a","\u01E1":"a","\u00E4":"a","\u01DF":"a","\u1EA3":"a","\u00E5":"a","\u01FB":"a","\u01CE":"a","\u0201":"a","\u0203":"a","\u1EA1":"a","\u1EAD":"a","\u1EB7":"a","\u1E01":"a","\u0105":"a","\u2C65":"a","\u0250":"a","\uA733":"aa","\u00E6":"ae","\u01FD":"ae","\u01E3":"ae","\uA735":"ao","\uA737":"au","\uA739":"av","\uA73B":"av","\uA73D":"ay","\u24D1":"b","\uFF42":"b","\u1E03":"b","\u1E05":"b","\u1E07":"b","\u0180":"b","\u0183":"b","\u0253":"b","\u24D2":"c","\uFF43":"c","\u0107":"c","\u0109":"c","\u010B":"c","\u010D":"c","\u00E7":"c","\u1E09":"c","\u0188":"c","\u023C":"c","\uA73F":"c","\u2184":"c","\u24D3":"d","\uFF44":"d","\u1E0B":"d","\u010F":"d","\u1E0D":"d","\u1E11":"d","\u1E13":"d","\u1E0F":"d","\u0111":"d","\u018C":"d","\u0256":"d","\u0257":"d","\uA77A":"d","\u01F3":"dz","\u01C6":"dz","\u24D4":"e","\uFF45":"e","\u00E8":"e","\u00E9":"e","\u00EA":"e","\u1EC1":"e","\u1EBF":"e","\u1EC5":"e","\u1EC3":"e","\u1EBD":"e","\u0113":"e","\u1E15":"e","\u1E17":"e","\u0115":"e","\u0117":"e","\u00EB":"e","\u1EBB":"e","\u011B":"e","\u0205":"e","\u0207":"e","\u1EB9":"e","\u1EC7":"e","\u0229":"e","\u1E1D":"e","\u0119":"e","\u1E19":"e","\u1E1B":"e","\u0247":"e","\u025B":"e","\u01DD":"e","\u24D5":"f","\uFF46":"f","\u1E1F":"f","\u0192":"f","\uA77C":"f","\u24D6":"g","\uFF47":"g","\u01F5":"g","\u011D":"g","\u1E21":"g","\u011F":"g","\u0121":"g","\u01E7":"g","\u0123":"g","\u01E5":"g","\u0260":"g","\uA7A1":"g","\u1D79":"g","\uA77F":"g","\u24D7":"h","\uFF48":"h","\u0125":"h","\u1E23":"h","\u1E27":"h","\u021F":"h","\u1E25":"h","\u1E29":"h","\u1E2B":"h","\u1E96":"h","\u0127":"h","\u2C68":"h","\u2C76":"h","\u0265":"h","\u0195":"hv","\u24D8":"i","\uFF49":"i","\u00EC":"i","\u00ED":"i","\u00EE":"i","\u0129":"i","\u012B":"i","\u012D":"i","\u00EF":"i","\u1E2F":"i","\u1EC9":"i","\u01D0":"i","\u0209":"i","\u020B":"i","\u1ECB":"i","\u012F":"i","\u1E2D":"i","\u0268":"i","\u0131":"i","\u24D9":"j","\uFF4A":"j","\u0135":"j","\u01F0":"j","\u0249":"j","\u24DA":"k","\uFF4B":"k","\u1E31":"k","\u01E9":"k","\u1E33":"k","\u0137":"k","\u1E35":"k","\u0199":"k","\u2C6A":"k","\uA741":"k","\uA743":"k","\uA745":"k","\uA7A3":"k","\u24DB":"l","\uFF4C":"l","\u0140":"l","\u013A":"l","\u013E":"l","\u1E37":"l","\u1E39":"l","\u013C":"l","\u1E3D":"l","\u1E3B":"l","\u017F":"l","\u0142":"l","\u019A":"l","\u026B":"l","\u2C61":"l","\uA749":"l","\uA781":"l","\uA747":"l","\u01C9":"lj","\u24DC":"m","\uFF4D":"m","\u1E3F":"m","\u1E41":"m","\u1E43":"m","\u0271":"m","\u026F":"m","\u24DD":"n","\uFF4E":"n","\u01F9":"n","\u0144":"n","\u00F1":"n","\u1E45":"n","\u0148":"n","\u1E47":"n","\u0146":"n","\u1E4B":"n","\u1E49":"n","\u019E":"n","\u0272":"n","\u0149":"n","\uA791":"n","\uA7A5":"n","\u01CC":"nj","\u24DE":"o","\uFF4F":"o","\u00F2":"o","\u00F3":"o","\u00F4":"o","\u1ED3":"o","\u1ED1":"o","\u1ED7":"o","\u1ED5":"o","\u00F5":"o","\u1E4D":"o","\u022D":"o","\u1E4F":"o","\u014D":"o","\u1E51":"o","\u1E53":"o","\u014F":"o","\u022F":"o","\u0231":"o","\u00F6":"o","\u022B":"o","\u1ECF":"o","\u0151":"o","\u01D2":"o","\u020D":"o","\u020F":"o","\u01A1":"o","\u1EDD":"o","\u1EDB":"o","\u1EE1":"o","\u1EDF":"o","\u1EE3":"o","\u1ECD":"o","\u1ED9":"o","\u01EB":"o","\u01ED":"o","\u00F8":"o","\u01FF":"o","\u0254":"o","\uA74B":"o","\uA74D":"o","\u0275":"o","\u01A3":"oi","\u0223":"ou","\uA74F":"oo","\u24DF":"p","\uFF50":"p","\u1E55":"p","\u1E57":"p","\u01A5":"p","\u1D7D":"p","\uA751":"p","\uA753":"p","\uA755":"p","\u24E0":"q","\uFF51":"q","\u024B":"q","\uA757":"q","\uA759":"q","\u24E1":"r","\uFF52":"r","\u0155":"r","\u1E59":"r","\u0159":"r","\u0211":"r","\u0213":"r","\u1E5B":"r","\u1E5D":"r","\u0157":"r","\u1E5F":"r","\u024D":"r","\u027D":"r","\uA75B":"r","\uA7A7":"r","\uA783":"r","\u24E2":"s","\uFF53":"s","\u00DF":"s","\u015B":"s","\u1E65":"s","\u015D":"s","\u1E61":"s","\u0161":"s","\u1E67":"s","\u1E63":"s","\u1E69":"s","\u0219":"s","\u015F":"s","\u023F":"s","\uA7A9":"s","\uA785":"s","\u1E9B":"s","\u24E3":"t","\uFF54":"t","\u1E6B":"t","\u1E97":"t","\u0165":"t","\u1E6D":"t","\u021B":"t","\u0163":"t","\u1E71":"t","\u1E6F":"t","\u0167":"t","\u01AD":"t","\u0288":"t","\u2C66":"t","\uA787":"t","\uA729":"tz","\u24E4":"u","\uFF55":"u","\u00F9":"u","\u00FA":"u","\u00FB":"u","\u0169":"u","\u1E79":"u","\u016B":"u","\u1E7B":"u","\u016D":"u","\u00FC":"u","\u01DC":"u","\u01D8":"u","\u01D6":"u","\u01DA":"u","\u1EE7":"u","\u016F":"u","\u0171":"u","\u01D4":"u","\u0215":"u","\u0217":"u","\u01B0":"u","\u1EEB":"u","\u1EE9":"u","\u1EEF":"u","\u1EED":"u","\u1EF1":"u","\u1EE5":"u","\u1E73":"u","\u0173":"u","\u1E77":"u","\u1E75":"u","\u0289":"u","\u24E5":"v","\uFF56":"v","\u1E7D":"v","\u1E7F":"v","\u028B":"v","\uA75F":"v","\u028C":"v","\uA761":"vy","\u24E6":"w","\uFF57":"w","\u1E81":"w","\u1E83":"w","\u0175":"w","\u1E87":"w","\u1E85":"w","\u1E98":"w","\u1E89":"w","\u2C73":"w","\u24E7":"x","\uFF58":"x","\u1E8B":"x","\u1E8D":"x","\u24E8":"y","\uFF59":"y","\u1EF3":"y","\u00FD":"y","\u0177":"y","\u1EF9":"y","\u0233":"y","\u1E8F":"y","\u00FF":"y","\u1EF7":"y","\u1E99":"y","\u1EF5":"y","\u01B4":"y","\u024F":"y","\u1EFF":"y","\u24E9":"z","\uFF5A":"z","\u017A":"z","\u1E91":"z","\u017C":"z","\u017E":"z","\u1E93":"z","\u1E95":"z","\u01B6":"z","\u0225":"z","\u0240":"z","\u2C6C":"z","\uA763":"z"}; + + $document = $(document); + + nextUid=(function() { var counter=1; return function() { return counter++; }; }()); + + + function reinsertElement(element) { + var placeholder = $(document.createTextNode('')); + + element.before(placeholder); + placeholder.before(element); + placeholder.remove(); + } + + function stripDiacritics(str) { + // Used 'uni range + named function' from http://jsperf.com/diacritics/18 + function match(a) { + return DIACRITICS[a] || a; + } + + return str.replace(/[^\u0000-\u007E]/g, match); + } + + function indexOf(value, array) { + var i = 0, l = array.length; + for (; i < l; i = i + 1) { + if (equal(value, array[i])) return i; + } + return -1; + } + + function measureScrollbar () { + var $template = $( MEASURE_SCROLLBAR_TEMPLATE ); + $template.appendTo('body'); + + var dim = { + width: $template.width() - $template[0].clientWidth, + height: $template.height() - $template[0].clientHeight + }; + $template.remove(); + + return dim; + } + + /** + * Compares equality of a and b + * @param a + * @param b + */ + function equal(a, b) { + if (a === b) return true; + if (a === undefined || b === undefined) return false; + if (a === null || b === null) return false; + // Check whether 'a' or 'b' is a string (primitive or object). + // The concatenation of an empty string (+'') converts its argument to a string's primitive. + if (a.constructor === String) return a+'' === b+''; // a+'' - in case 'a' is a String object + if (b.constructor === String) return b+'' === a+''; // b+'' - in case 'b' is a String object + return false; + } + + /** + * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty + * strings + * @param string + * @param separator + */ + function splitVal(string, separator) { + var val, i, l; + if (string === null || string.length < 1) return []; + val = string.split(separator); + for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]); + return val; + } + + function getSideBorderPadding(element) { + return element.outerWidth(false) - element.width(); + } + + function installKeyUpChangeEvent(element) { + var key="keyup-change-value"; + element.on("keydown", function () { + if ($.data(element, key) === undefined) { + $.data(element, key, element.val()); + } + }); + element.on("keyup", function () { + var val= $.data(element, key); + if (val !== undefined && element.val() !== val) { + $.removeData(element, key); + element.trigger("keyup-change"); + } + }); + } + + $document.on("mousemove", function (e) { + lastMousePosition.x = e.pageX; + lastMousePosition.y = e.pageY; + }); + + /** + * filters mouse events so an event is fired only if the mouse moved. + * + * filters out mouse events that occur when mouse is stationary but + * the elements under the pointer are scrolled. + */ + function installFilteredMouseMove(element) { + element.on("mousemove", function (e) { + var lastpos = lastMousePosition; + if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) { + $(e.target).trigger("mousemove-filtered", e); + } + }); + } + + /** + * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made + * within the last quietMillis milliseconds. + * + * @param quietMillis number of milliseconds to wait before invoking fn + * @param fn function to be debounced + * @param ctx object to be used as this reference within fn + * @return debounced version of fn + */ + function debounce(quietMillis, fn, ctx) { + ctx = ctx || undefined; + var timeout; + return function () { + var args = arguments; + window.clearTimeout(timeout); + timeout = window.setTimeout(function() { + fn.apply(ctx, args); + }, quietMillis); + }; + } + + function installDebouncedScroll(threshold, element) { + var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);}); + element.on("scroll", function (e) { + if (indexOf(e.target, element.get()) >= 0) notify(e); + }); + } + + function focus($el) { + if ($el[0] === document.activeElement) return; + + /* set the focus in a 0 timeout - that way the focus is set after the processing + of the current event has finished - which seems like the only reliable way + to set focus */ + window.setTimeout(function() { + var el=$el[0], pos=$el.val().length, range; + + $el.focus(); + + /* make sure el received focus so we do not error out when trying to manipulate the caret. + sometimes modals or others listeners may steal it after its set */ + var isVisible = (el.offsetWidth > 0 || el.offsetHeight > 0); + if (isVisible && el === document.activeElement) { + + /* after the focus is set move the caret to the end, necessary when we val() + just before setting focus */ + if(el.setSelectionRange) + { + el.setSelectionRange(pos, pos); + } + else if (el.createTextRange) { + range = el.createTextRange(); + range.collapse(false); + range.select(); + } + } + }, 0); + } + + function getCursorInfo(el) { + el = $(el)[0]; + var offset = 0; + var length = 0; + if ('selectionStart' in el) { + offset = el.selectionStart; + length = el.selectionEnd - offset; + } else if ('selection' in document) { + el.focus(); + var sel = document.selection.createRange(); + length = document.selection.createRange().text.length; + sel.moveStart('character', -el.value.length); + offset = sel.text.length - length; + } + return { offset: offset, length: length }; + } + + function killEvent(event) { + event.preventDefault(); + event.stopPropagation(); + } + function killEventImmediately(event) { + event.preventDefault(); + event.stopImmediatePropagation(); + } + + function measureTextWidth(e) { + if (!sizer){ + var style = e[0].currentStyle || window.getComputedStyle(e[0], null); + sizer = $(document.createElement("div")).css({ + position: "absolute", + left: "-10000px", + top: "-10000px", + display: "none", + fontSize: style.fontSize, + fontFamily: style.fontFamily, + fontStyle: style.fontStyle, + fontWeight: style.fontWeight, + letterSpacing: style.letterSpacing, + textTransform: style.textTransform, + whiteSpace: "nowrap" + }); + sizer.attr("class","select2-sizer"); + $("body").append(sizer); + } + sizer.text(e.val()); + return sizer.width(); + } + + function syncCssClasses(dest, src, adapter) { + var classes, replacements = [], adapted; + + classes = dest.attr("class"); + if (classes) { + classes = '' + classes; // for IE which returns object + $(classes.split(" ")).each2(function() { + if (this.indexOf("select2-") === 0) { + replacements.push(this); + } + }); + } + classes = src.attr("class"); + if (classes) { + classes = '' + classes; // for IE which returns object + $(classes.split(" ")).each2(function() { + if (this.indexOf("select2-") !== 0) { + adapted = adapter(this); + if (adapted) { + replacements.push(adapted); + } + } + }); + } + dest.attr("class", replacements.join(" ")); + } + + + function markMatch(text, term, markup, escapeMarkup) { + var match=stripDiacritics(text.toUpperCase()).indexOf(stripDiacritics(term.toUpperCase())), + tl=term.length; + + if (match<0) { + markup.push(escapeMarkup(text)); + return; + } + + markup.push(escapeMarkup(text.substring(0, match))); + markup.push(""); + markup.push(escapeMarkup(text.substring(match, match + tl))); + markup.push(""); + markup.push(escapeMarkup(text.substring(match + tl, text.length))); + } + + function defaultEscapeMarkup(markup) { + var replace_map = { + '\\': '\', + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''', + "/": '/' + }; + + return String(markup).replace(/[&<>"'\/\\]/g, function (match) { + return replace_map[match]; + }); + } + + /** + * Produces an ajax-based query function + * + * @param options object containing configuration parameters + * @param options.params parameter map for the transport ajax call, can contain such options as cache, jsonpCallback, etc. see $.ajax + * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax + * @param options.url url for the data + * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url. + * @param options.dataType request data type: ajax, jsonp, other datatypes supported by jQuery's $.ajax function or the transport function if specified + * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often + * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2. + * The expected format is an object containing the following keys: + * results array of objects that will be used as choices + * more (optional) boolean indicating whether there are more results available + * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true} + */ + function ajax(options) { + var timeout, // current scheduled but not yet executed request + handler = null, + quietMillis = options.quietMillis || 100, + ajaxUrl = options.url, + self = this; + + return function (query) { + window.clearTimeout(timeout); + timeout = window.setTimeout(function () { + var data = options.data, // ajax data function + url = ajaxUrl, // ajax url string or function + transport = options.transport || $.fn.select2.ajaxDefaults.transport, + // deprecated - to be removed in 4.0 - use params instead + deprecated = { + type: options.type || 'GET', // set type of request (GET or POST) + cache: options.cache || false, + jsonpCallback: options.jsonpCallback||undefined, + dataType: options.dataType||"json" + }, + params = $.extend({}, $.fn.select2.ajaxDefaults.params, deprecated); + + data = data ? data.call(self, query.term, query.page, query.context) : null; + url = (typeof url === 'function') ? url.call(self, query.term, query.page, query.context) : url; + + if (handler && typeof handler.abort === "function") { handler.abort(); } + + if (options.params) { + if ($.isFunction(options.params)) { + $.extend(params, options.params.call(self)); + } else { + $.extend(params, options.params); + } + } + + $.extend(params, { + url: url, + dataType: options.dataType, + data: data, + success: function (data) { + // TODO - replace query.page with query so users have access to term, page, etc. + var results = options.results(data, query.page); + query.callback(results); + } + }); + handler = transport.call(self, params); + }, quietMillis); + }; + } + + /** + * Produces a query function that works with a local array + * + * @param options object containing configuration parameters. The options parameter can either be an array or an + * object. + * + * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys. + * + * If the object form is used it is assumed that it contains 'data' and 'text' keys. The 'data' key should contain + * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text' + * key can either be a String in which case it is expected that each element in the 'data' array has a key with the + * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract + * the text. + */ + function local(options) { + var data = options, // data elements + dataText, + tmp, + text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search + + if ($.isArray(data)) { + tmp = data; + data = { results: tmp }; + } + + if ($.isFunction(data) === false) { + tmp = data; + data = function() { return tmp; }; + } + + var dataItem = data(); + if (dataItem.text) { + text = dataItem.text; + // if text is not a function we assume it to be a key name + if (!$.isFunction(text)) { + dataText = dataItem.text; // we need to store this in a separate variable because in the next step data gets reset and data.text is no longer available + text = function (item) { return item[dataText]; }; + } + } + + return function (query) { + var t = query.term, filtered = { results: [] }, process; + if (t === "") { + query.callback(data()); + return; + } + + process = function(datum, collection) { + var group, attr; + datum = datum[0]; + if (datum.children) { + group = {}; + for (attr in datum) { + if (datum.hasOwnProperty(attr)) group[attr]=datum[attr]; + } + group.children=[]; + $(datum.children).each2(function(i, childDatum) { process(childDatum, group.children); }); + if (group.children.length || query.matcher(t, text(group), datum)) { + collection.push(group); + } + } else { + if (query.matcher(t, text(datum), datum)) { + collection.push(datum); + } + } + }; + + $(data().results).each2(function(i, datum) { process(datum, filtered.results); }); + query.callback(filtered); + }; + } + + // TODO javadoc + function tags(data) { + var isFunc = $.isFunction(data); + return function (query) { + var t = query.term, filtered = {results: []}; + var result = isFunc ? data(query) : data; + if ($.isArray(result)) { + $(result).each(function () { + var isObject = this.text !== undefined, + text = isObject ? this.text : this; + if (t === "" || query.matcher(t, text)) { + filtered.results.push(isObject ? this : {id: this, text: this}); + } + }); + query.callback(filtered); + } + }; + } + + /** + * Checks if the formatter function should be used. + * + * Throws an error if it is not a function. Returns true if it should be used, + * false if no formatting should be performed. + * + * @param formatter + */ + function checkFormatter(formatter, formatterName) { + if ($.isFunction(formatter)) return true; + if (!formatter) return false; + if (typeof(formatter) === 'string') return true; + throw new Error(formatterName +" must be a string, function, or falsy value"); + } + + function evaluate(val) { + if ($.isFunction(val)) { + var args = Array.prototype.slice.call(arguments, 1); + return val.apply(null, args); + } + return val; + } + + function countResults(results) { + var count = 0; + $.each(results, function(i, item) { + if (item.children) { + count += countResults(item.children); + } else { + count++; + } + }); + return count; + } + + /** + * Default tokenizer. This function uses breaks the input on substring match of any string from the + * opts.tokenSeparators array and uses opts.createSearchChoice to create the choice object. Both of those + * two options have to be defined in order for the tokenizer to work. + * + * @param input text user has typed so far or pasted into the search field + * @param selection currently selected choices + * @param selectCallback function(choice) callback tho add the choice to selection + * @param opts select2's opts + * @return undefined/null to leave the current input unchanged, or a string to change the input to the returned value + */ + function defaultTokenizer(input, selection, selectCallback, opts) { + var original = input, // store the original so we can compare and know if we need to tell the search to update its text + dupe = false, // check for whether a token we extracted represents a duplicate selected choice + token, // token + index, // position at which the separator was found + i, l, // looping variables + separator; // the matched separator + + if (!opts.createSearchChoice || !opts.tokenSeparators || opts.tokenSeparators.length < 1) return undefined; + + while (true) { + index = -1; + + for (i = 0, l = opts.tokenSeparators.length; i < l; i++) { + separator = opts.tokenSeparators[i]; + index = input.indexOf(separator); + if (index >= 0) break; + } + + if (index < 0) break; // did not find any token separator in the input string, bail + + token = input.substring(0, index); + input = input.substring(index + separator.length); + + if (token.length > 0) { + token = opts.createSearchChoice.call(this, token, selection); + if (token !== undefined && token !== null && opts.id(token) !== undefined && opts.id(token) !== null) { + dupe = false; + for (i = 0, l = selection.length; i < l; i++) { + if (equal(opts.id(token), opts.id(selection[i]))) { + dupe = true; break; + } + } + + if (!dupe) selectCallback(token); + } + } + } + + if (original!==input) return input; + } + + function cleanupJQueryElements() { + var self = this; + + Array.prototype.forEach.call(arguments, function (element) { + self[element].remove(); + self[element] = null; + }); + } + + /** + * Creates a new class + * + * @param superClass + * @param methods + */ + function clazz(SuperClass, methods) { + var constructor = function () {}; + constructor.prototype = new SuperClass; + constructor.prototype.constructor = constructor; + constructor.prototype.parent = SuperClass.prototype; + constructor.prototype = $.extend(constructor.prototype, methods); + return constructor; + } + + AbstractSelect2 = clazz(Object, { + + // abstract + bind: function (func) { + var self = this; + return function () { + func.apply(self, arguments); + }; + }, + + // abstract + init: function (opts) { + var results, search, resultsSelector = ".select2-results"; + + // prepare options + this.opts = opts = this.prepareOpts(opts); + + this.id=opts.id; + + // destroy if called on an existing component + if (opts.element.data("select2") !== undefined && + opts.element.data("select2") !== null) { + opts.element.data("select2").destroy(); + } + + this.container = this.createContainer(); + + this.liveRegion = $("", { + role: "status", + "aria-live": "polite" + }) + .addClass("select2-hidden-accessible") + .appendTo(document.body); + + this.containerId="s2id_"+(opts.element.attr("id") || "autogen"+nextUid()); + this.containerEventName= this.containerId + .replace(/([.])/g, '_') + .replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g, '\\$1'); + this.container.attr("id", this.containerId); + + this.container.attr("title", opts.element.attr("title")); + + this.body = $("body"); + + syncCssClasses(this.container, this.opts.element, this.opts.adaptContainerCssClass); + + this.container.attr("style", opts.element.attr("style")); + this.container.css(evaluate(opts.containerCss)); + this.container.addClass(evaluate(opts.containerCssClass)); + + this.elementTabIndex = this.opts.element.attr("tabindex"); + + // swap container for the element + this.opts.element + .data("select2", this) + .attr("tabindex", "-1") + .before(this.container) + .on("click.select2", killEvent); // do not leak click events + + this.container.data("select2", this); + + this.dropdown = this.container.find(".select2-drop"); + + syncCssClasses(this.dropdown, this.opts.element, this.opts.adaptDropdownCssClass); + + this.dropdown.addClass(evaluate(opts.dropdownCssClass)); + this.dropdown.data("select2", this); + this.dropdown.on("click", killEvent); + + this.results = results = this.container.find(resultsSelector); + this.search = search = this.container.find("input.select2-input"); + + this.queryCount = 0; + this.resultsPage = 0; + this.context = null; + + // initialize the container + this.initContainer(); + + this.container.on("click", killEvent); + + installFilteredMouseMove(this.results); + + this.dropdown.on("mousemove-filtered", resultsSelector, this.bind(this.highlightUnderEvent)); + this.dropdown.on("touchstart touchmove touchend", resultsSelector, this.bind(function (event) { + this._touchEvent = true; + this.highlightUnderEvent(event); + })); + this.dropdown.on("touchmove", resultsSelector, this.bind(this.touchMoved)); + this.dropdown.on("touchstart touchend", resultsSelector, this.bind(this.clearTouchMoved)); + + // Waiting for a click event on touch devices to select option and hide dropdown + // otherwise click will be triggered on an underlying element + this.dropdown.on('click', this.bind(function (event) { + if (this._touchEvent) { + this._touchEvent = false; + this.selectHighlighted(); + } + })); + + installDebouncedScroll(80, this.results); + this.dropdown.on("scroll-debounced", resultsSelector, this.bind(this.loadMoreIfNeeded)); + + // do not propagate change event from the search field out of the component + $(this.container).on("change", ".select2-input", function(e) {e.stopPropagation();}); + $(this.dropdown).on("change", ".select2-input", function(e) {e.stopPropagation();}); + + // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel + if ($.fn.mousewheel) { + results.mousewheel(function (e, delta, deltaX, deltaY) { + var top = results.scrollTop(); + if (deltaY > 0 && top - deltaY <= 0) { + results.scrollTop(0); + killEvent(e); + } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) { + results.scrollTop(results.get(0).scrollHeight - results.height()); + killEvent(e); + } + }); + } + + installKeyUpChangeEvent(search); + search.on("keyup-change input paste", this.bind(this.updateResults)); + search.on("focus", function () { search.addClass("select2-focused"); }); + search.on("blur", function () { search.removeClass("select2-focused");}); + + this.dropdown.on("mouseup", resultsSelector, this.bind(function (e) { + if ($(e.target).closest(".select2-result-selectable").length > 0) { + this.highlightUnderEvent(e); + this.selectHighlighted(e); + } + })); + + // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening + // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's + // dom it will trigger the popup close, which is not what we want + // focusin can cause focus wars between modals and select2 since the dropdown is outside the modal. + this.dropdown.on("click mouseup mousedown touchstart touchend focusin", function (e) { e.stopPropagation(); }); + + this.nextSearchTerm = undefined; + + if ($.isFunction(this.opts.initSelection)) { + // initialize selection based on the current value of the source element + this.initSelection(); + + // if the user has provided a function that can set selection based on the value of the source element + // we monitor the change event on the element and trigger it, allowing for two way synchronization + this.monitorSource(); + } + + if (opts.maximumInputLength !== null) { + this.search.attr("maxlength", opts.maximumInputLength); + } + + var disabled = opts.element.prop("disabled"); + if (disabled === undefined) disabled = false; + this.enable(!disabled); + + var readonly = opts.element.prop("readonly"); + if (readonly === undefined) readonly = false; + this.readonly(readonly); + + // Calculate size of scrollbar + scrollBarDimensions = scrollBarDimensions || measureScrollbar(); + + this.autofocus = opts.element.prop("autofocus"); + opts.element.prop("autofocus", false); + if (this.autofocus) this.focus(); + + this.search.attr("placeholder", opts.searchInputPlaceholder); + }, + + // abstract + destroy: function () { + var element=this.opts.element, select2 = element.data("select2"); + + this.close(); + + if (this.propertyObserver) { + this.propertyObserver.disconnect(); + this.propertyObserver = null; + } + + if (select2 !== undefined) { + select2.container.remove(); + select2.liveRegion.remove(); + select2.dropdown.remove(); + element + .removeClass("select2-offscreen") + .removeData("select2") + .off(".select2") + .prop("autofocus", this.autofocus || false); + if (this.elementTabIndex) { + element.attr({tabindex: this.elementTabIndex}); + } else { + element.removeAttr("tabindex"); + } + element.show(); + } + + cleanupJQueryElements.call(this, + "container", + "liveRegion", + "dropdown", + "results", + "search" + ); + }, + + // abstract + optionToData: function(element) { + if (element.is("option")) { + return { + id:element.prop("value"), + text:element.text(), + element: element.get(), + css: element.attr("class"), + disabled: element.prop("disabled"), + locked: equal(element.attr("locked"), "locked") || equal(element.data("locked"), true) + }; + } else if (element.is("optgroup")) { + return { + text:element.attr("label"), + children:[], + element: element.get(), + css: element.attr("class") + }; + } + }, + + // abstract + prepareOpts: function (opts) { + var element, select, idKey, ajaxUrl, self = this; + + element = opts.element; + + if (element.get(0).tagName.toLowerCase() === "select") { + this.select = select = opts.element; + } + + if (select) { + // these options are not allowed when attached to a select because they are picked up off the element itself + $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () { + if (this in opts) { + throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a ", + "
", + " ", + " ", + "
"].join("")); + return container; + }, + + // single + enableInterface: function() { + if (this.parent.enableInterface.apply(this, arguments)) { + this.focusser.prop("disabled", !this.isInterfaceEnabled()); + } + }, + + // single + opening: function () { + var el, range, len; + + if (this.opts.minimumResultsForSearch >= 0) { + this.showSearch(true); + } + + this.parent.opening.apply(this, arguments); + + if (this.showSearchInput !== false) { + // IE appends focusser.val() at the end of field :/ so we manually insert it at the beginning using a range + // all other browsers handle this just fine + + this.search.val(this.focusser.val()); + } + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + // move the cursor to the end after focussing, otherwise it will be at the beginning and + // new text will appear *before* focusser.val() + el = this.search.get(0); + if (el.createTextRange) { + range = el.createTextRange(); + range.collapse(false); + range.select(); + } else if (el.setSelectionRange) { + len = this.search.val().length; + el.setSelectionRange(len, len); + } + } + + // initializes search's value with nextSearchTerm (if defined by user) + // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter + if(this.search.val() === "") { + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.search.select(); + } + } + + this.focusser.prop("disabled", true).val(""); + this.updateResults(true); + this.opts.element.trigger($.Event("select2-open")); + }, + + // single + close: function () { + if (!this.opened()) return; + this.parent.close.apply(this, arguments); + + this.focusser.prop("disabled", false); + + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + }, + + // single + focus: function () { + if (this.opened()) { + this.close(); + } else { + this.focusser.prop("disabled", false); + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + } + }, + + // single + isFocused: function () { + return this.container.hasClass("select2-container-active"); + }, + + // single + cancel: function () { + this.parent.cancel.apply(this, arguments); + this.focusser.prop("disabled", false); + + if (this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + }, + + // single + destroy: function() { + $("label[for='" + this.focusser.attr('id') + "']") + .attr('for', this.opts.element.attr("id")); + this.parent.destroy.apply(this, arguments); + + cleanupJQueryElements.call(this, + "selection", + "focusser" + ); + }, + + // single + initContainer: function () { + + var selection, + container = this.container, + dropdown = this.dropdown, + idSuffix = nextUid(), + elementLabel; + + if (this.opts.minimumResultsForSearch < 0) { + this.showSearch(false); + } else { + this.showSearch(true); + } + + this.selection = selection = container.find(".select2-choice"); + + this.focusser = container.find(".select2-focusser"); + + // add aria associations + selection.find(".select2-chosen").attr("id", "select2-chosen-"+idSuffix); + this.focusser.attr("aria-labelledby", "select2-chosen-"+idSuffix); + this.results.attr("id", "select2-results-"+idSuffix); + this.search.attr("aria-owns", "select2-results-"+idSuffix); + + // rewrite labels from original element to focusser + this.focusser.attr("id", "s2id_autogen"+idSuffix); + + elementLabel = $("label[for='" + this.opts.element.attr("id") + "']"); + + this.focusser.prev() + .text(elementLabel.text()) + .attr('for', this.focusser.attr('id')); + + // Ensure the original element retains an accessible name + var originalTitle = this.opts.element.attr("title"); + this.opts.element.attr("title", (originalTitle || elementLabel.text())); + + this.focusser.attr("tabindex", this.elementTabIndex); + + // write label for search field using the label from the focusser element + this.search.attr("id", this.focusser.attr('id') + '_search'); + + this.search.prev() + .text($("label[for='" + this.focusser.attr('id') + "']").text()) + .attr('for', this.search.attr('id')); + + this.search.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) { + // prevent the page from scrolling + killEvent(e); + return; + } + + switch (e.which) { + case KEY.UP: + case KEY.DOWN: + this.moveHighlight((e.which === KEY.UP) ? -1 : 1); + killEvent(e); + return; + case KEY.ENTER: + this.selectHighlighted(); + killEvent(e); + return; + case KEY.TAB: + this.selectHighlighted({noFocus: true}); + return; + case KEY.ESC: + this.cancel(e); + killEvent(e); + return; + } + })); + + this.search.on("blur", this.bind(function(e) { + // a workaround for chrome to keep the search field focussed when the scroll bar is used to scroll the dropdown. + // without this the search field loses focus which is annoying + if (document.activeElement === this.body.get(0)) { + window.setTimeout(this.bind(function() { + if (this.opened()) { + this.search.focus(); + } + }), 0); + } + })); + + this.focusser.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) { + return; + } + + if (this.opts.openOnEnter === false && e.which === KEY.ENTER) { + killEvent(e); + return; + } + + if (e.which == KEY.DOWN || e.which == KEY.UP + || (e.which == KEY.ENTER && this.opts.openOnEnter)) { + + if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) return; + + this.open(); + killEvent(e); + return; + } + + if (e.which == KEY.DELETE || e.which == KEY.BACKSPACE) { + if (this.opts.allowClear) { + this.clear(); + } + killEvent(e); + return; + } + })); + + + installKeyUpChangeEvent(this.focusser); + this.focusser.on("keyup-change input", this.bind(function(e) { + if (this.opts.minimumResultsForSearch >= 0) { + e.stopPropagation(); + if (this.opened()) return; + this.open(); + } + })); + + selection.on("mousedown touchstart", "abbr", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + this.clear(); + killEventImmediately(e); + this.close(); + this.selection.focus(); + })); + + selection.on("mousedown touchstart", this.bind(function (e) { + // Prevent IE from generating a click event on the body + reinsertElement(selection); + + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + + if (this.opened()) { + this.close(); + } else if (this.isInterfaceEnabled()) { + this.open(); + } + + killEvent(e); + })); + + dropdown.on("mousedown touchstart", this.bind(function() { + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } + })); + + selection.on("focus", this.bind(function(e) { + killEvent(e); + })); + + this.focusser.on("focus", this.bind(function(){ + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + })).on("blur", this.bind(function() { + if (!this.opened()) { + this.container.removeClass("select2-container-active"); + this.opts.element.trigger($.Event("select2-blur")); + } + })); + this.search.on("focus", this.bind(function(){ + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + })); + + this.initContainerWidth(); + this.opts.element.addClass("select2-offscreen"); + this.setPlaceholder(); + + }, + + // single + clear: function(triggerChange) { + var data=this.selection.data("select2-data"); + if (data) { // guard against queued quick consecutive clicks + var evt = $.Event("select2-clearing"); + this.opts.element.trigger(evt); + if (evt.isDefaultPrevented()) { + return; + } + var placeholderOption = this.getPlaceholderOption(); + this.opts.element.val(placeholderOption ? placeholderOption.val() : ""); + this.selection.find(".select2-chosen").empty(); + this.selection.removeData("select2-data"); + this.setPlaceholder(); + + if (triggerChange !== false){ + this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data }); + this.triggerChange({removed:data}); + } + } + }, + + /** + * Sets selection based on source element's value + */ + // single + initSelection: function () { + var selected; + if (this.isPlaceholderOptionSelected()) { + this.updateSelection(null); + this.close(); + this.setPlaceholder(); + } else { + var self = this; + this.opts.initSelection.call(null, this.opts.element, function(selected){ + if (selected !== undefined && selected !== null) { + self.updateSelection(selected); + self.close(); + self.setPlaceholder(); + self.nextSearchTerm = self.opts.nextSearchTerm(selected, self.search.val()); + } + }); + } + }, + + isPlaceholderOptionSelected: function() { + var placeholderOption; + if (this.getPlaceholder() === undefined) return false; // no placeholder specified so no option should be considered + return ((placeholderOption = this.getPlaceholderOption()) !== undefined && placeholderOption.prop("selected")) + || (this.opts.element.val() === "") + || (this.opts.element.val() === undefined) + || (this.opts.element.val() === null); + }, + + // single + prepareOpts: function () { + var opts = this.parent.prepareOpts.apply(this, arguments), + self=this; + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + // install the selection initializer + opts.initSelection = function (element, callback) { + var selected = element.find("option").filter(function() { return this.selected && !this.disabled }); + // a single select box always has a value, no need to null check 'selected' + callback(self.optionToData(selected)); + }; + } else if ("data" in opts) { + // install default initSelection when applied to hidden input and data is local + opts.initSelection = opts.initSelection || function (element, callback) { + var id = element.val(); + //search in data by id, storing the actual matching item + var match = null; + opts.query({ + matcher: function(term, text, el){ + var is_match = equal(id, opts.id(el)); + if (is_match) { + match = el; + } + return is_match; + }, + callback: !$.isFunction(callback) ? $.noop : function() { + callback(match); + } + }); + }; + } + + return opts; + }, + + // single + getPlaceholder: function() { + // if a placeholder is specified on a single select without a valid placeholder option ignore it + if (this.select) { + if (this.getPlaceholderOption() === undefined) { + return undefined; + } + } + + return this.parent.getPlaceholder.apply(this, arguments); + }, + + // single + setPlaceholder: function () { + var placeholder = this.getPlaceholder(); + + if (this.isPlaceholderOptionSelected() && placeholder !== undefined) { + + // check for a placeholder option if attached to a select + if (this.select && this.getPlaceholderOption() === undefined) return; + + this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(placeholder)); + + this.selection.addClass("select2-default"); + + this.container.removeClass("select2-allowclear"); + } + }, + + // single + postprocessResults: function (data, initial, noHighlightUpdate) { + var selected = 0, self = this, showSearchInput = true; + + // find the selected element in the result list + + this.findHighlightableChoices().each2(function (i, elm) { + if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) { + selected = i; + return false; + } + }); + + // and highlight it + if (noHighlightUpdate !== false) { + if (initial === true && selected >= 0) { + this.highlight(selected); + } else { + this.highlight(0); + } + } + + // hide the search box if this is the first we got the results and there are enough of them for search + + if (initial === true) { + var min = this.opts.minimumResultsForSearch; + if (min >= 0) { + this.showSearch(countResults(data.results) >= min); + } + } + }, + + // single + showSearch: function(showSearchInput) { + if (this.showSearchInput === showSearchInput) return; + + this.showSearchInput = showSearchInput; + + this.dropdown.find(".select2-search").toggleClass("select2-search-hidden", !showSearchInput); + this.dropdown.find(".select2-search").toggleClass("select2-offscreen", !showSearchInput); + //add "select2-with-searchbox" to the container if search box is shown + $(this.dropdown, this.container).toggleClass("select2-with-searchbox", showSearchInput); + }, + + // single + onSelect: function (data, options) { + + if (!this.triggerSelect(data)) { return; } + + var old = this.opts.element.val(), + oldData = this.data(); + + this.opts.element.val(this.id(data)); + this.updateSelection(data); + + this.opts.element.trigger({ type: "select2-selected", val: this.id(data), choice: data }); + + this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val()); + this.close(); + + if ((!options || !options.noFocus) && this.opts.shouldFocusInput(this)) { + this.focusser.focus(); + } + + if (!equal(old, this.id(data))) { + this.triggerChange({ added: data, removed: oldData }); + } + }, + + // single + updateSelection: function (data) { + + var container=this.selection.find(".select2-chosen"), formatted, cssClass; + + this.selection.data("select2-data", data); + + container.empty(); + if (data !== null) { + formatted=this.opts.formatSelection(data, container, this.opts.escapeMarkup); + } + if (formatted !== undefined) { + container.append(formatted); + } + cssClass=this.opts.formatSelectionCssClass(data, container); + if (cssClass !== undefined) { + container.addClass(cssClass); + } + + this.selection.removeClass("select2-default"); + + if (this.opts.allowClear && this.getPlaceholder() !== undefined) { + this.container.addClass("select2-allowclear"); + } + }, + + // single + val: function () { + var val, + triggerChange = false, + data = null, + self = this, + oldData = this.data(); + + if (arguments.length === 0) { + return this.opts.element.val(); + } + + val = arguments[0]; + + if (arguments.length > 1) { + triggerChange = arguments[1]; + } + + if (this.select) { + this.select + .val(val) + .find("option").filter(function() { return this.selected }).each2(function (i, elm) { + data = self.optionToData(elm); + return false; + }); + this.updateSelection(data); + this.setPlaceholder(); + if (triggerChange) { + this.triggerChange({added: data, removed:oldData}); + } + } else { + // val is an id. !val is true for [undefined,null,'',0] - 0 is legal + if (!val && val !== 0) { + this.clear(triggerChange); + return; + } + if (this.opts.initSelection === undefined) { + throw new Error("cannot call val() if initSelection() is not defined"); + } + this.opts.element.val(val); + this.opts.initSelection(this.opts.element, function(data){ + self.opts.element.val(!data ? "" : self.id(data)); + self.updateSelection(data); + self.setPlaceholder(); + if (triggerChange) { + self.triggerChange({added: data, removed:oldData}); + } + }); + } + }, + + // single + clearSearch: function () { + this.search.val(""); + this.focusser.val(""); + }, + + // single + data: function(value) { + var data, + triggerChange = false; + + if (arguments.length === 0) { + data = this.selection.data("select2-data"); + if (data == undefined) data = null; + return data; + } else { + if (arguments.length > 1) { + triggerChange = arguments[1]; + } + if (!value) { + this.clear(triggerChange); + } else { + data = this.data(); + this.opts.element.val(!value ? "" : this.id(value)); + this.updateSelection(value); + if (triggerChange) { + this.triggerChange({added: value, removed:data}); + } + } + } + } + }); + + MultiSelect2 = clazz(AbstractSelect2, { + + // multi + createContainer: function () { + var container = $(document.createElement("div")).attr({ + "class": "select2-container select2-container-multi" + }).html([ + "", + "
", + " ", + "
"].join("")); + return container; + }, + + // multi + prepareOpts: function () { + var opts = this.parent.prepareOpts.apply(this, arguments), + self=this; + + // TODO validate placeholder is a string if specified + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + // install the selection initializer + opts.initSelection = function (element, callback) { + + var data = []; + + element.find("option").filter(function() { return this.selected && !this.disabled }).each2(function (i, elm) { + data.push(self.optionToData(elm)); + }); + callback(data); + }; + } else if ("data" in opts) { + // install default initSelection when applied to hidden input and data is local + opts.initSelection = opts.initSelection || function (element, callback) { + var ids = splitVal(element.val(), opts.separator); + //search in data by array of ids, storing matching items in a list + var matches = []; + opts.query({ + matcher: function(term, text, el){ + var is_match = $.grep(ids, function(id) { + return equal(id, opts.id(el)); + }).length; + if (is_match) { + matches.push(el); + } + return is_match; + }, + callback: !$.isFunction(callback) ? $.noop : function() { + // reorder matches based on the order they appear in the ids array because right now + // they are in the order in which they appear in data array + var ordered = []; + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + for (var j = 0; j < matches.length; j++) { + var match = matches[j]; + if (equal(id, opts.id(match))) { + ordered.push(match); + matches.splice(j, 1); + break; + } + } + } + callback(ordered); + } + }); + }; + } + + return opts; + }, + + // multi + selectChoice: function (choice) { + + var selected = this.container.find(".select2-search-choice-focus"); + if (selected.length && choice && choice[0] == selected[0]) { + + } else { + if (selected.length) { + this.opts.element.trigger("choice-deselected", selected); + } + selected.removeClass("select2-search-choice-focus"); + if (choice && choice.length) { + this.close(); + choice.addClass("select2-search-choice-focus"); + this.opts.element.trigger("choice-selected", choice); + } + } + }, + + // multi + destroy: function() { + $("label[for='" + this.search.attr('id') + "']") + .attr('for', this.opts.element.attr("id")); + this.parent.destroy.apply(this, arguments); + + cleanupJQueryElements.call(this, + "searchContainer", + "selection" + ); + }, + + // multi + initContainer: function () { + + var selector = ".select2-choices", selection; + + this.searchContainer = this.container.find(".select2-search-field"); + this.selection = selection = this.container.find(selector); + + var _this = this; + this.selection.on("click", ".select2-search-choice:not(.select2-locked)", function (e) { + //killEvent(e); + _this.search[0].focus(); + _this.selectChoice($(this)); + }); + + // rewrite labels from original element to focusser + this.search.attr("id", "s2id_autogen"+nextUid()); + + this.search.prev() + .text($("label[for='" + this.opts.element.attr("id") + "']").text()) + .attr('for', this.search.attr('id')); + + this.search.on("input paste", this.bind(function() { + if (!this.isInterfaceEnabled()) return; + if (!this.opened()) { + this.open(); + } + })); + + this.search.attr("tabindex", this.elementTabIndex); + + this.keydowns = 0; + this.search.on("keydown", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + ++this.keydowns; + var selected = selection.find(".select2-search-choice-focus"); + var prev = selected.prev(".select2-search-choice:not(.select2-locked)"); + var next = selected.next(".select2-search-choice:not(.select2-locked)"); + var pos = getCursorInfo(this.search); + + if (selected.length && + (e.which == KEY.LEFT || e.which == KEY.RIGHT || e.which == KEY.BACKSPACE || e.which == KEY.DELETE || e.which == KEY.ENTER)) { + var selectedChoice = selected; + if (e.which == KEY.LEFT && prev.length) { + selectedChoice = prev; + } + else if (e.which == KEY.RIGHT) { + selectedChoice = next.length ? next : null; + } + else if (e.which === KEY.BACKSPACE) { + if (this.unselect(selected.first())) { + this.search.width(10); + selectedChoice = prev.length ? prev : next; + } + } else if (e.which == KEY.DELETE) { + if (this.unselect(selected.first())) { + this.search.width(10); + selectedChoice = next.length ? next : null; + } + } else if (e.which == KEY.ENTER) { + selectedChoice = null; + } + + this.selectChoice(selectedChoice); + killEvent(e); + if (!selectedChoice || !selectedChoice.length) { + this.open(); + } + return; + } else if (((e.which === KEY.BACKSPACE && this.keydowns == 1) + || e.which == KEY.LEFT) && (pos.offset == 0 && !pos.length)) { + + this.selectChoice(selection.find(".select2-search-choice:not(.select2-locked)").last()); + killEvent(e); + return; + } else { + this.selectChoice(null); + } + + if (this.opened()) { + switch (e.which) { + case KEY.UP: + case KEY.DOWN: + this.moveHighlight((e.which === KEY.UP) ? -1 : 1); + killEvent(e); + return; + case KEY.ENTER: + this.selectHighlighted(); + killEvent(e); + return; + case KEY.TAB: + this.selectHighlighted({noFocus:true}); + this.close(); + return; + case KEY.ESC: + this.cancel(e); + killEvent(e); + return; + } + } + + if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) + || e.which === KEY.BACKSPACE || e.which === KEY.ESC) { + return; + } + + if (e.which === KEY.ENTER) { + if (this.opts.openOnEnter === false) { + return; + } else if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) { + return; + } + } + + this.open(); + + if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) { + // prevent the page from scrolling + killEvent(e); + } + + if (e.which === KEY.ENTER) { + // prevent form from being submitted + killEvent(e); + } + + })); + + this.search.on("keyup", this.bind(function (e) { + this.keydowns = 0; + this.resizeSearch(); + }) + ); + + this.search.on("blur", this.bind(function(e) { + this.container.removeClass("select2-container-active"); + this.search.removeClass("select2-focused"); + this.selectChoice(null); + if (!this.opened()) this.clearSearch(); + e.stopImmediatePropagation(); + this.opts.element.trigger($.Event("select2-blur")); + })); + + this.container.on("click", selector, this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + if ($(e.target).closest(".select2-search-choice").length > 0) { + // clicked inside a select2 search choice, do not open + return; + } + this.selectChoice(null); + this.clearPlaceholder(); + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.open(); + this.focusSearch(); + e.preventDefault(); + })); + + this.container.on("focus", selector, this.bind(function () { + if (!this.isInterfaceEnabled()) return; + if (!this.container.hasClass("select2-container-active")) { + this.opts.element.trigger($.Event("select2-focus")); + } + this.container.addClass("select2-container-active"); + this.dropdown.addClass("select2-drop-active"); + this.clearPlaceholder(); + })); + + this.initContainerWidth(); + this.opts.element.addClass("select2-offscreen"); + + // set the placeholder if necessary + this.clearSearch(); + }, + + // multi + enableInterface: function() { + if (this.parent.enableInterface.apply(this, arguments)) { + this.search.prop("disabled", !this.isInterfaceEnabled()); + } + }, + + // multi + initSelection: function () { + var data; + if (this.opts.element.val() === "" && this.opts.element.text() === "") { + this.updateSelection([]); + this.close(); + // set the placeholder if necessary + this.clearSearch(); + } + if (this.select || this.opts.element.val() !== "") { + var self = this; + this.opts.initSelection.call(null, this.opts.element, function(data){ + if (data !== undefined && data !== null) { + self.updateSelection(data); + self.close(); + // set the placeholder if necessary + self.clearSearch(); + } + }); + } + }, + + // multi + clearSearch: function () { + var placeholder = this.getPlaceholder(), + maxWidth = this.getMaxSearchWidth(); + + if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) { + this.search.val(placeholder).addClass("select2-default"); + // stretch the search box to full width of the container so as much of the placeholder is visible as possible + // we could call this.resizeSearch(), but we do not because that requires a sizer and we do not want to create one so early because of a firefox bug, see #944 + this.search.width(maxWidth > 0 ? maxWidth : this.container.css("width")); + } else { + this.search.val("").width(10); + } + }, + + // multi + clearPlaceholder: function () { + if (this.search.hasClass("select2-default")) { + this.search.val("").removeClass("select2-default"); + } + }, + + // multi + opening: function () { + this.clearPlaceholder(); // should be done before super so placeholder is not used to search + this.resizeSearch(); + + this.parent.opening.apply(this, arguments); + + this.focusSearch(); + + // initializes search's value with nextSearchTerm (if defined by user) + // ignore nextSearchTerm if the dropdown is opened by the user pressing a letter + if(this.search.val() === "") { + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.search.select(); + } + } + + this.updateResults(true); + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } + this.opts.element.trigger($.Event("select2-open")); + }, + + // multi + close: function () { + if (!this.opened()) return; + this.parent.close.apply(this, arguments); + }, + + // multi + focus: function () { + this.close(); + this.search.focus(); + }, + + // multi + isFocused: function () { + return this.search.hasClass("select2-focused"); + }, + + // multi + updateSelection: function (data) { + var ids = [], filtered = [], self = this; + + // filter out duplicates + $(data).each(function () { + if (indexOf(self.id(this), ids) < 0) { + ids.push(self.id(this)); + filtered.push(this); + } + }); + data = filtered; + + this.selection.find(".select2-search-choice").remove(); + $(data).each(function () { + self.addSelectedChoice(this); + }); + self.postprocessResults(); + }, + + // multi + tokenize: function() { + var input = this.search.val(); + input = this.opts.tokenizer.call(this, input, this.data(), this.bind(this.onSelect), this.opts); + if (input != null && input != undefined) { + this.search.val(input); + if (input.length > 0) { + this.open(); + } + } + + }, + + // multi + onSelect: function (data, options) { + + if (!this.triggerSelect(data)) { return; } + + this.addSelectedChoice(data); + + this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data }); + + // keep track of the search's value before it gets cleared + this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val()); + + this.clearSearch(); + this.updateResults(); + + if (this.select || !this.opts.closeOnSelect) this.postprocessResults(data, false, this.opts.closeOnSelect===true); + + if (this.opts.closeOnSelect) { + this.close(); + this.search.width(10); + } else { + if (this.countSelectableResults()>0) { + this.search.width(10); + this.resizeSearch(); + if (this.getMaximumSelectionSize() > 0 && this.val().length >= this.getMaximumSelectionSize()) { + // if we reached max selection size repaint the results so choices + // are replaced with the max selection reached message + this.updateResults(true); + } else { + // initializes search's value with nextSearchTerm and update search result + if(this.nextSearchTerm != undefined){ + this.search.val(this.nextSearchTerm); + this.updateResults(); + this.search.select(); + } + } + this.positionDropdown(); + } else { + // if nothing left to select close + this.close(); + this.search.width(10); + } + } + + // since its not possible to select an element that has already been + // added we do not need to check if this is a new element before firing change + this.triggerChange({ added: data }); + + if (!options || !options.noFocus) + this.focusSearch(); + }, + + // multi + cancel: function () { + this.close(); + this.focusSearch(); + }, + + addSelectedChoice: function (data) { + var enableChoice = !data.locked, + enabledItem = $( + "
  • " + + "
    " + + " " + + "
  • "), + disabledItem = $( + "
  • " + + "
    " + + "
  • "); + var choice = enableChoice ? enabledItem : disabledItem, + id = this.id(data), + val = this.getVal(), + formatted, + cssClass; + + formatted=this.opts.formatSelection(data, choice.find("div"), this.opts.escapeMarkup); + if (formatted != undefined) { + choice.find("div").replaceWith("
    "+formatted+"
    "); + } + cssClass=this.opts.formatSelectionCssClass(data, choice.find("div")); + if (cssClass != undefined) { + choice.addClass(cssClass); + } + + if(enableChoice){ + choice.find(".select2-search-choice-close") + .on("mousedown", killEvent) + .on("click dblclick", this.bind(function (e) { + if (!this.isInterfaceEnabled()) return; + + this.unselect($(e.target)); + this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"); + killEvent(e); + this.close(); + this.focusSearch(); + })).on("focus", this.bind(function () { + if (!this.isInterfaceEnabled()) return; + this.container.addClass("select2-container-active"); + this.dropdown.addClass("select2-drop-active"); + })); + } + + choice.data("select2-data", data); + choice.insertBefore(this.searchContainer); + + val.push(id); + this.setVal(val); + }, + + // multi + unselect: function (selected) { + var val = this.getVal(), + data, + index; + selected = selected.closest(".select2-search-choice"); + + if (selected.length === 0) { + throw "Invalid argument: " + selected + ". Must be .select2-search-choice"; + } + + data = selected.data("select2-data"); + + if (!data) { + // prevent a race condition when the 'x' is clicked really fast repeatedly the event can be queued + // and invoked on an element already removed + return; + } + + var evt = $.Event("select2-removing"); + evt.val = this.id(data); + evt.choice = data; + this.opts.element.trigger(evt); + + if (evt.isDefaultPrevented()) { + return false; + } + + while((index = indexOf(this.id(data), val)) >= 0) { + val.splice(index, 1); + this.setVal(val); + if (this.select) this.postprocessResults(); + } + + selected.remove(); + + this.opts.element.trigger({ type: "select2-removed", val: this.id(data), choice: data }); + this.triggerChange({ removed: data }); + + return true; + }, + + // multi + postprocessResults: function (data, initial, noHighlightUpdate) { + var val = this.getVal(), + choices = this.results.find(".select2-result"), + compound = this.results.find(".select2-result-with-children"), + self = this; + + choices.each2(function (i, choice) { + var id = self.id(choice.data("select2-data")); + if (indexOf(id, val) >= 0) { + choice.addClass("select2-selected"); + // mark all children of the selected parent as selected + choice.find(".select2-result-selectable").addClass("select2-selected"); + } + }); + + compound.each2(function(i, choice) { + // hide an optgroup if it doesn't have any selectable children + if (!choice.is('.select2-result-selectable') + && choice.find(".select2-result-selectable:not(.select2-selected)").length === 0) { + choice.addClass("select2-selected"); + } + }); + + if (this.highlight() == -1 && noHighlightUpdate !== false){ + self.highlight(0); + } + + //If all results are chosen render formatNoMatches + if(!this.opts.createSearchChoice && !choices.filter('.select2-result:not(.select2-selected)').length > 0){ + if(!data || data && !data.more && this.results.find(".select2-no-results").length === 0) { + if (checkFormatter(self.opts.formatNoMatches, "formatNoMatches")) { + this.results.append("
  • " + evaluate(self.opts.formatNoMatches, self.search.val()) + "
  • "); + } + } + } + + }, + + // multi + getMaxSearchWidth: function() { + return this.selection.width() - getSideBorderPadding(this.search); + }, + + // multi + resizeSearch: function () { + var minimumWidth, left, maxWidth, containerLeft, searchWidth, + sideBorderPadding = getSideBorderPadding(this.search); + + minimumWidth = measureTextWidth(this.search) + 10; + + left = this.search.offset().left; + + maxWidth = this.selection.width(); + containerLeft = this.selection.offset().left; + + searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding; + + if (searchWidth < minimumWidth) { + searchWidth = maxWidth - sideBorderPadding; + } + + if (searchWidth < 40) { + searchWidth = maxWidth - sideBorderPadding; + } + + if (searchWidth <= 0) { + searchWidth = minimumWidth; + } + + this.search.width(Math.floor(searchWidth)); + }, + + // multi + getVal: function () { + var val; + if (this.select) { + val = this.select.val(); + return val === null ? [] : val; + } else { + val = this.opts.element.val(); + return splitVal(val, this.opts.separator); + } + }, + + // multi + setVal: function (val) { + var unique; + if (this.select) { + this.select.val(val); + } else { + unique = []; + // filter out duplicates + $(val).each(function () { + if (indexOf(this, unique) < 0) unique.push(this); + }); + this.opts.element.val(unique.length === 0 ? "" : unique.join(this.opts.separator)); + } + }, + + // multi + buildChangeDetails: function (old, current) { + var current = current.slice(0), + old = old.slice(0); + + // remove intersection from each array + for (var i = 0; i < current.length; i++) { + for (var j = 0; j < old.length; j++) { + if (equal(this.opts.id(current[i]), this.opts.id(old[j]))) { + current.splice(i, 1); + if(i>0){ + i--; + } + old.splice(j, 1); + j--; + } + } + } + + return {added: current, removed: old}; + }, + + + // multi + val: function (val, triggerChange) { + var oldData, self=this; + + if (arguments.length === 0) { + return this.getVal(); + } + + oldData=this.data(); + if (!oldData.length) oldData=[]; + + // val is an id. !val is true for [undefined,null,'',0] - 0 is legal + if (!val && val !== 0) { + this.opts.element.val(""); + this.updateSelection([]); + this.clearSearch(); + if (triggerChange) { + this.triggerChange({added: this.data(), removed: oldData}); + } + return; + } + + // val is a list of ids + this.setVal(val); + + if (this.select) { + this.opts.initSelection(this.select, this.bind(this.updateSelection)); + if (triggerChange) { + this.triggerChange(this.buildChangeDetails(oldData, this.data())); + } + } else { + if (this.opts.initSelection === undefined) { + throw new Error("val() cannot be called if initSelection() is not defined"); + } + + this.opts.initSelection(this.opts.element, function(data){ + var ids=$.map(data, self.id); + self.setVal(ids); + self.updateSelection(data); + self.clearSearch(); + if (triggerChange) { + self.triggerChange(self.buildChangeDetails(oldData, self.data())); + } + }); + } + this.clearSearch(); + }, + + // multi + onSortStart: function() { + if (this.select) { + throw new Error("Sorting of elements is not supported when attached to instead."); + } + + // collapse search field into 0 width so its container can be collapsed as well + this.search.width(0); + // hide the container + this.searchContainer.hide(); + }, + + // multi + onSortEnd:function() { + + var val=[], self=this; + + // show search and move it to the end of the list + this.searchContainer.show(); + // make sure the search container is the last item in the list + this.searchContainer.appendTo(this.searchContainer.parent()); + // since we collapsed the width in dragStarted, we resize it here + this.resizeSearch(); + + // update selection + this.selection.find(".select2-search-choice").each(function() { + val.push(self.opts.id($(this).data("select2-data"))); + }); + this.setVal(val); + this.triggerChange(); + }, + + // multi + data: function(values, triggerChange) { + var self=this, ids, old; + if (arguments.length === 0) { + return this.selection + .children(".select2-search-choice") + .map(function() { return $(this).data("select2-data"); }) + .get(); + } else { + old = this.data(); + if (!values) { values = []; } + ids = $.map(values, function(e) { return self.opts.id(e); }); + this.setVal(ids); + this.updateSelection(values); + this.clearSearch(); + if (triggerChange) { + this.triggerChange(this.buildChangeDetails(old, this.data())); + } + } + } + }); + + $.fn.select2 = function () { + + var args = Array.prototype.slice.call(arguments, 0), + opts, + select2, + method, value, multiple, + allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "dropdown", "onSortStart", "onSortEnd", "enable", "disable", "readonly", "positionDropdown", "data", "search"], + valueMethods = ["opened", "isFocused", "container", "dropdown"], + propertyMethods = ["val", "data"], + methodsMap = { search: "externalSearch" }; + + this.each(function () { + if (args.length === 0 || typeof(args[0]) === "object") { + opts = args.length === 0 ? {} : $.extend({}, args[0]); + opts.element = $(this); + + if (opts.element.get(0).tagName.toLowerCase() === "select") { + multiple = opts.element.prop("multiple"); + } else { + multiple = opts.multiple || false; + if ("tags" in opts) {opts.multiple = multiple = true;} + } + + select2 = multiple ? new window.Select2["class"].multi() : new window.Select2["class"].single(); + select2.init(opts); + } else if (typeof(args[0]) === "string") { + + if (indexOf(args[0], allowedMethods) < 0) { + throw "Unknown method: " + args[0]; + } + + value = undefined; + select2 = $(this).data("select2"); + if (select2 === undefined) return; + + method=args[0]; + + if (method === "container") { + value = select2.container; + } else if (method === "dropdown") { + value = select2.dropdown; + } else { + if (methodsMap[method]) method = methodsMap[method]; + + value = select2[method].apply(select2, args.slice(1)); + } + if (indexOf(args[0], valueMethods) >= 0 + || (indexOf(args[0], propertyMethods) >= 0 && args.length == 1)) { + return false; // abort the iteration, ready to return first matched value + } + } else { + throw "Invalid arguments to select2 plugin: " + args; + } + }); + return (value === undefined) ? this : value; + }; + + // plugin defaults, accessible to users + $.fn.select2.defaults = { + width: "copy", + loadMorePadding: 0, + closeOnSelect: true, + openOnEnter: true, + containerCss: {}, + dropdownCss: {}, + containerCssClass: "", + dropdownCssClass: "", + formatResult: function(result, container, query, escapeMarkup) { + var markup=[]; + markMatch(result.text, query.term, markup, escapeMarkup); + return markup.join(""); + }, + formatSelection: function (data, container, escapeMarkup) { + return data ? escapeMarkup(data.text) : undefined; + }, + sortResults: function (results, container, query) { + return results; + }, + formatResultCssClass: function(data) {return data.css;}, + formatSelectionCssClass: function(data, container) {return undefined;}, + formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; }, + formatNoMatches: function () { return "No matches found"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " or more character" + (n == 1? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Loading more results…"; }, + formatSearching: function () { return "Searching…"; }, + minimumResultsForSearch: 0, + minimumInputLength: 0, + maximumInputLength: null, + maximumSelectionSize: 0, + id: function (e) { return e == undefined ? null : e.id; }, + matcher: function(term, text) { + return stripDiacritics(''+text).toUpperCase().indexOf(stripDiacritics(''+term).toUpperCase()) >= 0; + }, + separator: ",", + tokenSeparators: [], + tokenizer: defaultTokenizer, + escapeMarkup: defaultEscapeMarkup, + blurOnChange: false, + selectOnBlur: false, + adaptContainerCssClass: function(c) { return c; }, + adaptDropdownCssClass: function(c) { return null; }, + nextSearchTerm: function(selectedObject, currentSearchTerm) { return undefined; }, + searchInputPlaceholder: '', + createSearchChoicePosition: 'top', + shouldFocusInput: function (instance) { + // Attempt to detect touch devices + var supportsTouchEvents = (('ontouchstart' in window) || + (navigator.msMaxTouchPoints > 0)); + + // Only devices which support touch events should be special cased + if (!supportsTouchEvents) { + return true; + } + + // Never focus the input if search is disabled + if (instance.opts.minimumResultsForSearch < 0) { + return false; + } + + return true; + } + }; + + $.fn.select2.ajaxDefaults = { + transport: $.ajax, + params: { + type: "GET", + cache: false, + dataType: "json" + } + }; + + // exports + window.Select2 = { + query: { + ajax: ajax, + local: local, + tags: tags + }, util: { + debounce: debounce, + markMatch: markMatch, + escapeMarkup: defaultEscapeMarkup, + stripDiacritics: stripDiacritics + }, "class": { + "abstract": AbstractSelect2, + "single": SingleSelect2, + "multi": MultiSelect2 + } + }; + +}(jQuery)); diff --git a/apps/files_external/3rdparty/select2/select2.png b/apps/files_external/3rdparty/select2/select2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d804ffb99699b9e030f1010314de0970b5a000d Binary files /dev/null and b/apps/files_external/3rdparty/select2/select2.png differ diff --git a/apps/files_external/3rdparty/select2/select2_locale_ar.js b/apps/files_external/3rdparty/select2/select2_locale_ar.js new file mode 100644 index 0000000000000000000000000000000000000000..acb33a2f6ad9bf6adacdb41536130ae158dc8ce3 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ar.js @@ -0,0 +1,17 @@ +/** + * Select2 Arabic translation. + * + * Author: Adel KEDJOUR + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "لم يتم العثور على مطابقات"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; if (n == 1){ return "الرجاء إدخال حرف واحد على الأكثر"; } return n == 2 ? "الرجاء إدخال حرفين على الأكثر" : "الرجاء إدخال " + n + " على الأكثر"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; if (n == 1){ return "الرجاء إدخال حرف واحد على الأقل"; } return n == 2 ? "الرجاء إدخال حرفين على الأقل" : "الرجاء إدخال " + n + " على الأقل "; }, + formatSelectionTooBig: function (limit) { if (n == 1){ return "يمكنك أن تختار إختيار واحد فقط"; } return n == 2 ? "يمكنك أن تختار إختيارين فقط" : "يمكنك أن تختار " + n + " إختيارات فقط"; }, + formatLoadMore: function (pageNumber) { return "تحميل المزيد من النتائج…"; }, + formatSearching: function () { return "البحث…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_bg.js b/apps/files_external/3rdparty/select2/select2_locale_bg.js new file mode 100644 index 0000000000000000000000000000000000000000..585d28a2b0be56082bbe88327acdc8ff02e08f4d --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_bg.js @@ -0,0 +1,18 @@ +/** + * Select2 Bulgarian translation. + * + * @author Lubomir Vikev + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Няма намерени съвпадения"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Моля въведете още " + n + " символ" + (n > 1 ? "а" : ""); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Моля въведете с " + n + " по-малко символ" + (n > 1 ? "а" : ""); }, + formatSelectionTooBig: function (limit) { return "Можете да направите до " + limit + (limit > 1 ? " избора" : " избор"); }, + formatLoadMore: function (pageNumber) { return "Зареждат се още…"; }, + formatSearching: function () { return "Търсене…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ca.js b/apps/files_external/3rdparty/select2/select2_locale_ca.js new file mode 100644 index 0000000000000000000000000000000000000000..7e19d3ce9663013ae4bd67051ad2cf1c9fde7ac5 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ca.js @@ -0,0 +1,17 @@ +/** + * Select2 Catalan translation. + * + * Author: David Planella + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "No s'ha trobat cap coincidència"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduïu " + n + " caràcter" + (n == 1 ? "" : "s") + " més"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Introduïu " + n + " caràcter" + (n == 1? "" : "s") + "menys"; }, + formatSelectionTooBig: function (limit) { return "Només podeu seleccionar " + limit + " element" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "S'estan carregant més resultats…"; }, + formatSearching: function () { return "S'està cercant…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_cs.js b/apps/files_external/3rdparty/select2/select2_locale_cs.js new file mode 100644 index 0000000000000000000000000000000000000000..376b54a1352ed1e2dfcb4e96cd2449cce674fb4c --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_cs.js @@ -0,0 +1,49 @@ +/** + * Select2 Czech translation. + * + * Author: Michal Marek + * Author - sklonovani: David Vallner + */ +(function ($) { + "use strict"; + // use text for the numbers 2 through 4 + var smallNumbers = { + 2: function(masc) { return (masc ? "dva" : "dvě"); }, + 3: function() { return "tři"; }, + 4: function() { return "čtyři"; } + } + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenalezeny žádné položky"; }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n == 1) { + return "Prosím zadejte ještě jeden znak"; + } else if (n <= 4) { + return "Prosím zadejte ještě další "+smallNumbers[n](true)+" znaky"; + } else { + return "Prosím zadejte ještě dalších "+n+" znaků"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n == 1) { + return "Prosím zadejte o jeden znak méně"; + } else if (n <= 4) { + return "Prosím zadejte o "+smallNumbers[n](true)+" znaky méně"; + } else { + return "Prosím zadejte o "+n+" znaků méně"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit == 1) { + return "Můžete zvolit jen jednu položku"; + } else if (limit <= 4) { + return "Můžete zvolit maximálně "+smallNumbers[limit](false)+" položky"; + } else { + return "Můžete zvolit maximálně "+limit+" položek"; + } + }, + formatLoadMore: function (pageNumber) { return "Načítají se další výsledky…"; }, + formatSearching: function () { return "Vyhledávání…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_da.js b/apps/files_external/3rdparty/select2/select2_locale_da.js new file mode 100644 index 0000000000000000000000000000000000000000..dbce3e1748db927f84a847a0ce722b1388235843 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_da.js @@ -0,0 +1,17 @@ +/** + * Select2 Danish translation. + * + * Author: Anders Jenbo + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ingen resultater fundet"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Angiv venligst " + n + " tegn mere"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Angiv venligst " + n + " tegn mindre"; }, + formatSelectionTooBig: function (limit) { return "Du kan kun vælge " + limit + " emne" + (limit === 1 ? "" : "r"); }, + formatLoadMore: function (pageNumber) { return "Indlæser flere resultater…"; }, + formatSearching: function () { return "Søger…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_de.js b/apps/files_external/3rdparty/select2/select2_locale_de.js new file mode 100644 index 0000000000000000000000000000000000000000..93b18e81f85b4eb1be653a490894a7da14b8313a --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_de.js @@ -0,0 +1,15 @@ +/** + * Select2 German translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; }, + formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; }, + formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; }, + formatSearching: function () { return "Suche…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_el.js b/apps/files_external/3rdparty/select2/select2_locale_el.js new file mode 100644 index 0000000000000000000000000000000000000000..e94b02cbc5fddb736315e6e70d61e1ed6c33f6e7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_el.js @@ -0,0 +1,17 @@ +/** + * Select2 Greek translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Δεν βρέθηκαν αποτελέσματα"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Παρακαλούμε εισάγετε " + n + " περισσότερο" + (n > 1 ? "υς" : "") + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Παρακαλούμε διαγράψτε " + n + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, + formatSelectionTooBig: function (limit) { return "Μπορείτε να επιλέξετε μόνο " + limit + " αντικείμεν" + (limit > 1 ? "α" : "ο"); }, + formatLoadMore: function (pageNumber) { return "Φόρτωση περισσότερων…"; }, + formatSearching: function () { return "Αναζήτηση…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_en.js.template b/apps/files_external/3rdparty/select2/select2_locale_en.js.template new file mode 100644 index 0000000000000000000000000000000000000000..f66bcc844db607989fa1bd19a475f1e8e0060077 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_en.js.template @@ -0,0 +1,18 @@ +/** + * Select2 translation. + * + * Author: Your Name + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " results are available, use up and down arrow keys to navigate."; }, + formatNoMatches: function () { return "No matches found"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Loading more results…"; }, + formatSearching: function () { return "Searching…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_es.js b/apps/files_external/3rdparty/select2/select2_locale_es.js new file mode 100644 index 0000000000000000000000000000000000000000..f2b581791eb55dcb25ee05daeeef2663322e9a72 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_es.js @@ -0,0 +1,15 @@ +/** + * Select2 Spanish translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "No se encontraron resultados"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "ácter" : "acteres"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); }, + formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Cargando más resultados…"; }, + formatSearching: function () { return "Buscando…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_et.js b/apps/files_external/3rdparty/select2/select2_locale_et.js new file mode 100644 index 0000000000000000000000000000000000000000..a4045d22df7f15643cdc7675c0cdc76da1af1d88 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_et.js @@ -0,0 +1,17 @@ +/** + * Select2 Estonian translation. + * + * Author: Kuldar Kalvik + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tulemused puuduvad"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, + formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, + formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, + formatSearching: function () { return "Otsin.."; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_eu.js b/apps/files_external/3rdparty/select2/select2_locale_eu.js new file mode 100644 index 0000000000000000000000000000000000000000..1da1a709481f7493e0a6f64886de30577d527025 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_eu.js @@ -0,0 +1,43 @@ +/** + * Select2 Basque translation. + * + * Author: Julen Ruiz Aizpuru + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Ez da bat datorrenik aurkitu"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n === 1) { + return "Idatzi karaktere bat gehiago"; + } else { + return "Idatzi " + n + " karaktere gehiago"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n === 1) { + return "Idatzi karaktere bat gutxiago"; + } else { + return "Idatzi " + n + " karaktere gutxiago"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit === 1 ) { + return "Elementu bakarra hauta dezakezu"; + } else { + return limit + " elementu hauta ditzakezu soilik"; + } + }, + formatLoadMore: function (pageNumber) { + return "Emaitza gehiago kargatzen…"; + }, + formatSearching: function () { + return "Bilatzen…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fa.js b/apps/files_external/3rdparty/select2/select2_locale_fa.js new file mode 100644 index 0000000000000000000000000000000000000000..a9e95af4dba0d68f5a3a8480671d7c86e66b164c --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fa.js @@ -0,0 +1,19 @@ +/** + * Select2 Persian translation. + * + * Author: Ali Choopan + * Author: Ebrahim Byagowi + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " نتیجه موجود است، کلیدهای جهت بالا و پایین را برای گشتن استفاده کنید."; }, + formatNoMatches: function () { return "نتیجه‌ای یافت نشد."; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "لطفاً " + n + " نویسه بیشتر وارد نمایید"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "لطفاً " + n + " نویسه را حذف کنید."; }, + formatSelectionTooBig: function (limit) { return "شما فقط می‌توانید " + limit + " مورد را انتخاب کنید"; }, + formatLoadMore: function (pageNumber) { return "در حال بارگیری موارد بیشتر…"; }, + formatSearching: function () { return "در حال جستجو…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fi.js b/apps/files_external/3rdparty/select2/select2_locale_fi.js new file mode 100644 index 0000000000000000000000000000000000000000..9bed310f71718802586f7717cb99d4a8d780e2d6 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fi.js @@ -0,0 +1,28 @@ +/** + * Select2 Finnish translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Ei tuloksia"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + return "Ole hyvä ja anna " + n + " merkkiä lisää"; + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + return "Ole hyvä ja anna " + n + " merkkiä vähemmän"; + }, + formatSelectionTooBig: function (limit) { + return "Voit valita ainoastaan " + limit + " kpl"; + }, + formatLoadMore: function (pageNumber) { + return "Ladataan lisää tuloksia…"; + }, + formatSearching: function () { + return "Etsitään…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_fr.js b/apps/files_external/3rdparty/select2/select2_locale_fr.js new file mode 100644 index 0000000000000000000000000000000000000000..9afda2abdcdb1d04b782d981d49eb704619d3092 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fr.js @@ -0,0 +1,16 @@ +/** + * Select2 French translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."; }, + formatNoMatches: function () { return "Aucun résultat trouvé"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caractère" + (n == 1 ? "" : "s") + " de plus"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de supprimer " + n + " caractère" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires…"; }, + formatSearching: function () { return "Recherche en cours…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_gl.js b/apps/files_external/3rdparty/select2/select2_locale_gl.js new file mode 100644 index 0000000000000000000000000000000000000000..80326320bf0380b19e74cc1289b26fddcb887a94 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_gl.js @@ -0,0 +1,43 @@ +/** + * Select2 Galician translation + * + * Author: Leandro Regueiro + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { + return "Non se atoparon resultados"; + }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n === 1) { + return "Engada un carácter"; + } else { + return "Engada " + n + " caracteres"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n === 1) { + return "Elimine un carácter"; + } else { + return "Elimine " + n + " caracteres"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit === 1 ) { + return "Só pode seleccionar un elemento"; + } else { + return "Só pode seleccionar " + limit + " elementos"; + } + }, + formatLoadMore: function (pageNumber) { + return "Cargando máis resultados…"; + }, + formatSearching: function () { + return "Buscando…"; + } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_he.js b/apps/files_external/3rdparty/select2/select2_locale_he.js new file mode 100644 index 0000000000000000000000000000000000000000..003854108045a1a517aabf6e6ce69331d63d6fe8 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_he.js @@ -0,0 +1,17 @@ +/** +* Select2 Hebrew translation. +* +* Author: Yakir Sitbon +*/ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "לא נמצאו התאמות"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "נא להזין עוד " + n + " תווים נוספים"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "נא להזין פחות " + n + " תווים"; }, + formatSelectionTooBig: function (limit) { return "ניתן לבחור " + limit + " פריטים"; }, + formatLoadMore: function (pageNumber) { return "טוען תוצאות נוספות…"; }, + formatSearching: function () { return "מחפש…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_hr.js b/apps/files_external/3rdparty/select2/select2_locale_hr.js new file mode 100644 index 0000000000000000000000000000000000000000..c29372524b65dbbc08d4d7658d7fad24bf34796e --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_hr.js @@ -0,0 +1,22 @@ +/** + * Select2 Croatian translation. + * + * @author Edi Modrić + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nema rezultata"; }, + formatInputTooShort: function (input, min) { return "Unesite još" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Unesite" + character(input.length - max) + " manje"; }, + formatSelectionTooBig: function (limit) { return "Maksimalan broj odabranih stavki je " + limit; }, + formatLoadMore: function (pageNumber) { return "Učitavanje rezultata…"; }, + formatSearching: function () { return "Pretraga…"; } + }); + + function character (n) { + return " " + n + " znak" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "a" : "" : "ova"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_hu.js b/apps/files_external/3rdparty/select2/select2_locale_hu.js new file mode 100644 index 0000000000000000000000000000000000000000..a8c308819285b48dc803a42a67eeb2ba3b2bd723 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_hu.js @@ -0,0 +1,15 @@ +/** + * Select2 Hungarian translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nincs találat."; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, + formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, + formatLoadMore: function (pageNumber) { return "Töltés…"; }, + formatSearching: function () { return "Keresés…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_id.js b/apps/files_external/3rdparty/select2/select2_locale_id.js new file mode 100644 index 0000000000000000000000000000000000000000..547454079ba7ad88e705ad78aa6eb1d19647aecd --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_id.js @@ -0,0 +1,17 @@ +/** + * Select2 Indonesian translation. + * + * Author: Ibrahim Yusuf + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tidak ada data yang sesuai"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Masukkan " + n + " huruf lagi" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Hapus " + n + " huruf" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Anda hanya dapat memilih " + limit + " pilihan" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Mengambil data…"; }, + formatSearching: function () { return "Mencari…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_is.js b/apps/files_external/3rdparty/select2/select2_locale_is.js new file mode 100644 index 0000000000000000000000000000000000000000..aecc6cd71940c7be561be0980dcb37cfddd17cec --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_is.js @@ -0,0 +1,15 @@ +/** + * Select2 Icelandic translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ekkert fannst"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vinsamlegast skrifið " + n + " staf" + (n > 1 ? "i" : "") + " í viðbót"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vinsamlegast styttið texta um " + n + " staf" + (n > 1 ? "i" : ""); }, + formatSelectionTooBig: function (limit) { return "Þú getur aðeins valið " + limit + " atriði"; }, + formatLoadMore: function (pageNumber) { return "Sæki fleiri niðurstöður…"; }, + formatSearching: function () { return "Leita…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_it.js b/apps/files_external/3rdparty/select2/select2_locale_it.js new file mode 100644 index 0000000000000000000000000000000000000000..d4e24de70000c211dc6e6e1a5169c4bef5fe910b --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_it.js @@ -0,0 +1,15 @@ +/** + * Select2 Italian translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nessuna corrispondenza trovata"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Inserisci ancora " + n + " caratter" + (n == 1? "e" : "i"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Inserisci " + n + " caratter" + (n == 1? "e" : "i") + " in meno"; }, + formatSelectionTooBig: function (limit) { return "Puoi selezionare solo " + limit + " element" + (limit == 1 ? "o" : "i"); }, + formatLoadMore: function (pageNumber) { return "Caricamento in corso…"; }, + formatSearching: function () { return "Ricerca…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_ja.js b/apps/files_external/3rdparty/select2/select2_locale_ja.js new file mode 100644 index 0000000000000000000000000000000000000000..81106e78a80848ad0ff2747f30697caac7d6abc7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ja.js @@ -0,0 +1,15 @@ +/** + * Select2 Japanese translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "該当なし"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; }, + formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; }, + formatLoadMore: function (pageNumber) { return "読込中・・・"; }, + formatSearching: function () { return "検索中・・・"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ka.js b/apps/files_external/3rdparty/select2/select2_locale_ka.js new file mode 100644 index 0000000000000000000000000000000000000000..366cc2d9c4d909472c54cbfb3d9a197916e9e860 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ka.js @@ -0,0 +1,17 @@ +/** + * Select2 Georgian (Kartuli) translation. + * + * Author: Dimitri Kurashvili dimakura@gmail.com + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "ვერ მოიძებნა"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "გთხოვთ შეიყვანოთ კიდევ " + n + " სიმბოლო"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "გთხოვთ წაშალოთ " + n + " სიმბოლო"; }, + formatSelectionTooBig: function (limit) { return "თქვენ შეგიძლიათ მხოლოდ " + limit + " ჩანაწერის მონიშვნა"; }, + formatLoadMore: function (pageNumber) { return "შედეგის ჩატვირთვა…"; }, + formatSearching: function () { return "ძებნა…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ko.js b/apps/files_external/3rdparty/select2/select2_locale_ko.js new file mode 100644 index 0000000000000000000000000000000000000000..1a84d21eae66a17d9e7b32af3070035a3bf9b7fc --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ko.js @@ -0,0 +1,17 @@ +/** + * Select2 Korean translation. + * + * @author Swen Mun + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "결과 없음"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; }, + formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; }, + formatLoadMore: function (pageNumber) { return "불러오는 중…"; }, + formatSearching: function () { return "검색 중…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_lt.js b/apps/files_external/3rdparty/select2/select2_locale_lt.js new file mode 100644 index 0000000000000000000000000000000000000000..2e2f950b00dd3193d07d1369afd9c9e282038547 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_lt.js @@ -0,0 +1,24 @@ +/** + * Select2 Lithuanian translation. + * + * @author CRONUS Karmalakas + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Atitikmenų nerasta"; }, + formatInputTooShort: function (input, min) { return "Įrašykite dar" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Pašalinkite" + character(input.length - max); }, + formatSelectionTooBig: function (limit) { + return "Jūs galite pasirinkti tik " + limit + " element" + ((limit%100 > 9 && limit%100 < 21) || limit%10 == 0 ? "ų" : limit%10 > 1 ? "us" : "ą"); + }, + formatLoadMore: function (pageNumber) { return "Kraunama daugiau rezultatų…"; }, + formatSearching: function () { return "Ieškoma…"; } + }); + + function character (n) { + return " " + n + " simbol" + ((n%100 > 9 && n%100 < 21) || n%10 == 0 ? "ių" : n%10 > 1 ? "ius" : "į"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_lv.js b/apps/files_external/3rdparty/select2/select2_locale_lv.js new file mode 100644 index 0000000000000000000000000000000000000000..b300ec770f450f784025434b3b4b02b169b0a81f --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_lv.js @@ -0,0 +1,17 @@ +/** + * Select2 Latvian translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Sakritību nav"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Lūdzu ievadiet vēl " + n + " simbol" + (n == 11 ? "us" : n%10 == 1 ? "u" : "us"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Lūdzu ievadiet par " + n + " simbol" + (n == 11 ? "iem" : n%10 == 1 ? "u" : "iem") + " mazāk"; }, + formatSelectionTooBig: function (limit) { return "Jūs varat izvēlēties ne vairāk kā " + limit + " element" + (limit == 11 ? "us" : limit%10 == 1 ? "u" : "us"); }, + formatLoadMore: function (pageNumber) { return "Datu ielāde…"; }, + formatSearching: function () { return "Meklēšana…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_mk.js b/apps/files_external/3rdparty/select2/select2_locale_mk.js new file mode 100644 index 0000000000000000000000000000000000000000..513562c51bfb30f2d4416ba104a27b8b6f5f8bed --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_mk.js @@ -0,0 +1,17 @@ +/** + * Select2 Macedonian translation. + * + * Author: Marko Aleksic + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Нема пронајдено совпаѓања"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Ве молиме внесете уште " + n + " карактер" + (n == 1 ? "" : "и"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Ве молиме внесете " + n + " помалку карактер" + (n == 1? "" : "и"); }, + formatSelectionTooBig: function (limit) { return "Можете да изберете само " + limit + " ставк" + (limit == 1 ? "а" : "и"); }, + formatLoadMore: function (pageNumber) { return "Вчитување резултати…"; }, + formatSearching: function () { return "Пребарување…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_ms.js b/apps/files_external/3rdparty/select2/select2_locale_ms.js new file mode 100644 index 0000000000000000000000000000000000000000..262042aab15c4fa811b63adefb2e1b4ae365e736 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ms.js @@ -0,0 +1,17 @@ +/** + * Select2 Malay translation. + * + * Author: Kepoweran + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Tiada padanan yang ditemui"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Sila masukkan " + n + " aksara lagi"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Sila hapuskan " + n + " aksara"; }, + formatSelectionTooBig: function (limit) { return "Anda hanya boleh memilih " + limit + " pilihan"; }, + formatLoadMore: function (pageNumber) { return "Sedang memuatkan keputusan…"; }, + formatSearching: function () { return "Mencari…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_nl.js b/apps/files_external/3rdparty/select2/select2_locale_nl.js new file mode 100644 index 0000000000000000000000000000000000000000..5b5c4156ce18fd451b1198a6222fbc2cf9f6b12e --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_nl.js @@ -0,0 +1,15 @@ +/** + * Select2 Dutch translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Geen resultaten gevonden"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul " + n + " karakter" + (n == 1? "" : "s") + " meer in"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vul " + n + " karakter" + (n == 1? "" : "s") + " minder in"; }, + formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; }, + formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; }, + formatSearching: function () { return "Zoeken…"; } + }); +})(jQuery); \ No newline at end of file diff --git a/apps/files_external/3rdparty/select2/select2_locale_no.js b/apps/files_external/3rdparty/select2/select2_locale_no.js new file mode 100644 index 0000000000000000000000000000000000000000..ab61c082a02fb9d9f7b51097d71f466fb07ad7fe --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_no.js @@ -0,0 +1,18 @@ +/** + * Select2 Norwegian translation. + * + * Author: Torgeir Veimo + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ingen treff"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vennligst skriv inn " + n + (n>1 ? " flere tegn" : " tegn til"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vennligst fjern " + n + " tegn"; }, + formatSelectionTooBig: function (limit) { return "Du kan velge maks " + limit + " elementer"; }, + formatLoadMore: function (pageNumber) { return "Laster flere resultater…"; }, + formatSearching: function () { return "Søker…"; } + }); +})(jQuery); + diff --git a/apps/files_external/3rdparty/select2/select2_locale_pl.js b/apps/files_external/3rdparty/select2/select2_locale_pl.js new file mode 100644 index 0000000000000000000000000000000000000000..75054e76578de024ecedb7ad986f7fa8b746428f --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pl.js @@ -0,0 +1,22 @@ +/** + * Select2 Polish translation. + * + * @author Jan Kondratowicz + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Brak wyników"; }, + formatInputTooShort: function (input, min) { return "Wpisz jeszcze" + character(min - input.length, "znak", "i"); }, + formatInputTooLong: function (input, max) { return "Wpisana fraza jest za długa o" + character(input.length - max, "znak", "i"); }, + formatSelectionTooBig: function (limit) { return "Możesz zaznaczyć najwyżej" + character(limit, "element", "y"); }, + formatLoadMore: function (pageNumber) { return "Ładowanie wyników…"; }, + formatSearching: function () { return "Szukanie…"; } + }); + + function character (n, word, pluralSuffix) { + return " " + n + " " + word + (n == 1 ? "" : n%10 < 5 && n%10 > 1 && (n%100 < 5 || n%100 > 20) ? pluralSuffix : "ów"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js b/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js new file mode 100644 index 0000000000000000000000000000000000000000..ac4969acfbb554609abb3b8251a185fe717a4b46 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pt-BR.js @@ -0,0 +1,15 @@ +/** + * Select2 Brazilian Portuguese translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenhum resultado encontrado"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite mais " + n + " caracter" + (n == 1? "" : "es"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, + formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, + formatSearching: function () { return "Buscando…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js b/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js new file mode 100644 index 0000000000000000000000000000000000000000..cced7cf3ec1c55b87be0f69c7a338ba82b66a113 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_pt-PT.js @@ -0,0 +1,15 @@ +/** + * Select2 Portuguese (Portugal) translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenhum resultado encontrado"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, + formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, + formatSearching: function () { return "A pesquisar…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ro.js b/apps/files_external/3rdparty/select2/select2_locale_ro.js new file mode 100644 index 0000000000000000000000000000000000000000..87eca4cf7405a86fcbe8d74cd3717cf7eb06a7fa --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ro.js @@ -0,0 +1,15 @@ +/** + * Select2 Romanian translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nu a fost găsit nimic"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, + formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, + formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, + formatSearching: function () { return "Căutare…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_rs.js b/apps/files_external/3rdparty/select2/select2_locale_rs.js new file mode 100644 index 0000000000000000000000000000000000000000..300c01bc5e517fa474b06b83c503aac69c0202c7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_rs.js @@ -0,0 +1,17 @@ +/** + * Select2 Serbian translation. + * + * @author Limon Monte + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Ništa nije pronađeno"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Ukucajte bar još " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Obrišite " + n + " simbol" + (n % 10 == 1 && n % 100 != 11 ? "" : "a"); }, + formatSelectionTooBig: function (limit) { return "Možete izabrati samo " + limit + " stavk" + (limit % 10 == 1 && limit % 100 != 11 ? "u" : (limit % 10 >= 2 && limit % 10 <= 4 && (limit % 100 < 12 || limit % 100 > 14)? "e" : "i")); }, + formatLoadMore: function (pageNumber) { return "Preuzimanje još rezultata…"; }, + formatSearching: function () { return "Pretraga…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_ru.js b/apps/files_external/3rdparty/select2/select2_locale_ru.js new file mode 100644 index 0000000000000000000000000000000000000000..0f45ce0dddf5555351ee21bb6acd827fded1426f --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ru.js @@ -0,0 +1,21 @@ +/** + * Select2 Russian translation. + * + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Совпадений не найдено"; }, + formatInputTooShort: function (input, min) { return "Пожалуйста, введите еще" + character(min - input.length); }, + formatInputTooLong: function (input, max) { return "Пожалуйста, введите на" + character(input.length - max) + " меньше"; }, + formatSelectionTooBig: function (limit) { return "Вы можете выбрать не более " + limit + " элемент" + (limit%10 == 1 && limit%100 != 11 ? "а" : "ов"); }, + formatLoadMore: function (pageNumber) { return "Загрузка данных…"; }, + formatSearching: function () { return "Поиск…"; } + }); + + function character (n) { + return " " + n + " символ" + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 20) ? n%10 > 1 ? "a" : "" : "ов"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_sk.js b/apps/files_external/3rdparty/select2/select2_locale_sk.js new file mode 100644 index 0000000000000000000000000000000000000000..772f304aca999ab8b5d7ca1456a5a57bec5368f5 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_sk.js @@ -0,0 +1,48 @@ +/** + * Select2 Slovak translation. + * + * Author: David Vallner + */ +(function ($) { + "use strict"; + // use text for the numbers 2 through 4 + var smallNumbers = { + 2: function(masc) { return (masc ? "dva" : "dve"); }, + 3: function() { return "tri"; }, + 4: function() { return "štyri"; } + } + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nenašli sa žiadne položky"; }, + formatInputTooShort: function (input, min) { + var n = min - input.length; + if (n == 1) { + return "Prosím zadajte ešte jeden znak"; + } else if (n <= 4) { + return "Prosím zadajte ešte ďalšie "+smallNumbers[n](true)+" znaky"; + } else { + return "Prosím zadajte ešte ďalších "+n+" znakov"; + } + }, + formatInputTooLong: function (input, max) { + var n = input.length - max; + if (n == 1) { + return "Prosím zadajte o jeden znak menej"; + } else if (n <= 4) { + return "Prosím zadajte o "+smallNumbers[n](true)+" znaky menej"; + } else { + return "Prosím zadajte o "+n+" znakov menej"; + } + }, + formatSelectionTooBig: function (limit) { + if (limit == 1) { + return "Môžete zvoliť len jednu položku"; + } else if (limit <= 4) { + return "Môžete zvoliť najviac "+smallNumbers[limit](false)+" položky"; + } else { + return "Môžete zvoliť najviac "+limit+" položiek"; + } + }, + formatLoadMore: function (pageNumber) { return "Načítavajú sa ďalšie výsledky…"; }, + formatSearching: function () { return "Vyhľadávanie…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_sv.js b/apps/files_external/3rdparty/select2/select2_locale_sv.js new file mode 100644 index 0000000000000000000000000000000000000000..d611189a593d4e1a77c36765da67d9c4c20a6dd6 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_sv.js @@ -0,0 +1,17 @@ +/** + * Select2 Swedish translation. + * + * Author: Jens Rantil + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Inga träffar"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Var god skriv in " + n + (n>1 ? " till tecken" : " tecken till"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Var god sudda ut " + n + " tecken"; }, + formatSelectionTooBig: function (limit) { return "Du kan max välja " + limit + " element"; }, + formatLoadMore: function (pageNumber) { return "Laddar fler resultat…"; }, + formatSearching: function () { return "Söker…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_th.js b/apps/files_external/3rdparty/select2/select2_locale_th.js new file mode 100644 index 0000000000000000000000000000000000000000..df59bdac36de196973cef4d3045aa013daf45d20 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_th.js @@ -0,0 +1,17 @@ +/** + * Select2 Thai translation. + * + * Author: Atsawin Chaowanakritsanakul + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "ไม่พบข้อมูล"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "โปรดพิมพ์เพิ่มอีก " + n + " ตัวอักษร"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "โปรดลบออก " + n + " ตัวอักษร"; }, + formatSelectionTooBig: function (limit) { return "คุณสามารถเลือกได้ไม่เกิน " + limit + " รายการ"; }, + formatLoadMore: function (pageNumber) { return "กำลังค้นข้อมูลเพิ่ม…"; }, + formatSearching: function () { return "กำลังค้นข้อมูล…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_tr.js b/apps/files_external/3rdparty/select2/select2_locale_tr.js new file mode 100644 index 0000000000000000000000000000000000000000..f834dad2b892081577424b85a54f2e1e0c3501cb --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_tr.js @@ -0,0 +1,17 @@ +/** + * Select2 Turkish translation. + * + * Author: Salim KAYABAŞI + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Sonuç bulunamadı"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "En az " + n + " karakter daha girmelisiniz"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return n + " karakter azaltmalısınız"; }, + formatSelectionTooBig: function (limit) { return "Sadece " + limit + " seçim yapabilirsiniz"; }, + formatLoadMore: function (pageNumber) { return "Daha fazla…"; }, + formatSearching: function () { return "Aranıyor…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_uk.js b/apps/files_external/3rdparty/select2/select2_locale_uk.js new file mode 100644 index 0000000000000000000000000000000000000000..8d31a056080bae63097722869825ccf2cd664f32 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_uk.js @@ -0,0 +1,23 @@ +/** + * Select2 Ukrainian translation. + * + * @author bigmihail + * @author Uriy Efremochkin + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return character(matches, "результат") + " знайдено, використовуйте клавіші зі стрілками вверх та вниз для навігації."; }, + formatNoMatches: function () { return "Нічого не знайдено"; }, + formatInputTooShort: function (input, min) { return "Введіть буль ласка ще " + character(min - input.length, "символ"); }, + formatInputTooLong: function (input, max) { return "Введіть буль ласка на " + character(input.length - max, "символ") + " менше"; }, + formatSelectionTooBig: function (limit) { return "Ви можете вибрати лише " + character(limit, "елемент"); }, + formatLoadMore: function (pageNumber) { return "Завантаження даних…"; }, + formatSearching: function () { return "Пошук…"; } + }); + + function character (n, word) { + return n + " " + word + (n%10 < 5 && n%10 > 0 && (n%100 < 5 || n%100 > 19) ? n%10 > 1 ? "и" : "" : "ів"); + } +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_vi.js b/apps/files_external/3rdparty/select2/select2_locale_vi.js new file mode 100644 index 0000000000000000000000000000000000000000..5dbc275361fae4582385d159f0c52df9b01104d7 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_vi.js @@ -0,0 +1,18 @@ +/** + * Select2 Vietnamese translation. + * + * Author: Long Nguyen + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Không tìm thấy kết quả"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự" + (n == 1 ? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự" + (n == 1? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " tùy chọn" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; }, + formatSearching: function () { return "Đang tìm…"; } + }); +})(jQuery); + diff --git a/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js b/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js new file mode 100644 index 0000000000000000000000000000000000000000..6add3c525182b317521ff2d057cd4c07c577418b --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_zh-CN.js @@ -0,0 +1,14 @@ +/** + * Select2 Chinese translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "没有找到匹配项"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";}, + formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";}, + formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; }, + formatLoadMore: function (pageNumber) { return "加载结果中…"; }, + formatSearching: function () { return "搜索中…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js b/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js new file mode 100755 index 0000000000000000000000000000000000000000..f072381faaead8b727e371ea50796eeee30b208c --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_zh-TW.js @@ -0,0 +1,14 @@ +/** + * Select2 Traditional Chinese translation + */ +(function ($) { + "use strict"; + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "沒有找到相符的項目"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";}, + formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";}, + formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; }, + formatLoadMore: function (pageNumber) { return "載入中…"; }, + formatSearching: function () { return "搜尋中…"; } + }); +})(jQuery); diff --git a/apps/files_external/3rdparty/select2/select2x2.png b/apps/files_external/3rdparty/select2/select2x2.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdd5c961d452c49dfa0789c2c7ffb82c238fc24 Binary files /dev/null and b/apps/files_external/3rdparty/select2/select2x2.png differ diff --git a/apps/files_external/ajax/applicable.php b/apps/files_external/ajax/applicable.php new file mode 100644 index 0000000000000000000000000000000000000000..1f0147758e770cfb092328dbc8f0b39057ce2d28 --- /dev/null +++ b/apps/files_external/ajax/applicable.php @@ -0,0 +1,26 @@ + $groups, 'users' => $users); + +\OCP\JSON::success($results); diff --git a/apps/files_external/ajax/dropbox.php b/apps/files_external/ajax/dropbox.php index bbedf8e9cac8a634e8528831dcc9b46dc46fba92..db417de4b2d06cfc7671c449a97765c52206a08b 100644 --- a/apps/files_external/ajax/dropbox.php +++ b/apps/files_external/ajax/dropbox.php @@ -5,7 +5,7 @@ require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php'; OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); if (isset($_POST['app_key']) && isset($_POST['app_secret'])) { $oauth = new Dropbox_OAuth_Curl($_POST['app_key'], $_POST['app_secret']); diff --git a/apps/files_external/ajax/google.php b/apps/files_external/ajax/google.php index 13e740718460d53df34cab4323980eb930451449..40c10aa5d071905207e27d4e3dbfbb87c83f4cb5 100644 --- a/apps/files_external/ajax/google.php +++ b/apps/files_external/ajax/google.php @@ -6,7 +6,7 @@ require_once 'Google_Client.php'; OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); if (isset($_POST['client_id']) && isset($_POST['client_secret']) && isset($_POST['redirect'])) { $client = new Google_Client(); diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 3b8793a075b8dd926cbcb4c582538dadbf460c49..50a73bd5f9a2b806949ad8ab4ff4fe0087453c54 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -6,7 +6,7 @@ * later. * See the COPYING-README file. */ -$l = \OC_L10N::get('files_external'); +$l = \OC::$server->getL10N('files_external'); OC::$CLASSPATH['OC\Files\Storage\StreamWrapper'] = 'files_external/lib/streamwrapper.php'; OC::$CLASSPATH['OC\Files\Storage\FTP'] = 'files_external/lib/ftp.php'; @@ -62,9 +62,9 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\AmazonS3', array( 'key' => (string)$l->t('Access Key'), 'secret' => '*'.$l->t('Secret Key'), 'bucket' => (string)$l->t('Bucket'), - 'hostname' => '&'.$l->t('Hostname (optional)'), - 'port' => '&'.$l->t('Port (optional)'), - 'region' => '&'.$l->t('Region (optional)'), + 'hostname' => '&'.$l->t('Hostname'), + 'port' => '&'.$l->t('Port'), + 'region' => '&'.$l->t('Region'), 'use_ssl' => '!'.$l->t('Enable SSL'), 'use_path_style' => '!'.$l->t('Enable Path Style')), 'has_dependencies' => true)); @@ -108,15 +108,15 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\Swift', array( 'backend' => (string)$l->t('OpenStack Object Storage'), 'priority' => 100, 'configuration' => array( - 'user' => (string)$l->t('Username (required)'), - 'bucket' => (string)$l->t('Bucket (required)'), + 'user' => (string)$l->t('Username'), + 'bucket' => (string)$l->t('Bucket'), 'region' => '&'.$l->t('Region (optional for OpenStack Object Storage)'), 'key' => '*'.$l->t('API Key (required for Rackspace Cloud Files)'), 'tenant' => '&'.$l->t('Tenantname (required for OpenStack Object Storage)'), 'password' => '*'.$l->t('Password (required for OpenStack Object Storage)'), 'service_name' => '&'.$l->t('Service Name (required for OpenStack Object Storage)'), 'url' => '&'.$l->t('URL of identity endpoint (required for OpenStack Object Storage)'), - 'timeout' => '&'.$l->t('Timeout of HTTP requests in seconds (optional)'), + 'timeout' => '&'.$l->t('Timeout of HTTP requests in seconds'), ), 'has_dependencies' => true)); diff --git a/apps/files_external/appinfo/routes.php b/apps/files_external/appinfo/routes.php index 0a1e261a1896fc4230041231c8022db30b381740..b852b34c5d32574819bc0b93df930d36c90c6580 100644 --- a/apps/files_external/appinfo/routes.php +++ b/apps/files_external/appinfo/routes.php @@ -37,6 +37,9 @@ $this->create('files_external_dropbox', 'ajax/dropbox.php') $this->create('files_external_google', 'ajax/google.php') ->actionInclude('files_external/ajax/google.php'); +$this->create('files_external_list_applicable', '/applicable') + ->actionInclude('files_external/ajax/applicable.php'); + OC_API::register('get', '/apps/files_external/api/v1/mounts', array('\OCA\Files\External\Api', 'getUserMounts'), diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 0da769d992b9423df2c885580a639787bffc6e64..101c224c5f59909dcfba78f93f6796e58ee36d4d 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -20,6 +20,9 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #externalStorage td.backend { white-space: normal; } +#externalStorage td.configuration > * { + white-space: nowrap; +} #externalStorage td.configuration input.added { margin-right: 6px; @@ -42,3 +45,19 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #userMountingBackends { padding-left: 25px; } + +#body-settings .select2-results .select2-result-label { + height: 32px; + padding: 3px; +} +.select2-results .select2-result-label .avatardiv { + display:inline-block; +} +.select2-results .select2-result-label .avatardiv + span { + margin-left: 10px; +} +.select2-results .select2-result-label .avatardiv[data-type="group"] + span { + vertical-align: top; + top: 6px; + position: relative; +} diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 8a1bb2bec6f90896b546341098a11ccbe09b141a..00d2a920cbf8077e8820fc36012ef3382fc3ff18 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -2,7 +2,7 @@ function updateStatus(statusEl, result){ statusEl.removeClass('success error loading-small'); - if (result && result.status == 'success' && result.data.message) { + if (result && result.status === 'success' && result.data.message) { statusEl.addClass('success'); return true; } else { @@ -11,11 +11,31 @@ function updateStatus(statusEl, result){ } } +function getSelection($row) { + var values = $row.find('.applicableUsers').select2('val'); + if (!values || values.length === 0) { + values = ['all']; + } + return values; +} + +function highlightBorder(element, highlight) { + $(element).toggleClass('warning-input', highlight); + return highlight; +} + +function highlightInput(input) { + if ($(input).attr('type') === 'text' || $(input).attr('type') === 'password') { + return highlightBorder(input, + ($(input).val() === '' && !$(input).hasClass('optional'))); + } +} + OC.MountConfig={ saveStorage:function(tr, callback) { var mountPoint = $(tr).find('.mountPoint input').val(); var oldMountPoint = $(tr).find('.mountPoint input').data('mountpoint'); - if (mountPoint == '') { + if (mountPoint === '') { return false; } var statusSpan = $(tr).closest('tr').find('.status span'); @@ -27,7 +47,7 @@ OC.MountConfig={ } var classOptions = {}; $.each(configuration, function(index, input) { - if ($(input).val() == '' && !$(input).hasClass('optional')) { + if ($(input).val() === '' && !$(input).hasClass('optional')) { addMountPoint = false; return false; } @@ -42,10 +62,7 @@ OC.MountConfig={ } }); if ($('#externalStorage').data('admin') === true) { - var multiselect = $(tr).find('.chzn-select').val(); - if (multiselect == null) { - return false; - } + var multiselect = getSelection($(tr)); } if (addMountPoint) { var status = false; @@ -166,16 +183,137 @@ OC.MountConfig={ }; $(document).ready(function() { - $('.chzn-select').chosen(); + //initialize hidden input field with list of users and groups + $('#externalStorage').find('tr:not(#addMountPoint)').each(function(i,tr) { + var applicable = $(tr).find('.applicable'); + if (applicable.length > 0) { + var groups = applicable.data('applicable-groups'); + var groupsId = []; + $.each(groups, function () { + groupsId.push(this+"(group)"); + }); + var users = applicable.data('applicable-users'); + if (users.indexOf('all') > -1) { + $(tr).find('.applicableUsers').val(''); + } else { + $(tr).find('.applicableUsers').val(groupsId.concat(users).join(',')); + } + } + }); + + var userListLimit = 30; + function addSelect2 ($elements) { + if ($elements.length > 0) { + $elements.select2({ + placeholder: t('files_external', 'All users. Type to select user or group.'), + allowClear: true, + multiple: true, + //minimumInputLength: 1, + ajax: { + url: OC.generateUrl('apps/files_external/applicable'), + dataType: 'json', + quietMillis: 100, + data: function (term, page) { // page is the one-based page number tracked by Select2 + return { + pattern: term, //search term + limit: userListLimit, // page size + offset: userListLimit*(page-1) // page number starts with 0 + }; + }, + results: function (data, page) { + if (data.status === "success") { + + var results = []; + var userCount = 0; // users is an object + + // add groups + $.each(data.groups, function(i, group) { + results.push({name:group+'(group)', displayname:group, type:'group' }); + }); + // add users + $.each(data.users, function(id, user) { + userCount++; + results.push({name:id, displayname:user, type:'user' }); + }); + + var more = (userCount >= userListLimit) || (data.groups.length >= userListLimit); + return {results: results, more: more}; + } else { + //FIXME add error handling + } + } + }, + initSelection: function(element, callback) { + var users = {}; + users['users'] = []; + var toSplit = element.val().split(","); + for (var i = 0; i < toSplit.length; i++) { + users['users'].push(toSplit[i]); + } + + $.ajax(OC.generateUrl('displaynames'), { + type: 'POST', + contentType: 'application/json', + data: JSON.stringify(users), + dataType: "json" + }).done(function(data) { + var results = []; + if (data.status === "success") { + $.each(data.users, function(user, displayname) { + if (displayname !== false) { + results.push({name:user, displayname:displayname, type:'user'}); + } + }); + callback(results); + } else { + //FIXME add error handling + } + }); + }, + id: function(element) { + return element.name; + }, + formatResult: function (element) { + var $result = $('
    '+escapeHTML(element.displayname)+''); + var $div = $result.find('.avatardiv') + .attr('data-type', element.type) + .attr('data-name', element.name) + .attr('data-displayname', element.displayname); + if (element.type === 'group') { + var url = OC.imagePath('core','places/contacts-dark'); // TODO better group icon + $div.html(''); + } + return $result.get(0).outerHTML; + }, + formatSelection: function (element) { + if (element.type === 'group') { + return ''+escapeHTML(element.displayname+' '+t('files_external', '(group)'))+''; + } else { + return ''+escapeHTML(element.displayname)+''; + } + }, + escapeMarkup: function (m) { return m; } // we escape the markup in formatResult and formatSelection + }).on("select2-loaded", function() { + $.each($(".avatardiv"), function(i, div) { + $div = $(div); + if ($div.data('type') === 'user') { + $div.avatar($div.data('name'),32); + } + }) + }); + } + } + addSelect2($('tr:not(#addMountPoint) .applicableUsers')); + $('#externalStorage').on('change', '#selectBackend', function() { - var tr = $(this).parent().parent(); + var tr = $(this).closest("tr"); $('#externalStorage tbody').append($(tr).clone()); $('#externalStorage tbody tr').last().find('.mountPoint input').val(''); var selected = $(this).find('option:selected').text(); var backendClass = $(this).val(); - $(this).parent().text(selected); - if ($(tr).find('.mountPoint input').val() == '') { + $(tr).find('.backend').text(selected); + if ($(tr).find('.mountPoint input').val() === '') { $(tr).find('.mountPoint input').val(suggestMountPoint(selected)); } $(tr).addClass(backendClass); @@ -184,40 +322,40 @@ $(document).ready(function() { var configurations = $(this).data('configurations'); var td = $(tr).find('td.configuration'); $.each(configurations, function(backend, parameters) { - if (backend == backendClass) { + if (backend === backendClass) { $.each(parameters['configuration'], function(parameter, placeholder) { var is_optional = false; if (placeholder.indexOf('&') === 0) { is_optional = true; placeholder = placeholder.substring(1); } + var newElement; if (placeholder.indexOf('*') === 0) { var class_string = is_optional ? ' optional' : ''; - td.append(''); + newElement = $(''); } else if (placeholder.indexOf('!') === 0) { - td.append(''); + newElement = $(''); } else if (placeholder.indexOf('#') === 0) { - td.append(''); + newElement = $(''); } else { var class_string = is_optional ? ' optional' : ''; - td.append(''); + newElement = $(''); } + highlightInput(newElement); + td.append(newElement); }); - if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length == 1) { + if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length === 1) { OC.addScript('files_external', parameters['custom']); } + td.children().not('[type=hidden]').first().focus(); return false; } }); - // Reset chosen - var chosen = $(tr).find('.applicable select'); - chosen.parent().find('div').remove(); - chosen.removeAttr('id').removeClass('chzn-done').css({display:'inline-block'}); - chosen.chosen(); $(tr).find('td').last().attr('class', 'remove'); $(tr).find('td').last().removeAttr('style'); $(tr).removeAttr('id'); $(this).remove(); + addSelect2($('tr:not(#addMountPoint) .applicableUsers')); }); function suggestMountPoint(defaultMountPoint) { @@ -232,7 +370,7 @@ $(document).ready(function() { while (match && i < 20) { match = false; $('#externalStorage tbody td.mountPoint input').each(function(index, mountPoint) { - if ($(mountPoint).val() == defaultMountPoint+append) { + if ($(mountPoint).val() === defaultMountPoint+append) { match = true; return false; } @@ -247,9 +385,11 @@ $(document).ready(function() { return defaultMountPoint+append; } - $('#externalStorage').on('paste', 'td', function() { - var tr = $(this).parent(); + $('#externalStorage').on('paste', 'td input', function() { + var tr = $(this).closest("tr"); + var me = this; setTimeout(function() { + highlightInput($(me)); OC.MountConfig.saveStorage(tr); }, 20); }); @@ -258,7 +398,8 @@ $(document).ready(function() { $('#externalStorage').on('keyup', 'td input', function() { clearTimeout(timer); - var tr = $(this).parent().parent(); + var tr = $(this).closest("tr"); + highlightInput($(this)); if ($(this).val) { timer = setTimeout(function() { OC.MountConfig.saveStorage(tr); @@ -267,41 +408,42 @@ $(document).ready(function() { }); $('#externalStorage').on('change', 'td input:checkbox', function() { - OC.MountConfig.saveStorage($(this).parent().parent().parent()); + OC.MountConfig.saveStorage($(this).closest("tr")); + }); + + $('#externalStorage').on('change', '.applicable', function() { + OC.MountConfig.saveStorage($(this).closest("tr")); }); - $('#externalStorage').on('change', '.applicable .chzn-select', function() { - OC.MountConfig.saveStorage($(this).parent().parent()); + $('#externalStorage').on('click', '.status>span', function() { + OC.MountConfig.saveStorage($(this).closest("tr")); }); $('#sslCertificate').on('click', 'td.remove>img', function() { - var $tr = $(this).parent().parent(); - var row = this.parentNode.parentNode; - $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id}); + var $tr = $(this).closest("tr"); + $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: $tr.attr('id')}); $tr.remove(); return true; }); $('#externalStorage').on('click', 'td.remove>img', function() { - var tr = $(this).parent().parent(); + var tr = $(this).closest('tr'); var mountPoint = $(tr).find('.mountPoint input').val(); if ($('#externalStorage').data('admin') === true) { var isPersonal = false; - var multiselect = $(tr).find('.chzn-select').val(); - if (multiselect != null) { - $.each(multiselect, function(index, value) { - var pos = value.indexOf('(group)'); - if (pos != -1) { - var mountType = 'group'; - var applicable = value.substr(0, pos); - } else { - var mountType = 'user'; - var applicable = value; - } - $.post(OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), { mountPoint: mountPoint, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); - }); - } + var multiselect = getSelection($(tr)); + $.each(multiselect, function(index, value) { + var pos = value.indexOf('(group)'); + if (pos != -1) { + var mountType = 'group'; + var applicable = value.substr(0, pos); + } else { + var mountType = 'user'; + var applicable = value; + } + $.post(OC.filePath('files_external', 'ajax', 'removeMountPoint.php'), { mountPoint: mountPoint, mountType: mountType, applicable: applicable, isPersonal: isPersonal }); + }); } else { var mountType = 'user'; var applicable = OC.currentUser; diff --git a/apps/files_external/l10n/af_ZA.php b/apps/files_external/l10n/af_ZA.php index fc60a7f25a411d3b651d2ddeefc95a89ebe37744..7b416fc117a99196f7b0b5412e2b9d2525475d7b 100644 --- a/apps/files_external/l10n/af_ZA.php +++ b/apps/files_external/l10n/af_ZA.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "Gebruikersnaam", "Password" => "Wagwoord", "Share" => "Deel", -"Personal" => "Persoonlik", -"Users" => "Gebruikers" +"Personal" => "Persoonlik" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 32709aa170f8dccc5a81be55c1e1e28e56c77ab5..4e57a09212074117e3229811e348b59c897e4583 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -11,9 +11,6 @@ $TRANSLATIONS = array( "Name" => "اسم", "Folder name" => "اسم المجلد", "Configuration" => "إعداد", -"All Users" => "كل المستخدمين", -"Groups" => "مجموعات", -"Users" => "المستخدمين", "Delete" => "إلغاء" ); $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;"; diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index 7c399a0a62f36d49a3183e69259663fdb6931de2..6351238356ec9c78fc703df4e2238187c9c6b27f 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 y compatibilidá", "Access Key" => "Clave d'accesu", "Secret Key" => "Clave Secreta", -"Hostname (optional)" => "Nome d'equipu (opcional)", -"Port (optional)" => "Puertu (opcional)", -"Region (optional)" => "Rexón (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilu de ruta", "App key" => "App principal", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID de veceru", "Client secret" => "Veceru secretu", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome d'usuariu (necesariu)", -"Bucket (required)" => "Depósitu (necesariu)", "Region (optional for OpenStack Object Storage)" => "Rexón (opcional pa OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave API (necesaria pa Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome d'inquilín (necesariu pa OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contraseña (necesaria pa OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome de Serviciu (necesariu pa OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL d'identidá de puntu final (necesariu pa OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tiempu d'espera de peticiones HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando accesu OC", "Username as share" => "Nome d'usuariu como Compartición", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Disponible pa", "Add storage" => "Amestar almacenamientu", -"No user or group" => "Nengún usuariu o grupu", -"All Users" => "Tolos usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Desaniciar", "Enable User External Storage" => "Habilitar almacenamientu esterno d'usuariu", "Allow users to mount the following external storage" => "Permitir a los usuarios montar el siguiente almacenamientu esternu", diff --git a/apps/files_external/l10n/az.php b/apps/files_external/l10n/az.php index 5c4e2701178ac45b80fb54b0adb697c940559c6b..330e8234a615f723690838636d63198f9e935e30 100644 --- a/apps/files_external/l10n/az.php +++ b/apps/files_external/l10n/az.php @@ -8,16 +8,16 @@ $TRANSLATIONS = array( "Location" => "Yerləşdiyiniz ünvan", "Key" => "Açar", "Secret" => "Gizli", -"Hostname (optional)" => "Avadanlığın adı(məcburi deyil)", "Enable SSL" => "SSL-i işə sal", "Host" => "Şəbəkədə ünvan", "Username" => "İstifadəçi adı", "Password" => "Şifrə", "Share" => "Yayımla", +"URL" => "URL", +"Personal" => "Şəxsi", "Saved" => "Saxlanıldı", "Name" => "Ad", "Folder name" => "Qovluq adı", -"Users" => "İstifadəçilər", "Delete" => "Sil" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 7f18f95b0fb5d53605623405c47f33a1b307f35e..88848b9b68d686f165c91b14ce7db210f2b71b8e 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 и съвместими", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Сървър (незадължително)", -"Port (optional)" => "Порт (незадължително)", -"Region (optional)" => "Регион (незадължително)", "Enable SSL" => "Включи SSL", "Enable Path Style" => "Включи Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Потребителско Име (задължително)", -"Bucket (required)" => "Bucket (задължително)", "Region (optional for OpenStack Object Storage)" => "Регион (незадължително за OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (задължително за Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (задължително за OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Парола (задължително за OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (задължително за OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (задължително за OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Максимално време за HTTP заявки в секунди (незадължително)", "Share" => "Споделяне", "SMB / CIFS using OC login" => "SMB / CIFS използвайки OC профил", "Username as share" => "Потребителско име като споделена папка", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Грешка при настройката на Dropbox дисковото пространство.", "Personal" => "Личен", "System" => "Системен", +"All users. Type to select user or group." => "Всички потребители. Пиши, за да избереш потребител или група.", +"(group)" => "(група)", "Saved" => "Запазено", "Note: " => "Бележка: ", " and " => "и", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Настройки", "Available for" => "Достъпно за", "Add storage" => "Добави дисково пространство", -"No user or group" => "Липсва потребител или група", -"All Users" => "Всички Потребители", -"Groups" => "Групи", -"Users" => "Потребители", "Delete" => "Изтрий", "Enable User External Storage" => "Разреши Потребителско Външно Дисково Пространство", "Allow users to mount the following external storage" => "Разреши на потребителите да прикачват следното външно дисково пространство", diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index f878eafba8312feae73e9637b48f2110a5393a30..a0ec26a0a64a2c38918e1f0a9738184a4fa51df7 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,7 +1,7 @@ "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।", -"Location" => "াবস্থান", +"Location" => "অবস্থান", "Host" => "হোস্ট", "Username" => "ব্যবহারকারী", "Password" => "কূটশব্দ", @@ -12,13 +12,11 @@ $TRANSLATIONS = array( "Grant access" => "অধিগমনের অনুমতি প্রদান কর", "Error configuring Google Drive storage" => "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", "Personal" => "ব্যক্তিগত", +"Saved" => "সংরক্ষণ করা হলো", "Name" => "রাম", "External Storage" => "বাহ্যিক সংরক্ষণাগার", "Folder name" => "ফোলডারের নাম", "Configuration" => "কনফিগারেসন", -"All Users" => "সমস্ত ব্যবহারকারী", -"Groups" => "গোষ্ঠীসমূহ", -"Users" => "ব্যবহারকারী", "Delete" => "মুছে", "Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", "SSL root certificates" => "SSL রুট সনদপত্র", diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 37d5084538d434a666e618d92b9965bbe72ab83d..26ca6d9503533144720d7a9ed9af5bd1e5448838 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 i similars", "Access Key" => "Clau d'accés", "Secret Key" => "Clau secreta", -"Hostname (optional)" => "Nom de l'equip (opcional)", -"Port (optional)" => "Port (opcional)", -"Region (optional)" => "Regió (opcional)", "Enable SSL" => "Habilita SSL", "Enable Path Style" => "Permet l'estil del camí", "App key" => "Clau de l'aplicació", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Secret del client", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nom d'usuari (necessari)", -"Bucket (required)" => "Cub (requerit)", "Region (optional for OpenStack Object Storage)" => "Regió (opcional per OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clau API (requerit per fitxers al núvol Rackspace)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (requerit per OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contrasenya (requerit per OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nom del servei (requerit per OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL del punt identificador final (requerit per OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Temps d'espera dels requeriments HTTP en segons (opcional)", "Share" => "Comparteix", "SMB / CIFS using OC login" => "SMB / CIFS usant acreditació OC", "Username as share" => "Nom d'usuari per compartir", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuració", "Available for" => "Disponible per", "Add storage" => "Afegeix emmagatzemament", -"No user or group" => "Sense usuaris o grups", -"All Users" => "Tots els usuaris", -"Groups" => "Grups", -"Users" => "Usuaris", "Delete" => "Esborra", "Enable User External Storage" => "Habilita l'emmagatzemament extern d'usuari", "Allow users to mount the following external storage" => "Permet als usuaris muntar els dispositius externs següents", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 4eb029d8a54350a50dba160c0d0e232e62a6dd35..6b65a421c76ce30bfed90cc1e1a0ea5d890a6522 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -11,13 +11,12 @@ $TRANSLATIONS = array( "Amazon S3" => "Amazon S3", "Key" => "Klíč", "Secret" => "Tajemství", +"Bucket" => "Bucket", "Amazon S3 and compliant" => "Amazon S3 a kompatibilní", "Access Key" => "Přístupový klíč", "Secret Key" => "Tajný klíč", -"Hostname (optional)" => "Hostname (nepovinný)", -"Port (optional)" => "Port (nepovinný)", -"Region (optional)" => "Region (nepovinný)", "Enable SSL" => "Povolit SSL", +"Enable Path Style" => "Povolit Path Style", "App key" => "Klíč aplikace", "App secret" => "Tajemství aplikace", "Host" => "Počítač", @@ -28,14 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Klientské ID", "Client secret" => "Klientské tajemství", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Uživatelské jméno (povinné)", "Region (optional for OpenStack Object Storage)" => "Region (nepovinný pro OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API klíč (vyžadován pro Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Jméno nájemce (vyžadováno pro OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Heslo (vyžadováno pro OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Název služby (vyžadováno pro OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL identity koncového bodu (vyžadováno pro OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Časový limit HTTP požadavků v sekundách (nepovinné)", "Share" => "Sdílet", "SMB / CIFS using OC login" => "SMB / CIFS za použití přihlašovacího jména OC", "Username as share" => "Uživatelské jméno jako sdílený adresář", @@ -48,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Personal" => "Osobní", "System" => "Systém", +"All users. Type to select user or group." => "Všichni uživatelé. Začněte psát pro výběr uživatelů a skupin.", +"(group)" => "(skupina)", "Saved" => "Uloženo", "Note: " => "Poznámka:", " and " => "a", @@ -63,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavení", "Available for" => "Dostupné pro", "Add storage" => "Přidat úložiště", -"No user or group" => "Žádný uživatel nebo skupina", -"All Users" => "Všichni uživatelé", -"Groups" => "Skupiny", -"Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", "Allow users to mount the following external storage" => "Povolit uživatelů připojit následující externí úložiště", diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index 011dbb371a5e99d4cb6541057fd411c43efa1c25..26420c555c4e9cc542d6ff997900bba49911cf82 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Personol", "Name" => "Enw", -"Groups" => "Grwpiau", -"Users" => "Defnyddwyr", "Delete" => "Dileu" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index e54f28826c3ecff2660bce09f37d132e1bde788d..e701694105e20761497d66cd8252b38a2116e3d2 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 og kompatible", "Access Key" => "Adgangsnøgle", "Secret Key" => "Hemmelig Nøgle ", -"Hostname (optional)" => "Værtsnavn (valgfri)", -"Port (optional)" => "Port (valgfri)", -"Region (optional)" => "Region (valgfri)", "Enable SSL" => "Aktiver SSL", "Enable Path Style" => "Aktivér stil for sti", "App key" => "App-nøgle", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Klient ID", "Client secret" => "Klient hemmelighed", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Brugernavn (påkrævet)", -"Bucket (required)" => "Bucket (påkrævet)", "Region (optional for OpenStack Object Storage)" => "Region (valgfri for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-nøgle (påkrævet for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Lejers navn (påkrævet for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Adgangskode (påkrævet for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Navn (påkrævet for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL på slutpunkt for identitet (påkrævet for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout på HTTP forespørgsler i sekunder (valgfri)", "Share" => "Del", "SMB / CIFS using OC login" => "SMB / CIFS med OC-login", "Username as share" => "Brugernavn som deling", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Opsætning", "Available for" => "Tilgængelig for", "Add storage" => "Tilføj lager", -"No user or group" => "Ingen bruger eller gruppe", -"All Users" => "Alle brugere", -"Groups" => "Grupper", -"Users" => "Brugere", "Delete" => "Slet", "Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", "Allow users to mount the following external storage" => "Tillad brugere at montere følgende som eksternt lager", diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index d99cce64a2e03c243efb355d92d860691ca5c390..d0377b269a64f27957d7a0000f47250e8dbde2cf 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 und kompatible", "Access Key" => "Zugriffsschlüssel", "Secret Key" => "Sicherheitssschlüssel", -"Hostname (optional)" => "Host-Name (Optional)", -"Port (optional)" => "Port (Optional)", -"Region (optional)" => "Region (Optional)", "Enable SSL" => "SSL aktivieren", "Enable Path Style" => "Pfad-Stil aktivieren", "App key" => "App-Schlüssel", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client-ID", "Client secret" => "Geheime Zeichenkette des Client", "OpenStack Object Storage" => "Openstack-Objektspeicher", -"Username (required)" => "Benutzername (Erforderlich)", -"Bucket (required)" => "Bucket (Erforderlich)", "Region (optional for OpenStack Object Storage)" => "Region (Optional für Openstack-Objektspeicher)", "API Key (required for Rackspace Cloud Files)" => "API-Schlüssel (Erforderlich für Rackspace Cloud-Dateien)", "Tenantname (required for OpenStack Object Storage)" => "Mietername (Erforderlich für Openstack-Objektspeicher)", "Password (required for OpenStack Object Storage)" => "Passwort (Erforderlich für Openstack-Objektspeicher)", "Service Name (required for OpenStack Object Storage)" => "Name der Dienstleistung (Erforderlich für Openstack-Objektspeicher)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)", -"Timeout of HTTP requests in seconds (optional)" => "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)", "Share" => "Teilen", "SMB / CIFS using OC login" => "SMB / CIFS mit OC-Login", "Username as share" => "Benutzername als Freigabe", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", -"No user or group" => "Kein Nutzer oder Gruppe", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "Allow users to mount the following external storage" => "Erlaube es Benutzern, den folgenden externen Speicher einzubinden", diff --git a/apps/files_external/l10n/de_CH.php b/apps/files_external/l10n/de_CH.php index 1fa6b28bced20e138ea609842b8752c7fc0e8837..5d11539cba7efa58fad66ef39dce14f562812a57 100644 --- a/apps/files_external/l10n/de_CH.php +++ b/apps/files_external/l10n/de_CH.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "Ordnername", "Configuration" => "Konfiguration", "Add storage" => "Speicher hinzufügen", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "SSL root certificates" => "SSL-Root-Zertifikate", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index d9297243f1fe8685e0c80b7c6ec876effca28423..1a47495c1550a6b72263521d25a4eb1073298a5e 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 und Kompatible", "Access Key" => "Zugriffsschlüssel", "Secret Key" => "Sicherheitsschlüssel", -"Hostname (optional)" => "Host-Name (Optional)", -"Port (optional)" => "Port (Optional)", -"Region (optional)" => "Region (Optional)", "Enable SSL" => "SSL aktivieren", "Enable Path Style" => "Pfad-Stil aktivieren", "App key" => "App-Schlüssel", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client-ID", "Client secret" => "Geheime Zeichenkette des Client", "OpenStack Object Storage" => "Openstack-Objektspeicher", -"Username (required)" => "Benutzername (Erforderlich)", -"Bucket (required)" => "Bucket (Erforderlich)", "Region (optional for OpenStack Object Storage)" => "Region (Optional für Openstack-Objektspeicher)", "API Key (required for Rackspace Cloud Files)" => "API-Schlüssel (Erforderlich für Rackspace Cloud-Dateien)", "Tenantname (required for OpenStack Object Storage)" => "Mietername (Erforderlich für Openstack-Objektspeicher)", "Password (required for OpenStack Object Storage)" => "Passwort (Erforderlich für Openstack-Objektspeicher)", "Service Name (required for OpenStack Object Storage)" => "Name der Dienstleistung (Erforderlich für Openstack-Objektspeicher)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)", -"Timeout of HTTP requests in seconds (optional)" => "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)", "Share" => "Teilen", "SMB / CIFS using OC login" => "SMB / CIFS mit OC-Login", "Username as share" => "Benutzername als Freigabe", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Verfügbar für", "Add storage" => "Speicher hinzufügen", -"No user or group" => "Kein Nutzer oder Gruppe", -"All Users" => "Alle Benutzer", -"Groups" => "Gruppen", -"Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", "Allow users to mount the following external storage" => "Erlauben Sie Benutzern, folgende externe Speicher einzubinden", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index fd27e6b80635b44c42f9e986b1b436b01ccfc600..852f5f6c61453d76660bcdf62327a8382178ddf6 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 και συμμορφούμενα", "Access Key" => "Κλειδί πρόσβασης", "Secret Key" => "Μυστικό κλειδί", -"Hostname (optional)" => "Όνομα μηχανήματος (προαιρετικά)", -"Port (optional)" => "Πόρτα (προαιρετικά)", -"Region (optional)" => "Περιοχή (προαιρετικά)", "Enable SSL" => "Ενεργοποίηση SSL", "Enable Path Style" => "Ενεργοποίηση μορφής διαδρομής", "App key" => "Κλειδί εφαρμογής", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID πελάτη", "Client secret" => "Μυστικό πελάτη", "OpenStack Object Storage" => "Αποθήκη αντικειμένων OpenStack", -"Username (required)" => "Όνομα χρήστη (απαιτείται)", -"Bucket (required)" => "Κάδος (απαιτείται)", "Region (optional for OpenStack Object Storage)" => "Περιοχή (προαιρετικά για την αποθήκευση αντικειμένων OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Κλειδί API (απαιτείται για αρχεία Rackspace Cloud)", "Tenantname (required for OpenStack Object Storage)" => "Όνομα ενοίκου (απαιτείται για την Αποθήκευση Αντικειμένων OpenStack)", "Password (required for OpenStack Object Storage)" => "Μυστικός κωδικός (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Όνομα υπηρεσίας (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Διεύθυνση URL της ταυτότητας τελικού σημείου (απαιτείται για την αποθήκευση αντικειμένων OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Χρονικό όριο των αιτήσεων HTTP σε δευτερόλεπτα (προαιρετικά)", "Share" => "Διαμοιράστε", "SMB / CIFS using OC login" => "SMB / CIFS χρησιμοποιώντας λογαριασμό OC", "Username as share" => "Όνομα χρήστη ως διαμοιραζόμενος φάκελος", @@ -51,6 +45,7 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive ", "Personal" => "Προσωπικά", "System" => "Σύστημα", +"(group)" => "(ομάδα)", "Saved" => "Αποθηκεύτηκαν", "Note: " => "Σημείωση: ", " and " => "και", @@ -66,10 +61,6 @@ $TRANSLATIONS = array( "Configuration" => "Ρυθμίσεις", "Available for" => "Διαθέσιμο για", "Add storage" => "Προσθηκη αποθηκευσης", -"No user or group" => "Μη διαθέσιμος χρήστης ή ομάδα", -"All Users" => "Όλοι οι Χρήστες", -"Groups" => "Ομάδες", -"Users" => "Χρήστες", "Delete" => "Διαγραφή", "Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", "Allow users to mount the following external storage" => "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης", diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 8d284878674e973f6cc694a034a5136ee7ae0b4e..ac3ef63b47a69e0b4cc364163b3f28091b598a91 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 and compliant", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Hostname (optional)", -"Port (optional)" => "Port (optional)", -"Region (optional)" => "Region (optional)", "Enable SSL" => "Enable SSL", "Enable Path Style" => "Enable Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Username (required)", -"Bucket (required)" => "Bucket (required)", "Region (optional for OpenStack Object Storage)" => "Region (optional for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (required for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (required for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Password (required for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (required for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (required for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout of HTTP requests in seconds (optional)", "Share" => "Share", "SMB / CIFS using OC login" => "SMB / CIFS using OC login", "Username as share" => "Username as share", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Error configuring Google Drive storage", "Personal" => "Personal", "System" => "System", +"All users. Type to select user or group." => "All users. Type to select user or group.", +"(group)" => "(group)", "Saved" => "Saved", "Note: " => "Note: ", " and " => " and ", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuration", "Available for" => "Available for", "Add storage" => "Add storage", -"No user or group" => "No user or group", -"All Users" => "All Users", -"Groups" => "Groups", -"Users" => "Users", "Delete" => "Delete", "Enable User External Storage" => "Enable User External Storage", "Allow users to mount the following external storage" => "Allow users to mount the following external storage", diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index 065379f0c055e602df83bfc2ac78ccf9ecc77d12..4edc0b4d1fd5fc051489e677a683ac1761add0f4 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -9,9 +9,6 @@ $TRANSLATIONS = array( "Secret" => "Sekreto", "Access Key" => "Aliroklavo", "Secret Key" => "Sekretoklavo", -"Hostname (optional)" => "Gastigonomo (malnepra)", -"Port (optional)" => "Pordo (malnepra)", -"Region (optional)" => "Regiono (malnepra)", "Enable SSL" => "Kapabligi SSL-on", "App key" => "Aplikaĵoklavo", "App secret" => "Aplikaĵosekreto", @@ -23,7 +20,6 @@ $TRANSLATIONS = array( "Client ID" => "Klientidentigilo", "Client secret" => "Klientosekreto", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Uzantonomo (nepra)", "Region (optional for OpenStack Object Storage)" => "Regiono (malnepra por OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-klavo (nepra por Rackspace Cloud Files)", "Password (required for OpenStack Object Storage)" => "Pasvorto (nepra por OpenStack Object Storage)", @@ -46,10 +42,6 @@ $TRANSLATIONS = array( "Configuration" => "Agordo", "Available for" => "Disponebla por", "Add storage" => "Aldoni memorilon", -"No user or group" => "Neniu uzanto aŭ grupo", -"All Users" => "Ĉiuj uzantoj", -"Groups" => "Grupoj", -"Users" => "Uzantoj", "Delete" => "Forigi", "Enable User External Storage" => "Kapabligi malenan memorilon de uzanto", "Allow users to mount the following external storage" => "Permesi uzantojn munti la jenajn malenajn memorilojn", diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 211fe79c62f398a79e899290a4d04d9d7168ef36..978635e52476c96ac95fc8a5b97bfde74baa89df 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 y compatibilidad", "Access Key" => "Clave de Acceso", "Secret Key" => "Clave Secreta", -"Hostname (optional)" => "Nombre de Equipo (opcional)", -"Port (optional)" => "Puerto (opcional)", -"Region (optional)" => "Región (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilo de Ruta", "App key" => "App principal", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID de Cliente", "Client secret" => "Cliente secreto", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nombre de Usuario (requerido)", -"Bucket (required)" => "Depósito (requerido)", "Region (optional for OpenStack Object Storage)" => "Región (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave API (requerida para Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nombre de Inquilino (requerido para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contraseña (requerida para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nombre de Servicio (requerido para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL de identidad de punto final (requerido para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tiempo de espera de peticiones HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando acceso OC", "Username as share" => "Nombre de Usuario como compartir", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Personal" => "Personal", "System" => "Sistema", +"All users. Type to select user or group." => "Todos los usuarios. Teclee para seleccionar un usuario o grupo.", +"(group)" => "(grupo)", "Saved" => "Guardado", "Note: " => "Nota: ", " and " => "y", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Disponible para", "Add storage" => "Añadir almacenamiento", -"No user or group" => "Ningún usuario o grupo", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "Allow users to mount the following external storage" => "Permitir a los usuarios montar el siguiente almacenamiento externo", diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index 68fb080c863a6a4de81137580fdd495b244c0b01..1e9b61b64ace0dd7314092034827cb89d4e6deb2 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -19,9 +19,6 @@ $TRANSLATIONS = array( "Folder name" => "Nombre de la carpeta", "Configuration" => "Configuración", "Add storage" => "Añadir almacenamiento", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Borrar", "Enable User External Storage" => "Habilitar almacenamiento de usuario externo", "SSL root certificates" => "certificados SSL raíz", diff --git a/apps/files_external/l10n/es_CL.php b/apps/files_external/l10n/es_CL.php index 00e6c7c07937e90fb61011cef9c9c3ceebcc191f..cd9a32fdd10e492d5367a5d7a77e9b2c852a6a8d 100644 --- a/apps/files_external/l10n/es_CL.php +++ b/apps/files_external/l10n/es_CL.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Password" => "Clave", "Share" => "Compartir", "Personal" => "Personal", -"Folder name" => "Nombre del directorio", -"Users" => "Usuarios" +"Folder name" => "Nombre del directorio" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php index a837ac210dbd5ef1457b40dd3aefa0f7af1814c8..51fe29f8e8645c652dd75c17466e7c62db2fdecf 100644 --- a/apps/files_external/l10n/es_MX.php +++ b/apps/files_external/l10n/es_MX.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Nombre de la carpeta", "Configuration" => "Configuración", "Add storage" => "Añadir almacenamiento", -"All Users" => "Todos los usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "SSL root certificates" => "Certificados raíz SSL", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 7df651c7b8d55d1604721d06e6197fcf5eb4d5b2..243567e2255e4627b85fed526b6437d5f86b4f83 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 ja ühilduv", "Access Key" => "Ligipääsu võti", "Secret Key" => "Salavõti", -"Hostname (optional)" => "Hostinimi (valikuline)", -"Port (optional)" => "Post (valikuline)", -"Region (optional)" => "Regioon (valikuline)", "Enable SSL" => "SSL-i kasutamine", "Enable Path Style" => "Luba otsingtee stiilis", "App key" => "Rakenduse võti", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Kliendi ID", "Client secret" => "Kliendi salasõna", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Kasutajanimi (kohustuslik)", -"Bucket (required)" => "Korv (kohustuslik)", "Region (optional for OpenStack Object Storage)" => "Regioon (valikuline OpenStack Object Storage puhul)", "API Key (required for Rackspace Cloud Files)" => "API võti (vajalik Rackspace Cloud Files puhul)", "Tenantname (required for OpenStack Object Storage)" => "Rendinimi (tenantname , vajalik OpenStack Object Storage puhul)", "Password (required for OpenStack Object Storage)" => "Parool (vajalik OpenStack Object Storage puhul)", "Service Name (required for OpenStack Object Storage)" => "Teenuse nimi (vajalik OpenStack Object Storage puhul)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Tuvastuse URL lõpp-punkt (vajalik OpenStack Object Storage puhul)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP päringu aegumine sekundites (valikuline)", "Share" => "Jaga", "SMB / CIFS using OC login" => "SMB / CIFS kasutades OC logimist", "Username as share" => "Kasutajanimi kui jagamine", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Personal" => "Isiklik", "System" => "Süsteem", +"All users. Type to select user or group." => "Kõik kasutajad. Kirjuta, et valida kasutaja või grupp.", +"(group)" => "(grupp)", "Saved" => "Salvestatud", "Note: " => "Märkus:", " and " => "ja", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Seadistamine", "Available for" => "Saadaval", "Add storage" => "Lisa andmehoidla", -"No user or group" => "Ühtki kasutajat või gruppi", -"All Users" => "Kõik kasutajad", -"Groups" => "Grupid", -"Users" => "Kasutajad", "Delete" => "Kustuta", "Enable User External Storage" => "Luba kasutajatele väline salvestamine", "Allow users to mount the following external storage" => "Võimalda kasutajatel ühendada järgmist välist andmehoidlat", diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index d93d701297c0b43cbc72c3e65174a446178f1b07..71615a973a59610c09d9dd77179fe3c54babefdf 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -14,9 +14,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 eta baliokideak", "Access Key" => "Sarbide gakoa", "Secret Key" => "Giltza Sekretua", -"Hostname (optional)" => "Hostalari izena (hautazkoa)", -"Port (optional)" => "Portua (hautazkoa)", -"Region (optional)" => "Eskualdea (hautazkoa)", "Enable SSL" => "Gaitu SSL", "Enable Path Style" => "Gaitu Bide Estiloa", "App key" => "Aplikazio gakoa", @@ -29,14 +26,12 @@ $TRANSLATIONS = array( "Client ID" => "Bezero ID", "Client secret" => "Bezeroaren Sekretua", "OpenStack Object Storage" => "OpenStack Objektu Biltegiratzea", -"Username (required)" => "Erabiltzaile izena (beharrezkoa)", "Region (optional for OpenStack Object Storage)" => "Eskualdea (hautazkoa OpenStack Objektu Biltegiratzerako)", "API Key (required for Rackspace Cloud Files)" => "API Giltza (beharrezkoa Rackspace Cloud Filesentzako)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (beharrezkoa OpenStack Objektu Biltegiratzerko)", "Password (required for OpenStack Object Storage)" => "Pasahitza (beharrezkoa OpenStack Objektu Biltegiratzerako)", "Service Name (required for OpenStack Object Storage)" => "Zerbitzuaren Izena (beharrezkoa OpenStack Objektu Biltegiratzerako)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Nortasun amaierako puntuaren URLa (beharrezkoa OpenStack Objektu Biltegiratzerako)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP eskarien gehienezko denbora segundutan (hautazkoa)", "Share" => "Partekatu", "SMB / CIFS using OC login" => "SMB / CIFS saioa hasteko OC erabiliz", "Username as share" => "Erabiltzaile izena elkarbanaketa bezala", @@ -63,10 +58,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurazioa", "Available for" => "Hauentzat eskuragarri", "Add storage" => "Gehitu biltegiratzea", -"No user or group" => "Talde edo erabiltzailerik ez", -"All Users" => "Erabiltzaile guztiak", -"Groups" => "Taldeak", -"Users" => "Erabiltzaileak", "Delete" => "Ezabatu", "Enable User External Storage" => "Gaitu erabiltzaileentzako kanpo biltegiratzea", "Allow users to mount the following external storage" => "Baimendu erabiltzaileak hurrengo kanpo biltegiratzeak muntatzen", diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index dbe0569916e6f6d6f38e100e4c2a98ba4327d785..b3f8e134ae98518641797d94eb704e30d77463e8 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -19,9 +19,6 @@ $TRANSLATIONS = array( "Folder name" => "نام پوشه", "Configuration" => "پیکربندی", "Add storage" => "اضافه کردن حافظه", -"All Users" => "تمام کاربران", -"Groups" => "گروه ها", -"Users" => "کاربران", "Delete" => "حذف", "Enable User External Storage" => "فعال سازی حافظه خارجی کاربر", "SSL root certificates" => "گواهی های اصلی SSL ", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 01ce90241cd7da8bed85cb78d2c31b302c205aba..706f4c8ac336c2103a1623854a93e11fcd50e2ec 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -9,15 +9,11 @@ $TRANSLATIONS = array( "Amazon S3" => "Amazon S3", "Key" => "Avain", "Amazon S3 and compliant" => "Amazon S3 ja yhteensopivat", -"Hostname (optional)" => "Verkkonimi (valinnainen)", -"Port (optional)" => "Portti (valinnainen)", -"Region (optional)" => "Alue (valinnainen)", "Enable SSL" => "Käytä SSL:ää", "Host" => "Isäntä", "Username" => "Käyttäjätunnus", "Password" => "Salasana", -"Username (required)" => "Käyttäjätunnus (vaaditaan)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP-pyyntöjen aikakatkaisu sekunneissa (valinnainen)", +"Secure ftps://" => "Salattu ftps://", "Share" => "Jaa", "URL" => "Verkko-osoite", "Secure https://" => "Salattu https://", @@ -27,6 +23,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Personal" => "Henkilökohtainen", "System" => "Järjestelmä", +"All users. Type to select user or group." => "Kaikki käyttäjät. Kirjoita valitaksesi käyttäjän tai ryhmän.", +"(group)" => "(ryhmä)", "Saved" => "Tallennettu", "Note: " => "Huomio: ", " and " => "ja", @@ -41,10 +39,6 @@ $TRANSLATIONS = array( "Configuration" => "Asetukset", "Available for" => "Saatavuus", "Add storage" => "Lisää tallennustila", -"No user or group" => "Ei käyttäjää tai ryhmää", -"All Users" => "Kaikki käyttäjät", -"Groups" => "Ryhmät", -"Users" => "Käyttäjät", "Delete" => "Poista", "Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", "Allow users to mount the following external storage" => "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index be817a97ea62376b2f7f0da13ec3f2fd35c5c0c1..b55611a0fbae639fc6bb58d648221eb0d0d25cc6 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Compatible avec Amazon S3", "Access Key" => "Clé d'accès", "Secret Key" => "Clé secrète", -"Hostname (optional)" => "Nom machine (optionnel)", -"Port (optional)" => "Port (optionnel)", -"Region (optional)" => "Région (facultatif)", "Enable SSL" => "Activer SSL", "Enable Path Style" => "Activer le style de chemin", "App key" => "Clé App", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID Client", "Client secret" => "Secret client", "OpenStack Object Storage" => "Object de Stockage OpenStack", -"Username (required)" => "Nom d'utilisation (requis)", -"Bucket (required)" => "Bucket (requis)", "Region (optional for OpenStack Object Storage)" => "Region (optionnel pour Object de Stockage OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Clé API (requis pour Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nom du locataire (requis pour le stockage OpenStack)", "Password (required for OpenStack Object Storage)" => "Mot de passe (requis pour OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nom du service (requit pour le stockage OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL du point d'accès d'identité (requis pour le stockage OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Temps maximal de requête HTTP en seconde (facultatif)", "Share" => "Partager", "SMB / CIFS using OC login" => "SMB / CIFS utilise le nom d'utilisateur OC", "Username as share" => "Nom d'utilisateur du partage", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuration", "Available for" => "Disponible pour", "Add storage" => "Ajouter un support de stockage", -"No user or group" => "Aucun utilisateur ou groupe", -"All Users" => "Tous les utilisateurs", -"Groups" => "Groupes", -"Users" => "Utilisateurs", "Delete" => "Supprimer", "Enable User External Storage" => "Activer le stockage externe pour les utilisateurs", "Allow users to mount the following external storage" => "Autorise les utilisateurs à monter les stockage externes suivants", diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 006507a4ba2860a8038185425be01815ae4509a2..0ee7c4d255b065eba402d8a4480085a68d952fc0 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatíbeis", "Access Key" => "Clave de acceso", "Secret Key" => "Clave secreta", -"Hostname (optional)" => "Nome de máquina (opcional)", -"Port (optional)" => "Porto (opcional)", -"Region (optional)" => "Rexión (opcional)", "Enable SSL" => "Activar SSL", "Enable Path Style" => "Activar o estilo de ruta", "App key" => "Clave da API", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID do cliente", "Client secret" => "Secreto do cliente", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome de usuario (obrigatorio)", -"Bucket (required)" => "Bucket (obrigatorio)", "Region (optional for OpenStack Object Storage)" => "Rexión (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Clave da API (obrigatoria para Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome do inquilino (obrigatorio para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Contrasinal (obrigatorio para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome do servizo (obrigatorio para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL do punto final da identidade (obrigatorio para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo de espera de peticións HTTP en segundos (opcional)", "Share" => "Compartir", "SMB / CIFS using OC login" => "SMB / CIFS usando acceso OC", "Username as share" => "Nome de usuario como compartición", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuración", "Available for" => "Dispoñíbel para", "Add storage" => "Engadir almacenamento", -"No user or group" => "Non hai usuario ou grupo", -"All Users" => "Todos os usuarios", -"Groups" => "Grupos", -"Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Activar o almacenamento externo do usuario", "Allow users to mount the following external storage" => "Permitirlle aos usuarios montar o seguinte almacenamento externo", diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php index 100e3b2866b11b4bfcd277bb3e592859253a6457..43903915bfbb8005d2972a5ae36a0bf84f7eb41a 100644 --- a/apps/files_external/l10n/he.php +++ b/apps/files_external/l10n/he.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "External Storage" => "אחסון חיצוני", "Folder name" => "שם התיקייה", "Configuration" => "הגדרות", -"All Users" => "כל המשתמשים", -"Groups" => "קבוצות", -"Users" => "משתמשים", "Delete" => "מחיקה", "Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים", "SSL root certificates" => "שורש אישורי אבטחת SSL ", diff --git a/apps/files_external/l10n/hi.php b/apps/files_external/l10n/hi.php index e0011dc46e4e2430d091306d2a577b92b50a41c0..ca41287841efc46d2c05d5e38ff177690fb0f5b5 100644 --- a/apps/files_external/l10n/hi.php +++ b/apps/files_external/l10n/hi.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "प्रयोक्ता का नाम", "Password" => "पासवर्ड", "Share" => "साझा करें", -"Personal" => "यक्तिगत", -"Users" => "उपयोगकर्ता" +"Personal" => "यक्तिगत" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hr.php b/apps/files_external/l10n/hr.php index 1074f126795c90b6b69d582a8b5fb2c7758a566a..0e8e029f4e10c1dc2120e73fd3ae201abfd6654e 100644 --- a/apps/files_external/l10n/hr.php +++ b/apps/files_external/l10n/hr.php @@ -16,8 +16,6 @@ $TRANSLATIONS = array( "Personal" => "Osobno", "Saved" => "Snimljeno", "Name" => "Ime", -"Groups" => "Grupe", -"Users" => "Korisnici", "Delete" => "Obriši" ); $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;"; diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index 9cb8d26bd6e0325880ac25c8986573673ae5eeaa..8cbff0a1757b6a5d524d664ca28c9f9c755cdb10 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "Mappanév", "Configuration" => "Beállítások", "Add storage" => "Tároló becsatolása", -"All Users" => "Az összes felhasználó", -"Groups" => "Csoportok", -"Users" => "Felhasználók", "Delete" => "Törlés", "Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére", "SSL root certificates" => "SSL tanúsítványok", diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index 1f723cef8fbbf48ca916fa9a01463436b7de2219..65e87c81cc8c6fcd4da2588123092d83a205e8c3 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -8,8 +8,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Name" => "Nomine", "Folder name" => "Nomine de dossier", -"Groups" => "Gruppos", -"Users" => "Usatores", "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 8b89ef79fa2006671a609f578d9f534321566244..3f54f55cea19485564235a7e983f700a2af063da 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -5,15 +5,11 @@ $TRANSLATIONS = array( "Local" => "Lokal", "Location" => "lokasi", "Amazon S3" => "Amazon S3", -"Hostname (optional)" => "Hostname (tambahan)", -"Port (optional)" => "Port (tambahan)", -"Region (optional)" => "Wilayah (tambahan)", "Enable SSL" => "Aktifkan SSL", "Host" => "Host", "Username" => "Nama Pengguna", "Password" => "Sandi", "Root" => "Root", -"Username (required)" => "Nama pengguna (dibutuhkan)", "Share" => "Bagikan", "URL" => "tautan", "Access granted" => "Akses diberikan", @@ -33,10 +29,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurasi", "Available for" => "Tersedia untuk", "Add storage" => "Tambahkan penyimpanan", -"No user or group" => "Tidak ada pengguna dan grup", -"All Users" => "Semua Pengguna", -"Groups" => "Grup", -"Users" => "Pengguna", "Delete" => "Hapus", "Enable User External Storage" => "Aktifkan Penyimpanan Eksternal Pengguna", "Allow users to mount the following external storage" => "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut", diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index 67aa2121e7d2e01969bca6566cf5448bfab1c7cc..848ea06c8c8e8147ef8ee92cef7b5bd4f66687e5 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "Ytri gagnageymsla", "Folder name" => "Nafn möppu", "Configuration" => "Uppsetning", -"All Users" => "Allir notendur", -"Groups" => "Hópar", -"Users" => "Notendur", "Delete" => "Eyða", "Enable User External Storage" => "Virkja ytra gagnasvæði notenda", "SSL root certificates" => "SSL rótar skilríki", diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index d3107ec54d6ceb1c02c9e66c47e72c4787042d34..1b5d2f46116ad1840a85c527643d573f2083efcd 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e conformi", "Access Key" => "Chiave di accesso", "Secret Key" => "Chiave segreta", -"Hostname (optional)" => "Nome host (opzionale)", -"Port (optional)" => "Porta (opzionale)", -"Region (optional)" => "Regione (opzionale)", "Enable SSL" => "Abilita SSL", "Enable Path Style" => "Abilita stile percorsi", "App key" => "Chiave applicazione", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID client", "Client secret" => "Segreto del client", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Nome utente (richiesto)", -"Bucket (required)" => "Bucket (richiesto)", "Region (optional for OpenStack Object Storage)" => "Regione (facoltativa per OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Chiave API (richiesta per Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Nome tenant (richiesto per OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Password (richiesta per OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome servizio (richiesta per OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL del servizio di identità (richiesto per OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo massimo in secondi delle richieste HTTP (opzionale)", "Share" => "Condividi", "SMB / CIFS using OC login" => "SMB / CIFS utilizzando le credenziali di OC", "Username as share" => "Nome utente come condivisione", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Personal" => "Personale", "System" => "Sistema", +"All users. Type to select user or group." => "Tutti gli utenti. Digita per selezionare utente o gruppo.", +"(group)" => "(gruppo)", "Saved" => "Salvato", "Note: " => "Nota:", " and " => "e", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Configurazione", "Available for" => "Disponibile per", "Add storage" => "Aggiungi archiviazione", -"No user or group" => "Nessun utente o gruppo", -"All Users" => "Tutti gli utenti", -"Groups" => "Gruppi", -"Users" => "Utenti", "Delete" => "Elimina", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", "Allow users to mount the following external storage" => "Consenti agli utenti di montare la seguente memoria esterna", diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php index 0350dbf169e200a0a21933c09e0e4631f79eccbf..ce4b336facbe43056203a10108bee7393446c2e1 100644 --- a/apps/files_external/l10n/ja.php +++ b/apps/files_external/l10n/ja.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 と互換ストレージ", "Access Key" => "アクセスキー", "Secret Key" => "シークレットキー", -"Hostname (optional)" => "ホスト名 (オプション)", -"Port (optional)" => "ポート (オプション)", -"Region (optional)" => "リージョン (オプション)", "Enable SSL" => "SSLを有効", "Enable Path Style" => "パス形式を有効", "App key" => "アプリキー", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "クライアントID", "Client secret" => "クライアント秘密キー", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "ユーザー名 (必須)", -"Bucket (required)" => "バケット (必須)", "Region (optional for OpenStack Object Storage)" => "リージョン (OpenStack Object Storage用のオプション)", "API Key (required for Rackspace Cloud Files)" => "APIキー (Rackspace Cloud Filesに必須)", "Tenantname (required for OpenStack Object Storage)" => "テナント名 (OpenStack Object Storage用に必要)", "Password (required for OpenStack Object Storage)" => "パスワード (OpenStack Object Storage用に必要)", "Service Name (required for OpenStack Object Storage)" => "サービス名 (OpenStack Object Storage用に必要)", "URL of identity endpoint (required for OpenStack Object Storage)" => "識別用エンドポイントURL (OpenStack Object Storage用に必要)", -"Timeout of HTTP requests in seconds (optional)" => "HTTPリクエストのタイムアウト秒数 (オプション)", "Share" => "共有", "SMB / CIFS using OC login" => "ownCloudログインで SMB/CIFSを使用", "Username as share" => "共有名", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "設定", "Available for" => "以下が利用可能", "Add storage" => "ストレージを追加", -"No user or group" => "ユーザーもしくはグループがありません", -"All Users" => "すべてのユーザー", -"Groups" => "グループ", -"Users" => "ユーザー", "Delete" => "削除", "Enable User External Storage" => "ユーザーの外部ストレージを有効にする", "Allow users to mount the following external storage" => "ユーザーに以下の外部ストレージのマウントを許可する", diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index 0fa65b83505eba1d8308b588eba1b069c3cfd11e..38fcc433c6e0566709697965ca9b281af91df4ce 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "ფოლდერის სახელი", "Configuration" => "კონფიგურაცია", "Add storage" => "საცავის დამატება", -"All Users" => "ყველა მომხმარებელი", -"Groups" => "ჯგუფები", -"Users" => "მომხმარებელი", "Delete" => "წაშლა", "Enable User External Storage" => "მომხმარებლის ექსტერნალ საცავის აქტივირება", "SSL root certificates" => "SSL root სერთიფიკატები", diff --git a/apps/files_external/l10n/km.php b/apps/files_external/l10n/km.php index 3f6e0395a689c0aa570a8fb56d17119040710170..f9101ff38da25d7594582644ef49d2d13d77e5cb 100644 --- a/apps/files_external/l10n/km.php +++ b/apps/files_external/l10n/km.php @@ -17,9 +17,6 @@ $TRANSLATIONS = array( "Folder name" => "ឈ្មោះ​ថត", "Configuration" => "ការ​កំណត់​សណ្ឋាន", "Add storage" => "បន្ថែម​ឃ្លាំងផ្ទុក", -"All Users" => "អ្នក​ប្រើ​ទាំងអស់", -"Groups" => "ក្រុ", -"Users" => "អ្នកប្រើ", "Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 706f824de6e0aacb26e723faa928b4c2e2851496..e43f21a1fddc1bb7033af5bbbd93847d7cd89f69 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -20,9 +20,6 @@ $TRANSLATIONS = array( "Folder name" => "폴더 이름", "Configuration" => "설정", "Add storage" => "저장소 추가", -"All Users" => "모든 사용자", -"Groups" => "그룹", -"Users" => "사용자", "Delete" => "삭제", "Enable User External Storage" => "사용자 외부 저장소 사용", "SSL root certificates" => "SSL 루트 인증서", diff --git a/apps/files_external/l10n/ku_IQ.php b/apps/files_external/l10n/ku_IQ.php index 9c4b2a3d498c4302f40d206870e80c79d65a570b..097f8d3199c4e0329a3592548a3687f4cd337db5 100644 --- a/apps/files_external/l10n/ku_IQ.php +++ b/apps/files_external/l10n/ku_IQ.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Share" => "هاوبەشی کردن", "URL" => "ناونیشانی به‌سته‌ر", "Name" => "ناو", -"Folder name" => "ناوی بوخچه", -"Users" => "به‌كارهێنه‌ر" +"Folder name" => "ناوی بوخچه" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lb.php b/apps/files_external/l10n/lb.php index 0b78eb91a8d001f1ce953eb6eb065c929e186e33..737291269c31ed5ef66b65be11b08d8f44cf814d 100644 --- a/apps/files_external/l10n/lb.php +++ b/apps/files_external/l10n/lb.php @@ -9,8 +9,6 @@ $TRANSLATIONS = array( "Personal" => "Perséinlech", "Name" => "Numm", "Folder name" => "Dossiers Numm:", -"Groups" => "Gruppen", -"Users" => "Benotzer", "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index ff4fc0a44565809b073eb65d42fdfd3ccfba79bb..6440460da3f37df2a1b255888b8c6150666f66b3 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Katalogo pavadinimas", "Configuration" => "Konfigūracija", "Add storage" => "Pridėti saugyklą", -"All Users" => "Visi vartotojai", -"Groups" => "Grupės", -"Users" => "Vartotojai", "Delete" => "Ištrinti", "Enable User External Storage" => "Įjungti vartotojų išorines saugyklas", "SSL root certificates" => "SSL sertifikatas", diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index 5abf7aa4b7cb8c103b9f255ed86fb91f022761e8..debbe4c3e06c411b63007cefd9d80730d7e99a7f 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Mapes nosaukums", "Configuration" => "Konfigurācija", "Add storage" => "Pievienot krātuvi", -"All Users" => "Visi lietotāji", -"Groups" => "Grupas", -"Users" => "Lietotāji", "Delete" => "Dzēst", "Enable User External Storage" => "Aktivēt lietotāja ārējo krātuvi", "SSL root certificates" => "SSL saknes sertifikāti", diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index def422f40725211cf98002656267ee0574d98d7f..db340d09c4f1b1ec9d94fe3e062605eb3e809201 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "External Storage" => "Надворешно складиште", "Folder name" => "Име на папка", "Configuration" => "Конфигурација", -"All Users" => "Сите корисници", -"Groups" => "Групи", -"Users" => "Корисници", "Delete" => "Избриши", "Enable User External Storage" => "Овозможи надворешни за корисници", "SSL root certificates" => "SSL root сертификати", diff --git a/apps/files_external/l10n/ms_MY.php b/apps/files_external/l10n/ms_MY.php index 22e5f30c4dd51e321ed4056827603481c79552e4..12957844ccb023121fe43ae455da2bc27cc5d102 100644 --- a/apps/files_external/l10n/ms_MY.php +++ b/apps/files_external/l10n/ms_MY.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Peribadi", "Name" => "Nama", -"Groups" => "Kumpulan", -"Users" => "Pengguna", "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/my_MM.php b/apps/files_external/l10n/my_MM.php index 775fa4d9885102a2d03dabb55985e63f075c93a3..bf50d1b1b6de0b43e10c4d65c801b9f6bdd8e05a 100644 --- a/apps/files_external/l10n/my_MM.php +++ b/apps/files_external/l10n/my_MM.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Location" => "တည်နေရာ", "Username" => "သုံးစွဲသူအမည်", -"Password" => "စကားဝှက်", -"Users" => "သုံးစွဲသူ" +"Password" => "စကားဝှက်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index caeeb8eed6b21a4b2b87708a4f0ac8a7ce85a5e0..024f6c46ca172825476080f800ffd10da5d175a6 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 og tilsvarende", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Servernavn (ikke påkrevd)", -"Port (optional)" => "Port (ikke påkrevd)", -"Region (optional)" => "Region (ikke påkrevd)", "Enable SSL" => "Aktiver SSL", "Enable Path Style" => "Aktiver Path Style", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Brukernavn (påkrevet)", -"Bucket (required)" => "Bucket (påkrevet)", "Region (optional for OpenStack Object Storage)" => "Region (ikke påkrevet for OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (påkrevet for Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (påkrevet for OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Passord (påkrevet for OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Tjenestenavn (påkrevet for OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL for identity endpoint (påkrevet for OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Tidsavbrudd for HTTP-spørringer i sekunder (ikke påkrevet)", "Share" => "Del", "SMB / CIFS using OC login" => "SMB / CIFS med OC-pålogging", "Username as share" => "Brukernavn som share", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfigurasjon", "Available for" => "Tilgjengelig for", "Add storage" => "Legg til lagringsplass", -"No user or group" => "Ingen bruker eller gruppe", -"All Users" => "Alle brukere", -"Groups" => "Grupper", -"Users" => "Brukere", "Delete" => "Slett", "Enable User External Storage" => "Aktiver ekstern lagring for bruker", "Allow users to mount the following external storage" => "Tillat brukere å koble opp følgende eksterne lagring", diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 8e0790f15be693644c0e3be8c70e947d4dcb9027..f66e9f1c2925f33320846bd7e65eca7bc3d6c63f 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 en overeenkomstig", "Access Key" => "Access Key", "Secret Key" => "Secret Key", -"Hostname (optional)" => "Hostname (optioneel)", -"Port (optional)" => "Poort (optioneel)", -"Region (optional)" => "Regio (optioneel)", "Enable SSL" => "Activeren SSL", "Enable Path Style" => "Activeren pad stijl", "App key" => "App key", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Client secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Gebruikersnaam (verplicht)", -"Bucket (required)" => "Bucket (verplicht)", "Region (optional for OpenStack Object Storage)" => "Regio (optioneel voor OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (verplicht voor Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (Verplicht voor OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Wachtwoord (verplicht voor OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Service Name (verplicht voor OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL van identity endpoint (verplicht voor OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Time-out van HTTP aanvragen in seconden (optioneel)", "Share" => "Share", "SMB / CIFS using OC login" => "SMB / CIFS via OC inlog", "Username as share" => "Gebruikersnaam als share", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag", "Personal" => "Persoonlijk", "System" => "Systeem", +"All users. Type to select user or group." => "Alle gebruikers. Tikken om een gebruiker of groep te selecteren.", +"(group)" => "(groep)", "Saved" => "Bewaard", "Note: " => "Let op: ", " and " => "en", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuratie", "Available for" => "Beschikbaar voor", "Add storage" => "Toevoegen opslag", -"No user or group" => "Geen gebruiker of groep", -"All Users" => "Alle gebruikers", -"Groups" => "Groepen", -"Users" => "Gebruikers", "Delete" => "Verwijder", "Enable User External Storage" => "Externe opslag voor gebruikers activeren", "Allow users to mount the following external storage" => "Sta gebruikers toe de volgende externe opslag aan te koppelen", diff --git a/apps/files_external/l10n/nn_NO.php b/apps/files_external/l10n/nn_NO.php index ce0a76f33c2e636aa2927406927a7e6d5c9b580e..5362b4e285a37ffe2c6ad431ba47b648b6fee200 100644 --- a/apps/files_external/l10n/nn_NO.php +++ b/apps/files_external/l10n/nn_NO.php @@ -10,8 +10,6 @@ $TRANSLATIONS = array( "Name" => "Namn", "Folder name" => "Mappenamn", "Configuration" => "Innstillingar", -"Groups" => "Grupper", -"Users" => "Brukarar", "Delete" => "Slett" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/oc.php b/apps/files_external/l10n/oc.php index 1ffdf1b10f6119970bd8c7c2c2ac052d9f56d5d0..af4b03e3c15080f39359f4013a28df94b7fe35fa 100644 --- a/apps/files_external/l10n/oc.php +++ b/apps/files_external/l10n/oc.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "URL" => "URL", "Personal" => "Personal", "Name" => "Nom", -"Groups" => "Grops", -"Users" => "Usancièrs", "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pa.php b/apps/files_external/l10n/pa.php index 0bdcf0b7f6775ebf85e135a38f08768713d0220b..14e0fe78ae0428c9f8559960122c263636746911 100644 --- a/apps/files_external/l10n/pa.php +++ b/apps/files_external/l10n/pa.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Username" => "ਯੂਜ਼ਰ-ਨਾਂ", "Password" => "ਪਾਸਵਰ", "Share" => "ਸਾਂਝਾ ਕਰੋ", -"Groups" => "ਗਰੁੱਪ", "Delete" => "ਹਟਾਓ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index 9395c85307b869044ce58b36331411a0fab7d57b..99f4ec2d39b9750bd0a9104060d9a45b92175b31 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 i zgodne", "Access Key" => "Klucz dostępu", "Secret Key" => "Klucz hasła", -"Hostname (optional)" => "Nazwa hosta (opcjonalnie)", -"Port (optional)" => "Port (opcjonalnie)", -"Region (optional)" => "Region (opcjonalnie)", "Enable SSL" => "Włącz SSL", "Enable Path Style" => "Włącz styl ścieżki", "App key" => "Klucz aplikacji", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID klienta", "Client secret" => "Hasło klienta", "OpenStack Object Storage" => "Magazyn obiektów OpenStack", -"Username (required)" => "Użytkownik (wymagany)", -"Bucket (required)" => "Kosz (wymagany)", "Region (optional for OpenStack Object Storage)" => "Region (opcjonalny dla magazynu obiektów OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Klucz API (wymagany dla plików Rackspace Cloud)", "Tenantname (required for OpenStack Object Storage)" => "Nazwa najemcy (wymagana dla magazynu obiektów OpenStack)", "Password (required for OpenStack Object Storage)" => "Hasło (wymagane dla magazynu obiektów OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Nazwa usługi (wymagana dla magazynu obiektów OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL lub zakończenie jednostki (wymagane dla magazynu obiektów OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Czas wygaśnięcia żądań HTTP w sekundach (opcjonalne)", "Share" => "Udostępnij", "SMB / CIFS using OC login" => "SMB / CIFS przy użyciu loginu OC", "Username as share" => "Użytkownik jako zasób", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguracja", "Available for" => "Dostępne przez", "Add storage" => "Dodaj zasoby dyskowe", -"No user or group" => "Brak użytkownika lub grupy", -"All Users" => "Wszyscy uzytkownicy", -"Groups" => "Grupy", -"Users" => "Użytkownicy", "Delete" => "Usuń", "Enable User External Storage" => "Włącz zewnętrzne zasoby dyskowe użytkownika", "Allow users to mount the following external storage" => "Pozwól użytkownikom montować następujące zewnętrzne zasoby dyskowe", diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index f422b712053ac80f1840c47f8c6ae853d902e9f0..8a269218a6b63301b2b369f62773098eec6d7d6d 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatível", "Access Key" => "Chave de Acesso", "Secret Key" => "Chave Secreta", -"Hostname (optional)" => "Nome do Host (opcional)", -"Port (optional)" => "Porta (opcional)", -"Region (optional)" => "Região (opcional)", "Enable SSL" => "Habilitar SSL", "Enable Path Style" => "Habilitar Estilo do Caminho", "App key" => "Chave do Aplicativo", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID do Cliente", "Client secret" => "Segredo do cliente", "OpenStack Object Storage" => "Armazenamento de Objetos OpenStack", -"Username (required)" => "Nome do Usuário (requerido)", -"Bucket (required)" => "Cesta (requerido)", "Region (optional for OpenStack Object Storage)" => "Região (opcional para armazenamento de objetos OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Chave API (necessário para Rackspace Cloud File)", "Tenantname (required for OpenStack Object Storage)" => "Nome Tenant (necessário para armazenamento de objetos OpenStack)", "Password (required for OpenStack Object Storage)" => "Senha (necessário para armazenamento de objetos OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para armazenamento de objetos OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Ponto final de identidade da URL (obrigatório para armazenamento de objetos OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Tempo limite de solicitações HTTP em segundos (opcional)", "Share" => "Compartilhar", "SMB / CIFS using OC login" => "SMB / CIFS usando OC login", "Username as share" => "Nome de usuário como compartilhado", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Erro ao configurar armazenamento do Google Drive", "Personal" => "Pessoal", "System" => "Sistema", +"All users. Type to select user or group." => "Todos os usuários. Digite para selecionar usuário ou grupo.", +"(group)" => "(grupo)", "Saved" => "Salvo", "Note: " => "Nota:", " and " => "e", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuração", "Available for" => "Disponível para", "Add storage" => "Adicionar Armazenamento", -"No user or group" => "Nenhum usuário ou grupo", -"All Users" => "Todos os Usuários", -"Groups" => "Grupos", -"Users" => "Usuários", "Delete" => "Excluir", "Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário", "Allow users to mount the following external storage" => "Permitir que usuários montem o seguinte armazenamento externo", diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 486456c810c81de75ae6491cfdfcd73107d7d423..a95439fbfedcc5895f91c4d5a047983770c4d05e 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 e compatível", "Access Key" => "Chave de acesso", "Secret Key" => "Chave Secreta", -"Hostname (optional)" => "Nome do Hospedeiro (opcional)", -"Port (optional)" => "Porta (opcional)", -"Region (optional)" => "Região (opcional)", "Enable SSL" => "Activar SSL", "Enable Path Style" => "Ativar Estilo do Caminho", "App key" => "Chave da aplicação", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID Cliente", "Client secret" => "Segredo do cliente", "OpenStack Object Storage" => "Armazenamento de objetos OpenStack", -"Username (required)" => "Utilizador (requerido)", -"Bucket (required)" => "Bucket (necessário)", "Region (optional for OpenStack Object Storage)" => "Região (opcional para OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "Chave API (necessário para Rackspace Cloud File)", "Tenantname (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Senha (necessária para OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Nome do Serviço (necessário para OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout de solicitações HTTP em segundos (opcional)", "Share" => "Partilhar", "SMB / CIFS using OC login" => "SMB / CIFS utilizando o início de sessão OC", "Username as share" => "Utilizar nome de utilizador como partilha", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Configuração", "Available for" => "Disponível para ", "Add storage" => "Adicionar armazenamento", -"No user or group" => "Sem utilizador nem grupo", -"All Users" => "Todos os utilizadores", -"Groups" => "Grupos", -"Users" => "Utilizadores", "Delete" => "Eliminar", "Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador", "Allow users to mount the following external storage" => "Permitir que os utilizadores montem o seguinte armazenamento externo", diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index eaed049e865238d5e5b76a70d8b64b40c4393f09..130187dd585a5cb1e6c52c9999070e55fc2a0e4a 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "External storage" => "Stocare externă", "Location" => "Locație", "Amazon S3" => "Amazon S3", -"Region (optional)" => "Regiune", "Host" => "Gazdă", "Username" => "Nume utilizator", "Password" => "Parolă", @@ -23,9 +22,6 @@ $TRANSLATIONS = array( "Folder name" => "Denumire director", "Configuration" => "Configurație", "Add storage" => "Adauga stocare", -"All Users" => "Toți utilizatorii", -"Groups" => "Grupuri", -"Users" => "Utilizatori", "Delete" => "Șterge", "Enable User External Storage" => "Permite stocare externă pentru utilizatori", "Allow users to mount the following external storage" => "Permite utilizatorilor să monteze următoarea unitate de stocare", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 75b3dcd100ac7ad9ee19fe666ec5d8fa5326e214..76c0011c473eeace88f1db6a49252da4e67a96fb 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 и совместимый", "Access Key" => "Ключ доступа", "Secret Key" => "Секретный ключ", -"Hostname (optional)" => "Хост (опц.)", -"Port (optional)" => "Порт (опц.)", -"Region (optional)" => "Регион (опц.)", "Enable SSL" => "Включить SSL", "Enable Path Style" => "Включить стиль пути", "App key" => "Ключ приложения", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Идентификатор клиента", "Client secret" => "Клиентский ключ ", "OpenStack Object Storage" => "Хранилище объектов OpenStack", -"Username (required)" => "Имя пользователя (обяз.)", -"Bucket (required)" => "Bucket (обяз.)", "Region (optional for OpenStack Object Storage)" => "Регион (необяз. для Хранилища объектов OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Ключ API (обяз. для Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Имя арендатора (обяз. для Хранилища объектов OpenStack)", "Password (required for OpenStack Object Storage)" => "Пароль (обяз. для Хранилища объектов OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Имя Службы (обяз. для Хранилища объектов OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Тайм-аут HTTP запросов в секундах (опционально)", "Share" => "Открыть доступ", "SMB / CIFS using OC login" => "SMB / CIFS с ипользованием логина OC", "Username as share" => "Имя для открытого доступа", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Конфигурация", "Available for" => "Доступно для", "Add storage" => "Добавить хранилище", -"No user or group" => "Нет пользователя или группы", -"All Users" => "Все пользователи", -"Groups" => "Группы", -"Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", "Allow users to mount the following external storage" => "Разрешить пользователям монтировать следующее внешнее хранилище данных", diff --git a/apps/files_external/l10n/si_LK.php b/apps/files_external/l10n/si_LK.php index 06b3c7616e67397a01eafeaba2f750e942771004..533f4ce87a756c27a3c3d06c0e65851705d38707 100644 --- a/apps/files_external/l10n/si_LK.php +++ b/apps/files_external/l10n/si_LK.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "භාහිර ගබඩාව", "Folder name" => "ෆොල්ඩරයේ නම", "Configuration" => "වින්‍යාසය", -"All Users" => "සියළු පරිශීලකයන්", -"Groups" => "කණ්ඩායම්", -"Users" => "පරිශීලකයන්", "Delete" => "මකා දමන්න", "Enable User External Storage" => "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න", "SSL root certificates" => "SSL මූල සහතිකයන්", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 3bd9587eee9ecb4940d566daf4f3ec0c00093387..2bbcf511a9b09adcf6d237253ac3de06fe5916ce 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 a kompatibilné", "Access Key" => "Prístupový kľúč", "Secret Key" => "Tajný kľúč", -"Hostname (optional)" => "Hostname (voliteľný)", -"Port (optional)" => "Port (voliteľný)", -"Region (optional)" => "Región (voliteľný)", "Enable SSL" => "Povoliť SSL", "Enable Path Style" => "Povoliť štýl cesty", "App key" => "Kľúč aplikácie", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "Client ID", "Client secret" => "Heslo klienta", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Používateľské meno (povinné)", -"Bucket (required)" => "Sektor (povinné)", "Region (optional for OpenStack Object Storage)" => "Región (voliteľné pre OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API Key (požadované pre Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (požadované pre OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Heslo (požadované pre OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Meno služby (požadované pre OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL of identity endpoint (požadované pre OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Vypršanie HTTP požadiavkiek v sekundách (voliteľné)", "Share" => "Zdieľať", "SMB / CIFS using OC login" => "SMB / CIFS s použitím OC prihlásenia", "Username as share" => "Používateľské meno ako zdieľaný priečinok", @@ -66,10 +60,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavenia", "Available for" => "K dispozícii pre", "Add storage" => "Pridať úložisko", -"No user or group" => "Žiadny používateľ alebo skupina", -"All Users" => "Všetci používatelia", -"Groups" => "Skupiny", -"Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", "Allow users to mount the following external storage" => "Povoliť používateľom pripojiť tieto externé úložiská", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 2bbb29b7ac515f067fd4c834332964b4284859fb..d8b9dda0e0c2c0faf75a99818005c9b4b8d05089 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 in podobno", "Access Key" => "Ključ za dostop", "Secret Key" => "Skrivni ključ", -"Hostname (optional)" => "Ime gostitelja (izbirno)", -"Port (optional)" => "Vrata (izbirno)", -"Region (optional)" => "Območje (izbirno)", "Enable SSL" => "Omogoči SSL", "Enable Path Style" => "Omogoči slog poti", "App key" => "Programski ključ", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "ID odjemalca", "Client secret" => "Skrivni ključ odjemalca", "OpenStack Object Storage" => "Shramba predmeta OpenStack", -"Username (required)" => "Uporabniško ime (zahtevano)", -"Bucket (required)" => "Pomnilniško vedro (zahtevano)", "Region (optional for OpenStack Object Storage)" => "Območje (zahtevano za shrambo predmeta OpenStack)", "API Key (required for Rackspace Cloud Files)" => "Ključ programskega vmesnika (API) (zahtevan je za datoteke v oblaku Rackspace)", "Tenantname (required for OpenStack Object Storage)" => "Ime uporabnika (zahtevano za shrambo predmeta OpenStack)", "Password (required for OpenStack Object Storage)" => "Geslo (zahtevano za shrambo predmeta OpenStack)", "Service Name (required for OpenStack Object Storage)" => "Ime storitve (zahtevano za shrambo predmeta OpenStack)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Naslov URL končne točke uporabnika (zahtevano za shrambo predmeta OpenStack)", -"Timeout of HTTP requests in seconds (optional)" => "Časovni zamik zahtev HTTP v sekundah (izbirno)", "Share" => "Souporaba", "SMB / CIFS using OC login" => "SMB / CIFS z uporabo prijave OC", "Username as share" => "Uporabniško ime za souporabo", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", "Personal" => "Osebno", "System" => "Sistem", +"All users. Type to select user or group." => "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati.", +"(group)" => "(skupina)", "Saved" => "Shranjeno", "Note: " => "Opomba: ", " and " => "in", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Nastavitve", "Available for" => "Na voljo za", "Add storage" => "Dodaj shrambo", -"No user or group" => "Ni uporabnika ali skupine", -"All Users" => "Vsi uporabniki", -"Groups" => "Skupine", -"Users" => "Uporabniki", "Delete" => "Izbriši", "Enable User External Storage" => "Omogoči zunanjo uporabniško podatkovno shrambo", "Allow users to mount the following external storage" => "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb.", diff --git a/apps/files_external/l10n/sq.php b/apps/files_external/l10n/sq.php index dff94158b537a77cea8e337676e787a57372645b..d6bffb90570917d7d89f8fce08b57720e8ee289c 100644 --- a/apps/files_external/l10n/sq.php +++ b/apps/files_external/l10n/sq.php @@ -10,8 +10,6 @@ $TRANSLATIONS = array( "Saved" => "U ruajt", "Name" => "Emri", "Folder name" => "Emri i Skedarit", -"Groups" => "Grupet", -"Users" => "Përdoruesit", "Delete" => "Elimino" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sr.php b/apps/files_external/l10n/sr.php index 532cdb50ed4b8bd49a25b4bb9ffa08086e2e94a9..28247f8d7ce2e687d7bacdd2cd7d23b4c2c424c4 100644 --- a/apps/files_external/l10n/sr.php +++ b/apps/files_external/l10n/sr.php @@ -7,8 +7,6 @@ $TRANSLATIONS = array( "Share" => "Дели", "Personal" => "Лично", "Name" => "Име", -"Groups" => "Групе", -"Users" => "Корисници", "Delete" => "Обриши" ); $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);"; diff --git a/apps/files_external/l10n/sr@latin.php b/apps/files_external/l10n/sr@latin.php index 820ec7288edfe75afa89e7ef014b729d937fea52..8a476118ebab9a3ed971714204cf6a88e1a4235b 100644 --- a/apps/files_external/l10n/sr@latin.php +++ b/apps/files_external/l10n/sr@latin.php @@ -6,8 +6,6 @@ $TRANSLATIONS = array( "Share" => "Podeli", "Personal" => "Lično", "Name" => "Ime", -"Groups" => "Grupe", -"Users" => "Korisnici", "Delete" => "Obriši" ); $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);"; diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index de412f66eb206e8b93f206d90e217d12292c2256..deb78cb37493f50e72624bd83c026068939cf44a 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -13,9 +13,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 och compliant", "Access Key" => "Accessnyckel", "Secret Key" => "Hemlig nyckel", -"Hostname (optional)" => "Värdnamn (valfritt)", -"Port (optional)" => "Port (valfritt)", -"Region (optional)" => "Region (valfritt)", "Enable SSL" => "Aktivera SSL", "Enable Path Style" => "Aktivera Path Style", "App key" => "App-nyckel", @@ -28,15 +25,12 @@ $TRANSLATIONS = array( "Client ID" => "Klient ID", "Client secret" => "klient secret", "OpenStack Object Storage" => "OpenStack Object Storage", -"Username (required)" => "Användarnamn (måste anges)", -"Bucket (required)" => "Bucket (krävs)", "Region (optional for OpenStack Object Storage)" => "Region (valfritt för OpenStack Object Storage)", "API Key (required for Rackspace Cloud Files)" => "API-nyckel (krävs för Rackspace Cloud Files)", "Tenantname (required for OpenStack Object Storage)" => "Tenantname (krävs för OpenStack Object Storage)", "Password (required for OpenStack Object Storage)" => "Lösenord (krävs för OpenStack Object Storage)", "Service Name (required for OpenStack Object Storage)" => "Tjänstens namn (krävs för OpenStack Object Storage)", "URL of identity endpoint (required for OpenStack Object Storage)" => "URL för identitetens slutpunkt (krävs för OpenStack Object Storage)", -"Timeout of HTTP requests in seconds (optional)" => "Timeout för HTTP-förfrågningar i sekunder (tillval)", "Share" => "Dela", "SMB / CIFS using OC login" => "SMB / CIFS använder OC inloggning", "Username as share" => "Användarnamn till utdelning", @@ -64,10 +58,6 @@ $TRANSLATIONS = array( "Configuration" => "Konfiguration", "Available for" => "Tillgänglig för", "Add storage" => "Lägg till lagring", -"No user or group" => "Ingen användare eller grupp", -"All Users" => "Alla användare", -"Groups" => "Grupper", -"Users" => "Användare", "Delete" => "Radera", "Enable User External Storage" => "Aktivera extern lagring för användare", "Allow users to mount the following external storage" => "Tillåt användare att montera följande extern lagring", diff --git a/apps/files_external/l10n/ta_LK.php b/apps/files_external/l10n/ta_LK.php index 4f2b2c8a26b01ff5db6a602ac3507661500e4b9c..212e9b64ea983fdcbae779dfe9c19724d61d68b9 100644 --- a/apps/files_external/l10n/ta_LK.php +++ b/apps/files_external/l10n/ta_LK.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "வெளி சேமிப்பு", "Folder name" => "கோப்புறை பெயர்", "Configuration" => "தகவமைப்பு", -"All Users" => "பயனாளர்கள் எல்லாம்", -"Groups" => "குழுக்கள்", -"Users" => "பயனாளர்", "Delete" => "நீக்குக", "Enable User External Storage" => "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக", "SSL root certificates" => "SSL வேர் சான்றிதழ்கள்", diff --git a/apps/files_external/l10n/te.php b/apps/files_external/l10n/te.php index 98a31a2e3144dedf22a996df4cadb456d931e1a9..73e828ebfcba45199df284f42b95077425c84204 100644 --- a/apps/files_external/l10n/te.php +++ b/apps/files_external/l10n/te.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Personal" => "వ్యక్తిగతం", "Name" => "పేరు", "Folder name" => "సంచయం పేరు", -"Users" => "వాడుకరులు", "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index 63a221e7ea4db26e1eccb62cbbbde5e7e51a7f4a..27c49f5fbd46a1d82870bb0981c16eec15236a1b 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -16,9 +16,6 @@ $TRANSLATIONS = array( "External Storage" => "พื้นทีจัดเก็บข้อมูลจากภายนอก", "Folder name" => "ชื่อโฟลเดอร์", "Configuration" => "การกำหนดค่า", -"All Users" => "ผู้ใช้งานทั้งหมด", -"Groups" => "กลุ่ม", -"Users" => "ผู้ใช้งาน", "Delete" => "ลบ", "Enable User External Storage" => "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้", "SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 26537b75879ffaa97d5132302931e1f298836d4d..705e812208fba3a528c9c3d80c457db3d26247fa 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -15,9 +15,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 ve uyumlu olanlar", "Access Key" => "Erişim Anahtarı", "Secret Key" => "Gizli Anahtar", -"Hostname (optional)" => "Makine Adı (isteğe bağlı)", -"Port (optional)" => "Bağl. Nok. (isteğe bağlı)", -"Region (optional)" => "Bölge (isteğe bağlı)", "Enable SSL" => "SSL'yi Etkinleştir", "Enable Path Style" => "Yol Biçemini Etkinleştir", "App key" => "Uyg. anahtarı", @@ -30,15 +27,12 @@ $TRANSLATIONS = array( "Client ID" => "İstemci kimliği", "Client secret" => "İstemci parolası", "OpenStack Object Storage" => "OpenStack Nesne Depolama", -"Username (required)" => "Kullanıcı adı (gerekli)", -"Bucket (required)" => "Bucket (gerekli)", "Region (optional for OpenStack Object Storage)" => "Bölge (OpenStack Nesne Depolaması için isteğe bağlı)", "API Key (required for Rackspace Cloud Files)" => "API Anahtarı (Rackspace Bulut Dosyaları için gerekli)", "Tenantname (required for OpenStack Object Storage)" => "Kiracı Adı (OpenStack Nesne Depolaması için gerekli)", "Password (required for OpenStack Object Storage)" => "Parola (OpenStack Nesne Depolaması için gerekli)", "Service Name (required for OpenStack Object Storage)" => "Hizmet Adı (OpenStack Nesne Depolaması için gerekli)", "URL of identity endpoint (required for OpenStack Object Storage)" => "Kimlik uç nokta adresi (OpenStack Nesne Depolaması için gerekli)", -"Timeout of HTTP requests in seconds (optional)" => "Saniye cinsinden HTTP istek zaman aşımı (isteğe bağlı)", "Share" => "Paylaş", "SMB / CIFS using OC login" => "OC oturumu kullanarak SMB / CIFS", "Username as share" => "Paylaşım olarak kullanıcı adı", @@ -51,6 +45,8 @@ $TRANSLATIONS = array( "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", "Personal" => "Kişisel", "System" => "Sistem", +"All users. Type to select user or group." => "Tüm kullanıcılar. Kullanıcı veya grup seçmek için yazın.", +"(group)" => "(grup)", "Saved" => "Kaydedildi", "Note: " => "Not: ", " and " => "ve", @@ -66,10 +62,6 @@ $TRANSLATIONS = array( "Configuration" => "Yapılandırma", "Available for" => "Kullanabilenler", "Add storage" => "Depo ekle", -"No user or group" => "Kullanıcı veya grup yok", -"All Users" => "Tüm Kullanıcılar", -"Groups" => "Gruplar", -"Users" => "Kullanıcılar", "Delete" => "Sil", "Enable User External Storage" => "Kullanıcılar için Harici Depolamayı Etkinleştir", "Allow users to mount the following external storage" => "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver", diff --git a/apps/files_external/l10n/ug.php b/apps/files_external/l10n/ug.php index 6574fa59cc905683c6c4ba6f24e301eeb665f681..6508595118e2ec8def8589140a1a404ecaf07288 100644 --- a/apps/files_external/l10n/ug.php +++ b/apps/files_external/l10n/ug.php @@ -11,8 +11,6 @@ $TRANSLATIONS = array( "Name" => "ئاتى", "Folder name" => "قىسقۇچ ئاتى", "Configuration" => "سەپلىمە", -"Groups" => "گۇرۇپپا", -"Users" => "ئىشلەتكۈچىلەر", "Delete" => "ئۆچۈر" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 50ce1beb6098985b5bae35ff117eff88d8c53c0b..b64ace8588361185b3435fa5ca9b284befabb5f4 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Ім'я теки", "Configuration" => "Налаштування", "Add storage" => "Додати сховище", -"All Users" => "Усі користувачі", -"Groups" => "Групи", -"Users" => "Користувачі", "Delete" => "Видалити", "Enable User External Storage" => "Активувати користувацькі зовнішні сховища", "SSL root certificates" => "SSL корневі сертифікати", diff --git a/apps/files_external/l10n/ur_PK.php b/apps/files_external/l10n/ur_PK.php index 69791cabe812d328950263be5d072584baa25187..e5b9089328d994c9c079f67dd9919d3dc2d9d18f 100644 --- a/apps/files_external/l10n/ur_PK.php +++ b/apps/files_external/l10n/ur_PK.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "URL" => "یو ار ایل", "Personal" => "شخصی", "Name" => "اسم", -"Users" => "یوزرز", "Delete" => "حذف کریں" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index b2dd7a261ba8dbbf3b8802dcd854575c9bb93647..b1b8def80b1ba2ea761c67a40b53f0a11c8a168b 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -18,9 +18,6 @@ $TRANSLATIONS = array( "Folder name" => "Tên thư mục", "Configuration" => "Cấu hình", "Add storage" => "Thêm bộ nhớ", -"All Users" => "Tất cả người dùng", -"Groups" => "Nhóm", -"Users" => "Người dùng", "Delete" => "Xóa", "Enable User External Storage" => "Kích hoạt tính năng lưu trữ ngoài", "SSL root certificates" => "Chứng chỉ SSL root", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 031ffd9cb9224d98f8719749647d02647e50c5d9..9b576691363e0be596cde851f4a1a7c77e47d9bc 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -10,9 +10,6 @@ $TRANSLATIONS = array( "Amazon S3 and compliant" => "Amazon S3 和兼容协议", "Access Key" => "访问密钥", "Secret Key" => "秘钥", -"Hostname (optional)" => "域名 (可选)", -"Port (optional)" => "端口 (可选)", -"Region (optional)" => "区域 (optional)", "Enable SSL" => "启用 SSL", "Enable Path Style" => "启用 Path Style", "Host" => "主机", @@ -21,9 +18,6 @@ $TRANSLATIONS = array( "Root" => "根路径", "Secure ftps://" => "安全 ftps://", "OpenStack Object Storage" => "OpenStack 对象存储", -"Username (required)" => "用户名 (必须)", -"Bucket (required)" => "Bucket (必须)", -"Timeout of HTTP requests in seconds (optional)" => "HTTP 请求超时(秒) (可选)", "Share" => "共享", "SMB / CIFS using OC login" => "SMB / CIFS 使用 OC 登录信息", "URL" => "URL", @@ -47,10 +41,6 @@ $TRANSLATIONS = array( "Configuration" => "配置", "Available for" => "可用于", "Add storage" => "增加存储", -"No user or group" => "无用户或组", -"All Users" => "所有用户", -"Groups" => "组", -"Users" => "用户", "Delete" => "删除", "Enable User External Storage" => "启用用户外部存储", "Allow users to mount the following external storage" => "允许用户挂载以下外部存储", diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php index c31b20dbc9948077684a8f3a875e6a02e81fd3ca..33fc2113f92c64c041bb2560b77f1a09abeeb8f4 100644 --- a/apps/files_external/l10n/zh_HK.php +++ b/apps/files_external/l10n/zh_HK.php @@ -8,8 +8,6 @@ $TRANSLATIONS = array( "Saved" => "已儲存", "Name" => "名稱", "Folder name" => "資料夾名稱", -"Groups" => "群組", -"Users" => "用戶", "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index 93e341fa516a5060d174e3bd55bb5a4e426b3f03..66523be7fddb4c6e8074211a1323d0d34aa18359 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -8,14 +8,10 @@ $TRANSLATIONS = array( "Key" => "鑰", "Secret" => "密", "Secret Key" => "密鑰", -"Hostname (optional)" => "主機名稱 (選填)", -"Port (optional)" => "埠號 (選填)", -"Region (optional)" => "區域 (選填)", "Enable SSL" => "啟用 SSL", "Host" => "主機", "Username" => "使用者名稱:", "Password" => "密碼", -"Username (required)" => "使用者名稱 (必填)", "Share" => "分享", "URL" => "URL", "Access granted" => "允許存取", @@ -37,10 +33,6 @@ $TRANSLATIONS = array( "Configuration" => "設定", "Available for" => "可用的", "Add storage" => "增加儲存區", -"No user or group" => "沒有使用者或群組", -"All Users" => "所有使用者", -"Groups" => "群組", -"Users" => "使用者", "Delete" => "刪除", "Enable User External Storage" => "啓用使用者外部儲存", "Allow users to mount the following external storage" => "允許使用者自行掛載以下的外部儲存", diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index c71132d0a5a2b34b917ec2ecd8dbc5dc24499025..85e36fd90431a73d3b803cf7da59c358b657deee 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -169,6 +169,7 @@ class OC_Mount_Config { foreach ($options as &$option) { $option = self::setUserVars($user, $option); } + $options['personal'] = false; $options['options'] = self::decryptPasswords($options['options']); if (!isset($options['priority'])) { $options['priority'] = $backends[$options['class']]['priority']; diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index e0655cc8d3db5717e86a505be1f693c43b7622ec..aec56d088d56fda50fd99d7f769a842a26ed65c4 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -166,6 +166,9 @@ class SFTP extends \OC\Files\Storage\Common { public function opendir($path) { try { $list = $this->client->nlist($this->absPath($path)); + if ($list === false) { + return false; + } $id = md5('sftp:' . $path); $dirStream = array(); diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index 0c79c06c5df13863b68d295c4466f5d04234ae87..e6f3aaf40528bb5c848fafd659bd30d096744553 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -14,12 +14,12 @@ class SMB_OC extends \OC\Files\Storage\SMB { private $username_as_share; public function __construct($params) { - if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { + if (isset($params['host']) && \OC::$server->getSession()->exists('smb-credentials')) { $host=$params['host']; $this->username_as_share = ($params['username_as_share'] === 'true'); - $params_auth = \OC::$session->get('smb-credentials'); - $user = \OC::$session->get('loginname'); + $params_auth = \OC::$server->getSession()->get('smb-credentials'); + $user = \OC::$server->getSession()->get('loginname'); $password = $params_auth['password']; $root=isset($params['root'])?$params['root']:'/'; @@ -45,7 +45,7 @@ class SMB_OC extends \OC\Files\Storage\SMB { } public static function login( $params ) { - \OC::$session->set('smb-credentials', $params); + \OC::$server->getSession()->set('smb-credentials', $params); } public function isSharable($path) { diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index 5b62b542200ac3dfc0fbd17005f5e04443dfa386..4c87360486a7b97462eb8e4f4cb2d7d919efb6fd 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -23,9 +23,10 @@ OC_Util::checkAdminUser(); OCP\Util::addScript('files_external', 'settings'); -OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min'); OCP\Util::addStyle('files_external', 'settings'); -OCP\Util::addStyle('3rdparty', 'chosen/chosen'); + +OCP\Util::addScript('files_external', '../3rdparty/select2/select2'); +OCP\Util::addStyle('files_external', '../3rdparty/select2/select2'); $backends = OC_Mount_Config::getBackends(); $personal_backends = array(); @@ -46,9 +47,6 @@ $tmpl->assign('isAdminPage', true); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); $tmpl->assign('backends', $backends); $tmpl->assign('personal_backends', $personal_backends); -$tmpl->assign('groups', OC_Group::getGroups()); -$tmpl->assign('users', OCP\User::getUsers()); -$tmpl->assign('userDisplayNames', OC_User::getDisplayNames()); $tmpl->assign('dependencies', OC_Mount_Config::checkDependencies()); $tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes')); return $tmpl->fetchPage(); diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 14f8ebc80005a4e86bc3c9fb0638e2a50bee21cc..dd283f9ff558c2f964feb4a961a3e895b84a9891 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -88,31 +88,8 @@ print_unescaped(json_encode($mount['applicable']['groups'])); ?>' data-applicable-users=''> - - + + class="remove" style="visibility:hidden;" diff --git a/apps/files_sharing/ajax/external.php b/apps/files_sharing/ajax/external.php index 37d0607cd3fb43a32df02bdbd07a8a2c7f272042..544a97e80be131c43899d49b975074a72b2b7cba 100644 --- a/apps/files_sharing/ajax/external.php +++ b/apps/files_sharing/ajax/external.php @@ -10,7 +10,7 @@ OCP\JSON::callCheck(); OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('files_sharing'); -$l = OC_L10N::get('files_sharing'); +$l = \OC::$server->getL10N('files_sharing'); // check if server admin allows to mount public links from other servers if (OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled() === false) { diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index b22c553ec937c298eb97c1b490a15c0d0fc99c09..543cae7b0c10b110ba958260e467d4d18a0c8fa4 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -1,5 +1,5 @@ getL10N('files_sharing'); OC::$CLASSPATH['OC_Share_Backend_File'] = 'files_sharing/lib/share/file.php'; OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'files_sharing/lib/share/folder.php'; diff --git a/apps/files_sharing/l10n/ast.php b/apps/files_sharing/l10n/ast.php index 879f231bf92a175576b3d4f82b312630375ec587..2a5004811b8a7e5a2d1d84590f86de320f2d3ba5 100644 --- a/apps/files_sharing/l10n/ast.php +++ b/apps/files_sharing/l10n/ast.php @@ -1,6 +1,7 @@ "La compartición sirvidor a sirvidor nun ta habilitada nesti sirvidor", +"Invalid or untrusted SSL certificate" => "Certificáu SSL inválidu o ensín validar", "Couldn't add remote share" => "Nun pudo amestase una compartición remota", "Shared with you" => "Compartíos contigo", "Shared with others" => "Compartíos con otros", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 2545c4760ecf54ef908c8912a1ad999ab46c379e..50cc21e43ddb880742c1cda03512c0dafc2615e1 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,8 +1,9 @@ "বাতির", +"Cancel" => "বাতিল", +"Shared by" => "যাদের মাঝে ভাগাভাগি করা হয়েছে", "Password" => "কূটশব্দ", -"Name" => "রাম", +"Name" => "নাম", "Download" => "ডাউনলোড" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index b4f52dbef7e896b69ec6d671d73b95d675b9846b..45019e3470807b03288b292224001184c8a0dbfa 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -8,13 +8,13 @@ $TRANSLATIONS = array( "Shared by link" => "Sdíleno pomocí odkazu", "No files have been shared with you yet." => "Zatím s vámi nikdo žádné soubory nesdílel.", "You haven't shared any files yet." => "Zatím jste nesdíleli žádné soubory.", -"You haven't shared any files by link yet." => "Zatím jste nesdíleli pomocí odkazu žádný soubor.", +"You haven't shared any files by link yet." => "Zatím jste nesdíleli pomocí odkazu žádné soubory.", "Do you want to add the remote share {name} from {owner}@{remote}?" => "Chcete přidat vzdálené úložiště {name} uživatele {owner}@{remote}?", "Remote share" => "Vzdálené úložiště", "Remote share password" => "Heslo ke vzdálenému úložišti", "Cancel" => "Zrušit", "Add remote share" => "Přidat vzdálené úložiště", -"No ownCloud installation found at {remote}" => "Nebyla nalezen žádný funkční ownCloud na {remote}", +"No ownCloud installation found at {remote}" => "Nebyla nalezena instalace ownCloud na {remote}", "Invalid ownCloud url" => "Neplatná ownCloud url", "Shared by" => "Sdílí", "This share is password-protected" => "Toto sdílení je chráněno heslem", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 71df34108ba16dc97ca30f1143dbd7c906e674d0..d0fb98e4ee2ad6a03845ae0a566aa8090b9ad03e 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,6 +1,7 @@ "Serverist serverisse jagamine pole antud serveris lubatud", +"Invalid or untrusted SSL certificate" => "Vigane või tundmatu SSL sertifikaat", "Couldn't add remote share" => "Ei suutnud lisada kaugjagamist", "Shared with you" => "Sinuga jagatud", "Shared with others" => "Teistega jagatud", diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index f444404c2b18e458055291e3ae37b865713d5efe..e7ca4fcccd4e25f9e765af3ba561b0b2ffd36f1a 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -106,7 +106,7 @@ class Helper { return false; } else { // Save item id in session for future requests - \OC::$session->set('public_link_authenticated', $linkItem['id']); + \OC::$server->getSession()->set('public_link_authenticated', $linkItem['id']); } } else { \OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] @@ -117,8 +117,8 @@ class Helper { } else { // not authenticated ? - if ( ! \OC::$session->exists('public_link_authenticated') - || \OC::$session->get('public_link_authenticated') !== $linkItem['id']) { + if ( ! \OC::$server->getSession()->exists('public_link_authenticated') + || \OC::$server->getSession()->get('public_link_authenticated') !== $linkItem['id']) { return false; } } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 746bdf87c17dd779d39314f156fd96aeea90c3f3..bcf99d01edb2c20b4d97a57cca6d78c67470422e 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -63,7 +63,7 @@ if (isset($path)) { exit(); } else { // Save item id in session for future requests - \OC::$session->set('public_link_authenticated', $linkItem['id']); + \OC::$server->getSession()->set('public_link_authenticated', $linkItem['id']); } } else { OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] @@ -76,8 +76,8 @@ if (isset($path)) { } else { // Check if item id is set in session - if ( ! \OC::$session->exists('public_link_authenticated') - || \OC::$session->get('public_link_authenticated') !== $linkItem['id'] + if ( ! \OC::$server->getSession()->exists('public_link_authenticated') + || \OC::$server->getSession()->get('public_link_authenticated') !== $linkItem['id'] ) { // Prompt for password OCP\Util::addStyle('files_sharing', 'authenticate'); diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 9d9c1dd100f47807db94af8b2b6a1ca1a38e1b81..a2302802649a5a1fc3dff86e439162ed417910d5 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -55,7 +55,7 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - $l = OC_L10N::get('files_trashbin'); + $l = \OC::$server->getL10N('files_trashbin'); $message = $l->t("Couldn't delete %s permanently", array(rtrim($filelist, ', '))); OCP\JSON::error(array("data" => array("message" => $message, "success" => $success, "error" => $error))); diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index afab79fcac626153ff9c9a53943385c13ab6ca69..02d651925cac747d5f645370677f84d1f8308dc5 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -60,7 +60,7 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - $l = OC_L10N::get('files_trashbin'); + $l = OC::$server->getL10N('files_trashbin'); $message = $l->t("Couldn't restore %s", array(rtrim($filelist, ', '))); OCP\JSON::error(array("data" => array("message" => $message, "success" => $success, "error" => $error))); diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 718c2f45a348e56b9be46ecc4a0af824fdcbb7a3..fe428121a25e19c4029803e2a9365332e43457a0 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,5 +1,5 @@ getL10N('files_trashbin'); OC::$CLASSPATH['OCA\Files_Trashbin\Exceptions\CopyRecursiveException'] = 'files_trashbin/lib/exceptions.php'; diff --git a/apps/files_trashbin/l10n/az.php b/apps/files_trashbin/l10n/az.php index 60a214eea599f86e41c41c976bf82888d89ef5fd..9d07ff60499685f4ccd30098bace3f5a9f500af7 100644 --- a/apps/files_trashbin/l10n/az.php +++ b/apps/files_trashbin/l10n/az.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "Restore" => "Geri qaytar", "Error" => "Səhv", "restored" => "geriqaytarılıb", +"Nothing in here. Your trash bin is empty!" => "Burda heçnə yoxdur. Sizin zibil qutusu boşdur!", "Name" => "Ad", "Deleted" => "Silinib", "Delete" => "Sil" diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index d3a9f23b3777e7644fb22df44626bde1189d4ebe..e0e44bf8c60bc5728229789a16b2a5b9d58fec48 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,7 +1,14 @@ "%s স্থায়ীভাবে মুছে ফেলা গেলনা", +"Couldn't restore %s" => "%s ফেরত আনা গেলনা", +"Deleted files" => "মুছে ফেলা ফাইলসমূহ", +"Restore" => "ফিরিয়ে দাও", "Error" => "সমস্যা", -"Name" => "রাম", +"restored" => "পূণঃসংরক্ষিত", +"Nothing in here. Your trash bin is empty!" => "এখানে কিছু নেই। আপনার ট্র্যাসবিন শুন্য", +"Name" => "নাম", +"Deleted" => "মুছে ফেলা", "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index ee3969323cfbc85c33ab571136bfcf51181cb3ce..69eef09d1e90006b691f1abae0e4fdeda6d7d9b2 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -891,7 +891,7 @@ class Trashbin { private static function getUniqueFilename($location, $filename, $view) { $ext = pathinfo($filename, PATHINFO_EXTENSION); $name = pathinfo($filename, PATHINFO_FILENAME); - $l = \OC_L10N::get('files_trashbin'); + $l = \OC::$server->getL10N('files_trashbin'); // if extension is not empty we set a dot in front of it if ($ext !== '') { diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 900d8cd6e285d1995bd155dd8497b89c756e97ef..e6133507738fce29a1428b35026d1ed1e7017c5b 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -9,6 +9,6 @@ $revision=(int)$_GET['revision']; if(OCA\Files_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ - $l = OC_L10N::get('files_versions'); + $l = \OC::$server->getL10N('files_versions'); OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) )))); } diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index ce7f81b0095ff9d6fb227f11b1f235e3f8fdd436..2b57275d27494cb1d781ed7cc47617eccb76da6a 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,5 +1,10 @@ "ভার্সন" +"Could not revert: %s" => "ফিরে যাওয়া গেলনা: %s", +"Versions" => "সংষ্করন", +"Failed to revert {file} to revision {timestamp}." => " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।", +"More versions..." => "আরো সংষ্করণ....", +"No other versions available" => "আর কোন সংষ্করণ প্রাপ্তব্য নয়", +"Restore" => "ফিরিয়ে দাও" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/ajax/clearMappings.php b/apps/user_ldap/ajax/clearMappings.php index 9118d58c5cf0f73d92f962fdac3a68919f125f36..4e713c59f964830c326bcaf7bc3cf91f67b28e44 100644 --- a/apps/user_ldap/ajax/clearMappings.php +++ b/apps/user_ldap/ajax/clearMappings.php @@ -30,6 +30,6 @@ $subject = $_POST['ldap_clear_mapping']; if(\OCA\user_ldap\lib\Helper::clearMapping($subject)) { OCP\JSON::success(); } else { - $l=OC_L10N::get('user_ldap'); + $l = \OC::$server->getL10N('user_ldap'); OCP\JSON::error(array('message' => $l->t('Failed to clear the mappings.'))); } diff --git a/apps/user_ldap/ajax/deleteConfiguration.php b/apps/user_ldap/ajax/deleteConfiguration.php index ade57110d346b8986e724e5100d1f7e2b0064f1a..bca687c81ab96d87facbdb15b643e71441273639 100644 --- a/apps/user_ldap/ajax/deleteConfiguration.php +++ b/apps/user_ldap/ajax/deleteConfiguration.php @@ -30,6 +30,6 @@ $prefix = $_POST['ldap_serverconfig_chooser']; if(\OCA\user_ldap\lib\Helper::deleteServerConfiguration($prefix)) { OCP\JSON::success(); } else { - $l=OC_L10N::get('user_ldap'); + $l = \OC::$server->getL10N('user_ldap'); OCP\JSON::error(array('message' => $l->t('Failed to delete the server configuration'))); } diff --git a/apps/user_ldap/ajax/testConfiguration.php b/apps/user_ldap/ajax/testConfiguration.php index a6375209611ebe352cbe3f6d56ad2c6b5d72eda0..c6372eb2cedda6a4523d6218d89ea31a5290ba06 100644 --- a/apps/user_ldap/ajax/testConfiguration.php +++ b/apps/user_ldap/ajax/testConfiguration.php @@ -26,7 +26,7 @@ OCP\JSON::checkAdminUser(); OCP\JSON::checkAppEnabled('user_ldap'); OCP\JSON::callCheck(); -$l=OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); $ldapWrapper = new OCA\user_ldap\lib\LDAP(); $connection = new \OCA\user_ldap\lib\Connection($ldapWrapper, '', null); diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index ad75a38436983bb236084227771ea5ae264e0cec..ef1241b9147323db1205d78b3fd32930fde5ae82 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -26,7 +26,7 @@ OCP\JSON::checkAdminUser(); OCP\JSON::checkAppEnabled('user_ldap'); OCP\JSON::callCheck(); -$l=OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); if(!isset($_POST['action'])) { \OCP\JSON::error(array('message' => $l->t('No action specified'))); @@ -39,13 +39,29 @@ if(!isset($_POST['ldap_serverconfig_chooser'])) { } $prefix = $_POST['ldap_serverconfig_chooser']; -$ldapWrapper = new OCA\user_ldap\lib\LDAP(); +$ldapWrapper = new \OCA\user_ldap\lib\LDAP(); $configuration = new \OCA\user_ldap\lib\Configuration($prefix); -$wizard = new \OCA\user_ldap\lib\Wizard($configuration, $ldapWrapper); + +$con = new \OCA\user_ldap\lib\Connection($ldapWrapper, '', null); +$con->setConfiguration($configuration->getConfiguration()); +$con->ldapConfigurationActive = true; +$con->setIgnoreValidation(true); + +$userManager = new \OCA\user_ldap\lib\user\Manager( + \OC::$server->getConfig(), + new \OCA\user_ldap\lib\FilesystemHelper(), + new \OCA\user_ldap\lib\LogWrapper(), + \OC::$server->getAvatarManager(), + new \OCP\Image()); + +$access = new \OCA\user_ldap\lib\Access($con, $ldapWrapper, $userManager); + +$wizard = new \OCA\user_ldap\lib\Wizard($configuration, $ldapWrapper, $access); switch($action) { case 'guessPortAndTLS': case 'guessBaseDN': + case 'detectEmailAttribute': case 'determineGroupMemberAssoc': case 'determineUserObjectClasses': case 'determineGroupObjectClasses': diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index df3bd67aec2cc4d6e1d0a8b1b3387ec0603c2af5..e9f60e7ba3c9497352f8e7f7542d5e413bbb39ed 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -14,7 +14,7 @@ function LdapFilter(target) { } } -LdapFilter.prototype.compose = function() { +LdapFilter.prototype.compose = function(callback) { var action; if(this.locked) { @@ -50,6 +50,9 @@ LdapFilter.prototype.compose = function() { LdapWizard.countGroups(); LdapWizard.detectGroupMemberAssoc(); } + if(typeof callback !== 'undefined') { + callback(); + } }, function () { console.log('LDAP Wizard: could not compose filter. '+ diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 87d755697cb19974c3c0ff1dcfdc1b1e64031965..fd84ca1980b2a2f89bc1c22f33bfb7a208e9edeb 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -340,6 +340,14 @@ var LdapWizard = { LdapWizard._countThings('countUsers'); }, + detectEmailAttribute: function() { + param = 'action=detectEmailAttribute'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + //runs in the background, no callbacks necessary + LdapWizard.ajax(param, LdapWizard.applyChanges, function(){}); + }, + detectGroupMemberAssoc: function() { param = 'action=determineGroupMemberAssoc'+ '&ldap_serverconfig_chooser='+ @@ -577,7 +585,7 @@ var LdapWizard = { postInitUserFilter: function() { if(LdapWizard.userFilterObjectClassesHasRun && LdapWizard.userFilterAvailableGroupsHasRun) { - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); LdapWizard.countUsers(); } }, @@ -619,6 +627,7 @@ var LdapWizard = { if(triggerObj.id == 'ldap_userlist_filter') { LdapWizard.countUsers(); + LdapWizard.detectEmailAttribute(); } else if(triggerObj.id == 'ldap_group_filter') { LdapWizard.countGroups(); LdapWizard.detectGroupMemberAssoc(); @@ -656,9 +665,12 @@ var LdapWizard = { LdapWizard._save($('#'+originalObj)[0], $.trim(values)); if(originalObj == 'ldap_userfilter_objectclass' || originalObj == 'ldap_userfilter_groups') { - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); //when user filter is changed afterwards, login filter needs to //be adjusted, too + if(!LdapWizard.loginFilter) { + LdapWizard.initLoginFilter(); + } LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_loginfilter_attributes') { LdapWizard.loginFilter.compose(); @@ -720,7 +732,7 @@ var LdapWizard = { LdapWizard._save({ id: modeKey }, LdapWizard.filterModeAssisted); if(moc.indexOf('user') >= 0) { LdapWizard.blacklistRemove('ldap_userlist_filter'); - LdapWizard.userFilter.compose(); + LdapWizard.userFilter.compose(LdapWizard.detectEmailAttribute); } else { LdapWizard.blacklistRemove('ldap_group_filter'); LdapWizard.groupFilter.compose(); diff --git a/apps/user_ldap/l10n/az.php b/apps/user_ldap/l10n/az.php index 5e66b2e5885547ca48a4db79a50f5c3059ff66c4..6d3e01b8a8ee2e780dcec4c782bd8f34761456e7 100644 --- a/apps/user_ldap/l10n/az.php +++ b/apps/user_ldap/l10n/az.php @@ -14,6 +14,7 @@ $TRANSLATIONS = array( "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Save" => "Saxlamaq", +"Help" => "Kömək", "Host" => "Şəbəkədə ünvan", "Password" => "Şifrə" ); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 63f1df3e054003dc0c33cc98e7203fd610dda4fe..8cabd10a5d2dc395bb42936e81f517efe8c40732 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,9 +1,11 @@ "মুছার আদেশ ব্যার্থ হলো", +"Success" => "সাফল্য", "Error" => "সমস্যা", "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), +"Server" => "সার্ভার", "Group Filter" => "গোষ্ঠী ছাঁকনী", "Save" => "সংরক্ষণ", "Help" => "সহায়িকা", @@ -15,6 +17,9 @@ $TRANSLATIONS = array( "Password" => "কূটশব্দ", "For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"Back" => "পেছনে যাও", +"Continue" => "চালিয়ে যাও", +"Expert" => "দক্ষ", "Advanced" => "সুচারু", "Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", "in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 3be197a1b26897d32ed8c5f62a440f2a875be8c3..e3b76799fb117fcbd6e4eea8f782745211756e24 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -17,9 +17,9 @@ $TRANSLATIONS = array( "mappings cleared" => "mapování zrušeno", "Success" => "Úspěch", "Error" => "Chyba", -"Please specify a Base DN" => "Uveď prosím základní DN", -"Could not determine Base DN" => "Nelze určit základní DN", -"Please specify the port" => "Prosím zadej port", +"Please specify a Base DN" => "Uveďte prosím Base DN", +"Could not determine Base DN" => "Nelze určit Base DN", +"Please specify the port" => "Prosím zadejte port", "Configuration OK" => "Konfigurace v pořádku", "Configuration incorrect" => "Nesprávná konfigurace", "Configuration incomplete" => "Nekompletní konfigurace", @@ -103,6 +103,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Asociace člena skupiny", "Nested Groups" => "Vnořené skupiny", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)", +"Paging chunksize" => "Velikost bloku stránkování", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Velikost bloku použitá pro stránkování vyhledávání v LDAP, které může vracet objemné výsledky jako třeba výčet uživatelů či skupin. (Nastavení na 0 zakáže stránkovaná vyhledávání pro tyto situace.)", "Special Attributes" => "Speciální atributy", "Quota Field" => "Pole pro kvótu", "Quota Default" => "Výchozí kvóta", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 240051c7dc067599b6d3ed98aab28acdc6665de6..af7100da1a9801f2bb26e658109b57006bd40927 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -71,7 +71,7 @@ $TRANSLATIONS = array( "users found" => "felhasználó van", "Back" => "Vissza", "Continue" => "Folytatás", -"Expert" => "Gyakorlott", +"Expert" => "Profi", "Advanced" => "Haladó", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!", diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index eb2a1ab02defc950ad9083d1573d556c92e6dc9f..dceb2206dbe02bf69c8dad523f52322a91e2ff94 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -25,6 +25,7 @@ namespace OCA\user_ldap\lib; class Wizard extends LDAPUtility { static protected $l; + protected $access; protected $cr; protected $configuration; protected $result; @@ -48,12 +49,13 @@ class Wizard extends LDAPUtility { * @param Configuration $configuration an instance of Configuration * @param ILDAPWrapper $ldap an instance of ILDAPWrapper */ - public function __construct(Configuration $configuration, ILDAPWrapper $ldap) { + public function __construct(Configuration $configuration, ILDAPWrapper $ldap, Access $access) { parent::__construct($ldap); $this->configuration = $configuration; if(is_null(Wizard::$l)) { - Wizard::$l = \OC_L10N::get('user_ldap'); + Wizard::$l = \OC::$server->getL10N('user_ldap'); } + $this->access = $access; $this->result = new WizardResult; } @@ -78,11 +80,10 @@ class Wizard extends LDAPUtility { throw new \Exception('Requirements not met', 400); } - $ldapAccess = $this->getAccess(); if($type === 'groups') { - $result = $ldapAccess->countGroups($filter); + $result = $this->access->countGroups($filter); } else if($type === 'users') { - $result = $ldapAccess->countUsers($filter); + $result = $this->access->countUsers($filter); } else { throw new \Exception('internal error: invald object type', 500); } @@ -128,6 +129,77 @@ class Wizard extends LDAPUtility { return $this->result; } + /** + * counts users with a specified attribute + * @param string $attr + * @return int|bool + */ + public function countUsersWithAttribute($attr) { + if(!$this->checkRequirements(array('ldapHost', + 'ldapPort', + 'ldapBase', + 'ldapUserFilter', + ))) { + return false; + } + + $filter = $this->access->combineFilterWithAnd(array( + $this->configuration->ldapUserFilter, + $attr . '=*' + )); + + return $this->access->countUsers($filter); + } + + /** + * detects the most often used email attribute for users applying to the + * user list filter. If a setting is already present that returns at least + * one hit, the detection will be canceled. + * @return WizardResult|bool + */ + public function detectEmailAttribute() { + if(!$this->checkRequirements(array('ldapHost', + 'ldapPort', + 'ldapBase', + 'ldapUserFilter', + ))) { + return false; + } + + $attr = $this->configuration->ldapEmailAttribute; + if(!empty($attr)) { + $count = intval($this->countUsersWithAttribute($attr)); + if($count > 0) { + return false; + } + $writeLog = true; + } else { + $writeLog = false; + } + + $emailAttributes = array('mail', 'mailPrimaryAddress'); + $winner = ''; + $maxUsers = 0; + foreach($emailAttributes as $attr) { + $count = $this->countUsersWithAttribute($attr); + if($count > $maxUsers) { + $maxUsers = $count; + $winner = $attr; + } + } + + if($winner !== '') { + $this->result->addChange('ldap_email_attr', $winner); + if($writeLog) { + \OCP\Util::writeLog('user_ldap', 'The mail attribute has ' . + 'automatically been reset, because the original value ' . + 'did not return any results.', \OCP\Util::INFO); + } + } + + return $this->result; + } + /** * @return WizardResult * @throws \Exception @@ -289,7 +361,6 @@ class Wizard extends LDAPUtility { */ public function fetchGroups($dbKey, $confKey) { $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', 'groupOfNames'); - $ldapAccess = $this->getAccess(); $filterParts = array(); foreach($obclasses as $obclass) { @@ -298,15 +369,15 @@ class Wizard extends LDAPUtility { //we filter for everything //- that looks like a group and //- has the group display name set - $filter = $ldapAccess->combineFilterWithOr($filterParts); - $filter = $ldapAccess->combineFilterWithAnd(array($filter, 'cn=*')); + $filter = $this->access->combineFilterWithOr($filterParts); + $filter = $this->access->combineFilterWithAnd(array($filter, 'cn=*')); $groupNames = array(); $groupEntries = array(); $limit = 400; $offset = 0; do { - $result = $ldapAccess->searchGroups($filter, array('cn','dn'), $limit, $offset); + $result = $this->access->searchGroups($filter, array('cn'), $limit, $offset); foreach($result as $item) { $groupNames[] = $item['cn']; $groupEntries[] = $item; @@ -994,6 +1065,7 @@ class Wizard extends LDAPUtility { if(!$this->ldap->isResource($entry)) { continue 2; } + $rr = $entry; //will be expected by nextEntry next round $attributes = $this->ldap->getAttributes($cr, $entry); $dn = $this->ldap->getDN($cr, $entry); if($dn === false || in_array($dn, $dnRead)) { @@ -1007,7 +1079,6 @@ class Wizard extends LDAPUtility { $foundItems = array_merge($foundItems, $newItems); $this->resultCache[$dn][$attr] = $newItems; $dnRead[] = $dn; - $rr = $entry; //will be expected by nextEntry next round } while(($state === self::LRESULT_PROCESSED_SKIP || $this->ldap->isResource($entry)) && ($dnReadLimit === 0 || $dnReadCount < $dnReadLimit)); @@ -1104,27 +1175,6 @@ class Wizard extends LDAPUtility { } } - /** - * creates and returns an Access instance - * @return \OCA\user_ldap\lib\Access - */ - private function getAccess() { - $con = new Connection($this->ldap, '', null); - $con->setConfiguration($this->configuration->getConfiguration()); - $con->ldapConfigurationActive = true; - $con->setIgnoreValidation(true); - - $userManager = new user\Manager( - \OC::$server->getConfig(), - new FilesystemHelper(), - new LogWrapper(), - \OC::$server->getAvatarManager(), - new \OCP\Image()); - - $ldapAccess = new Access($con, $this->ldap, $userManager); - return $ldapAccess; - } - /** * @return bool|mixed */ diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index fcde5df37168a299d66329dde289f428fabeb251..e7cdd0d926a338f4826f2bc07624fb5fc4a096e9 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -46,7 +46,7 @@ $wControls = $wControls->fetchPage(); $sControls = new OCP\Template('user_ldap', 'part.settingcontrols'); $sControls = $sControls->fetchPage(); -$l = \OC_L10N::get('user_ldap'); +$l = \OC::$server->getL10N('user_ldap'); $wizTabs = array(); $wizTabs[] = array('tpl' => 'part.wizard-server', 'cap' => $l->t('Server')); diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index ff5ee010b716fa0cbd474f2c6ff4ee22d6236233..1f420f9ee8a7c59f815b17e8a311f7307fd24260 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -43,16 +43,29 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { } private function getWizardAndMocks() { - static $conMethods; - - if(is_null($conMethods)) { - $conMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + static $confMethods; + static $connMethods; + static $accMethods; + + if(is_null($confMethods)) { + $confMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + $connMethods = get_class_methods('\OCA\user_ldap\lib\Connection'); + $accMethods = get_class_methods('\OCA\user_ldap\lib\Access'); } $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); $conf = $this->getMock('\OCA\user_ldap\lib\Configuration', - $conMethods, + $confMethods, array($lw, null, null)); - return array(new Wizard($conf, $lw), $conf, $lw); + + $connector = $this->getMock('\OCA\user_ldap\lib\Connection', + $connMethods, array($lw, null, null)); + $um = $this->getMockBuilder('\OCA\user_ldap\lib\user\Manager') + ->disableOriginalConstructor() + ->getMock(); + $access = $this->getMock('\OCA\user_ldap\lib\Access', + $accMethods, array($connector, $lw, $um)); + + return array(new Wizard($conf, $lw, $access), $conf, $lw, $access); } private function prepareLdapWrapperForConnections(&$ldap) { @@ -207,4 +220,220 @@ class Test_Wizard extends \PHPUnit_Framework_TestCase { unset($uidnumber); } + public function testDetectEmailAttributeAlreadySet() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->once()) + ->method('countUsers') + ->will($this->returnValue(42)); + + $wizard->detectEmailAttribute(); + } + + public function testDetectEmailAttributeOverrideSet() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(3)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(3)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 3; + } else if($filter === 'mailPrimaryAddress') { + return 17; + } + var_dump($filter); + })); + + $result = $wizard->detectEmailAttribute()->getResultArray(); + $this->assertSame('mailPrimaryAddress', + $result['changes']['ldap_email_attr']); + } + + public function testDetectEmailAttributeFind() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return ''; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(2)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(2)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 3; + } else if($filter === 'mailPrimaryAddress') { + return 17; + } + var_dump($filter); + })); + + $result = $wizard->detectEmailAttribute()->getResultArray(); + $this->assertSame('mailPrimaryAddress', + $result['changes']['ldap_email_attr']); + } + + public function testDetectEmailAttributeFindNothing() { + list($wizard, $configuration, $ldap, $access) + = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function ($name) { + if($name === 'ldapEmailAttribute') { + return 'myEmailAttribute'; + } else { + //for requirement checks + return 'let me pass'; + } + })); + + $access->expects($this->exactly(3)) + ->method('combineFilterWithAnd') + ->will($this->returnCallback(function ($filterParts) { + return str_replace('=*', '', array_pop($filterParts)); + })); + + $access->expects($this->exactly(3)) + ->method('countUsers') + ->will($this->returnCallback(function ($filter) { + if($filter === 'myEmailAttribute') { + return 0; + } else if($filter === 'mail') { + return 0; + } else if($filter === 'mailPrimaryAddress') { + return 0; + } + var_dump($filter); + })); + + $result = $wizard->detectEmailAttribute(); + $this->assertSame(false, $result->hasChanges()); + } + + public function testCumulativeSearchOnAttributeSkipReadDN() { + // tests that there is no infinite loop, when skipping already processed + // DNs (they can be returned multiple times for multiple filters ) + list($wizard, $configuration, $ldap) = $this->getWizardAndMocks(); + + $configuration->expects($this->any()) + ->method('__get') + ->will($this->returnCallback(function($name) { + if($name === 'ldapBase') { + return array('base'); + } + return null; + })); + + $this->prepareLdapWrapperForConnections($ldap); + + $ldap->expects($this->any()) + ->method('isResource') + ->will($this->returnCallback(function($res) { + return (bool)$res; + })); + + $ldap->expects($this->any()) + ->method('search') + //dummy value, usually invalid + ->will($this->returnValue(true)); + + $ldap->expects($this->any()) + ->method('countEntries') + //an is_resource check will follow, so we need to return a dummy resource + ->will($this->returnValue(7)); + + //5 DNs per filter means 2x firstEntry and 8x nextEntry + $ldap->expects($this->any()) + ->method('firstEntry') + //dummy value, usually invalid + ->will($this->returnValue(1)); + + global $mark; + $mark = false; + // entries return order: 1, 2, 3, 4, 4, 5, 6 + $ldap->expects($this->any()) + ->method('nextEntry') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $prev){ + $current = $prev + 1; + if($current === 7) { + return false; + } + global $mark; + if($prev === 4 && !$mark) { + $mark = true; + return 4; + } + return $current; + })); + + $ldap->expects($this->any()) + ->method('getAttributes') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $entry) { + return array('cn' => array($entry), 'count' => 1); + })); + + $ldap->expects($this->any()) + ->method('getDN') + //dummy value, usually invalid + ->will($this->returnCallback(function($a, $b) { + return $b; + })); + + # The following expectations are the real test # + $filters = array('f1', 'f2', '*'); + $resultArray = $wizard->cumulativeSearchOnAttribute($filters, 'cn', 0); + $this->assertSame(6, count($resultArray)); + unset($mark); + } + } diff --git a/apps/user_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php index 354df7c32d975d948bf802f82e85dda06d14aa56..30ca2cdfa0666880169c00efbfb7a99f376de07d 100644 --- a/apps/user_webdavauth/l10n/bn_BD.php +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -1,5 +1,6 @@ "ঠিকানা", "Save" => "সংরক্ষণ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/config/config.sample.php b/config/config.sample.php index 02dbb1fcf75611f8e214089df69cb4fe69363a4b..71105a8b10d85b4259396394f2bed6bbc50cae21 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -65,6 +65,12 @@ $CONFIG = array( /* List of trusted domains, to prevent host header poisoning ownCloud is only using these Host headers */ 'trusted_domains' => array('demo.owncloud.org', 'otherdomain.owncloud.org:8080'), +/* List of trusted proxy servers */ +'trusted_proxies' => array('203.0.113.45', '198.51.100.128'), + +/* Headers that should be trusted as client IP address in combination with `trusted_proxies` */ +'forwarded_for_headers' => array('HTTP_X_FORWARDED', 'HTTP_FORWARDED_FOR'), + /* Theme to use for ownCloud */ "theme" => "", diff --git a/core/ajax/share.php b/core/ajax/share.php index 451c761c2cde0b5db8e21ade31d67f39e903e1a2..c6da79a8a42599b8b91b2ecaa4450eb810760be0 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -90,7 +90,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo } break; case 'informRecipients': - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); $shareType = (int) $_POST['shareType']; $itemType = $_POST['itemType']; $itemSource = $_POST['itemSource']; @@ -153,7 +153,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if(empty($result)) { \OCP\JSON::success(); } else { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OCP\JSON::error(array( 'data' => array( 'message' => $l->t("Couldn't send mail to following users: %s ", @@ -287,7 +287,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo $count = 0; // enable l10n support - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); foreach ($groups as $group) { if ($count < 15) { diff --git a/core/ajax/translations.php b/core/ajax/translations.php index e829453dbcc59768669c786336f0e32fd828c2b1..c296cea572a3dbaa964ca4a2453294748aaf3808 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -25,6 +25,6 @@ $app = isset($_POST["app"]) ? $_POST["app"] : ""; $app = OC_App::cleanAppId($app); -$l = OC_L10N::get( $app ); +$l = \OC::$server->getL10N($app); OC_JSON::success(array('data' => $l->getTranslations(), 'plural_form' => $l->getPluralFormString())); diff --git a/core/lostpassword/application.php b/core/application.php similarity index 78% rename from core/lostpassword/application.php rename to core/application.php index ba2f3fc633bacd82207fdfa996866919abdd7a5e..3380184775831cd62c5a56125f7651188da74a36 100644 --- a/core/lostpassword/application.php +++ b/core/application.php @@ -8,10 +8,11 @@ * See the COPYING-README file. */ -namespace OC\Core\LostPassword; +namespace OC\Core; use \OCP\AppFramework\App; use OC\Core\LostPassword\Controller\LostController; +use OC\Core\User\UserController; class Application extends App { @@ -38,6 +39,14 @@ class Application extends App { \OC_App::isEnabled('files_encryption') ); }); + $container->registerService('UserController', function($c) { + return new UserController( + $c->query('AppName'), + $c->query('Request'), + $c->query('ServerContainer')->getUserManager(), + new \OC_Defaults() + ); + }); } diff --git a/core/css/icons.css b/core/css/icons.css index b3a9454b565880ef941e439f89c2d66517289f20..095c29b3121dbcd48ce0bbd44950ca33ba169875 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -1,6 +1,8 @@ [class^="icon-"], [class*=" icon-"] { background-repeat: no-repeat; background-position: center; + min-width: 16px; + min-height: 16px; } diff --git a/core/css/styles.css b/core/css/styles.css index 292fb83a056c419d35586796f79680deb5ce735f..2f8f9612f7827d79f3e305e0c119e8630830355c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -75,6 +75,7 @@ input[type="number"], input[type="email"], input[type="url"], input[type="time"], +input[type="date"], textarea, select, button, .button, @@ -301,6 +302,10 @@ input[type="submit"].enabled { -moz-box-sizing:border-box; box-sizing:border-box; } +/* allow horizontal scrollbar for personal and admin settings */ +#body-settings:not(.snapjs-left) .app-settings { + overflow-x: auto; +} #emptycontent { font-size: 16px; @@ -615,6 +620,10 @@ label.infield { color: black !important; } +.warning-input { + border-color: #cc3333 !important; +} + /* Fixes for log in page, TODO should be removed some time */ #body-login .update, #body-login .error { @@ -731,9 +740,16 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono font-weight: normal; white-space: nowrap; border-bottom-left-radius: 3px; - border-top-left-radius: 3px; } + border-top-left-radius: 3px; + min-width: 1%; + max-width: 100%; +} #quotatext {padding:.6em 1em;} +#quota div.quota-warning { + background-color: #fc4; +} + .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } diff --git a/core/js/config.php b/core/js/config.php index b61694522db2b7fbe8aa757b67132438a30128b7..6994f2ed8a210065ebba5e9614737766f0e52ff2 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -14,7 +14,7 @@ header("Cache-Control: no-cache, must-revalidate"); header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Enable l10n support -$l = OC_L10N::get('core'); +$l = \OC::$server->getL10N('core'); // Enable OC_Defaults support $defaults = new OC_Defaults(); diff --git a/core/js/core.json b/core/js/core.json index 4815116c338035e854f5fe41cfa667e49c147899..caff2b05252f5c18b0ccd12484b075744c5ffeea 100644 --- a/core/js/core.json +++ b/core/js/core.json @@ -18,6 +18,7 @@ "eventsource.js", "config.js", "multiselect.js", - "oc-requesttoken.js" + "oc-requesttoken.js", + "moment.js" ] } diff --git a/core/js/js.js b/core/js/js.js index 60f9cc11a581293dcabbfd4748142419fa8de84e..9a60b0aad692bb2743200e382145a67acc0ad909 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -234,6 +234,7 @@ var OC={ */ generateUrl: function(url, params) { var _build = function (text, vars) { + var vars = vars || []; return text.replace(/{([^{}]*)}/g, function (a, b) { var r = vars[b]; @@ -390,11 +391,6 @@ var OC={ } }, 500), dialogs:OCdialogs, - mtime2date:function(mtime) { - mtime = parseInt(mtime,10); - var date = new Date(1000*mtime); - return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes(); - }, /** * Parses a URL query string into a JS map @@ -1242,14 +1238,11 @@ function humanFileSize(size, skipSmallSizes) { /** * Format an UNIX timestamp to a human understandable format - * @param {number} date UNIX timestamp + * @param {number} timestamp UNIX timestamp * @return {string} Human readable format */ -function formatDate(date){ - if(typeof date=='number'){ - date=new Date(date); - } - return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes(); +function formatDate(timestamp){ + return OC.Util.formatDate(timestamp); } // @@ -1270,21 +1263,11 @@ function getURLParameter(name) { * @param {number} timestamp A Unix timestamp */ function relative_modified_date(timestamp) { - var timeDiff = Math.round((new Date()).getTime() / 1000) - timestamp; - var diffMinutes = Math.round(timeDiff/60); - var diffHours = Math.round(diffMinutes/60); - var diffDays = Math.round(diffHours/24); - var diffMonths = Math.round(diffDays/31); - if(timeDiff < 60) { return t('core','seconds ago'); } - else if(timeDiff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffMinutes); } - else if(timeDiff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffHours); } - else if(timeDiff < 86400) { return t('core','today'); } - else if(timeDiff < 172800) { return t('core','yesterday'); } - else if(timeDiff < 2678400) { return n('core', '%n day ago', '%n days ago', diffDays); } - else if(timeDiff < 5184000) { return t('core','last month'); } - else if(timeDiff < 31556926) { return n('core', '%n month ago', '%n months ago', diffMonths); } - else if(timeDiff < 63113852) { return t('core','last year'); } - else { return t('core','years ago'); } + /* + Were multiplying by 1000 to bring the timestamp back to its original value + per https://github.com/owncloud/core/pull/10647#discussion_r16790315 + */ + return OC.Util.relativeModifiedDate(timestamp * 1000); } /** @@ -1293,7 +1276,24 @@ function relative_modified_date(timestamp) { OC.Util = { // TODO: remove original functions from global namespace humanFileSize: humanFileSize, - formatDate: formatDate, + + /** + * @param timestamp + * @param format + * @returns {string} timestamp formatted as requested + */ + formatDate: function (timestamp, format) { + format = format || "MMMM D, YYYY h:mm"; + return moment(timestamp).format(format); + }, + + /** + * @param timestamp + * @returns {string} human readable difference from now + */ + relativeModifiedDate: function (timestamp) { + return moment(timestamp).fromNow(); + }, /** * Returns whether the browser supports SVG * @return {boolean} true if the browser supports SVG, false otherwise diff --git a/core/js/moment.js b/core/js/moment.js new file mode 100644 index 0000000000000000000000000000000000000000..6f1dcc5dfabbb3f130eda1c9771fd828b1565d09 --- /dev/null +++ b/core/js/moment.js @@ -0,0 +1,9083 @@ +//! moment.js +//! version : 2.8.2 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com + +(function (undefined) { + /************************************ + Constants + ************************************/ + + var moment, + VERSION = '2.8.2', + // the global-scope this is NOT the global object in Node.js + globalScope = typeof global !== 'undefined' ? global : this, + oldGlobalMoment, + round = Math.round, + hasOwnProperty = Object.prototype.hasOwnProperty, + i, + + YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, + + // internal storage for locale config files + locales = {}, + + // extra moment internal properties (plugins register props here) + momentProperties = [], + + // check for nodeJS + hasModule = (typeof module !== 'undefined' && module.exports), + + // ASP.NET json date format regex + aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, + aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, + + // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/, + + // format tokens + formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|X|zz?|ZZ?|.)/g, + localFormattingTokens = /(\[[^\[]*\])|(\\)?(LT|LL?L?L?|l{1,4})/g, + + // parsing token regexes + parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99 + parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999 + parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999 + parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999 + parseTokenDigits = /\d+/, // nonzero number of digits + parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic. + parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z + parseTokenT = /T/i, // T (ISO separator) + parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 + parseTokenOrdinal = /\d{1,2}/, + + //strict parsing regexes + parseTokenOneDigit = /\d/, // 0 - 9 + parseTokenTwoDigits = /\d\d/, // 00 - 99 + parseTokenThreeDigits = /\d{3}/, // 000 - 999 + parseTokenFourDigits = /\d{4}/, // 0000 - 9999 + parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999 + parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf + + // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/, + + isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', + + isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/], + ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/], + ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/], + ['GGGG-[W]WW', /\d{4}-W\d{2}/], + ['YYYY-DDD', /\d{4}-\d{3}/] + ], + + // iso time formats and regexes + isoTimes = [ + ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/], + ['HH:mm', /(T| )\d\d:\d\d/], + ['HH', /(T| )\d\d/] + ], + + // timezone chunker '+10:00' > ['10', '00'] or '-1530' > ['-15', '30'] + parseTimezoneChunker = /([\+\-]|\d\d)/gi, + + // getter and setter names + proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'), + unitMillisecondFactors = { + 'Milliseconds' : 1, + 'Seconds' : 1e3, + 'Minutes' : 6e4, + 'Hours' : 36e5, + 'Days' : 864e5, + 'Months' : 2592e6, + 'Years' : 31536e6 + }, + + unitAliases = { + ms : 'millisecond', + s : 'second', + m : 'minute', + h : 'hour', + d : 'day', + D : 'date', + w : 'week', + W : 'isoWeek', + M : 'month', + Q : 'quarter', + y : 'year', + DDD : 'dayOfYear', + e : 'weekday', + E : 'isoWeekday', + gg: 'weekYear', + GG: 'isoWeekYear' + }, + + camelFunctions = { + dayofyear : 'dayOfYear', + isoweekday : 'isoWeekday', + isoweek : 'isoWeek', + weekyear : 'weekYear', + isoweekyear : 'isoWeekYear' + }, + + // format function strings + formatFunctions = {}, + + // default relative time thresholds + relativeTimeThresholds = { + s: 45, // seconds to minute + m: 45, // minutes to hour + h: 22, // hours to day + d: 26, // days to month + M: 11 // months to year + }, + + // tokens to ordinalize and pad + ordinalizeTokens = 'DDD w W M D d'.split(' '), + paddedTokens = 'M D H h m s w W'.split(' '), + + formatTokenFunctions = { + M : function () { + return this.month() + 1; + }, + MMM : function (format) { + return this.localeData().monthsShort(this, format); + }, + MMMM : function (format) { + return this.localeData().months(this, format); + }, + D : function () { + return this.date(); + }, + DDD : function () { + return this.dayOfYear(); + }, + d : function () { + return this.day(); + }, + dd : function (format) { + return this.localeData().weekdaysMin(this, format); + }, + ddd : function (format) { + return this.localeData().weekdaysShort(this, format); + }, + dddd : function (format) { + return this.localeData().weekdays(this, format); + }, + w : function () { + return this.week(); + }, + W : function () { + return this.isoWeek(); + }, + YY : function () { + return leftZeroFill(this.year() % 100, 2); + }, + YYYY : function () { + return leftZeroFill(this.year(), 4); + }, + YYYYY : function () { + return leftZeroFill(this.year(), 5); + }, + YYYYYY : function () { + var y = this.year(), sign = y >= 0 ? '+' : '-'; + return sign + leftZeroFill(Math.abs(y), 6); + }, + gg : function () { + return leftZeroFill(this.weekYear() % 100, 2); + }, + gggg : function () { + return leftZeroFill(this.weekYear(), 4); + }, + ggggg : function () { + return leftZeroFill(this.weekYear(), 5); + }, + GG : function () { + return leftZeroFill(this.isoWeekYear() % 100, 2); + }, + GGGG : function () { + return leftZeroFill(this.isoWeekYear(), 4); + }, + GGGGG : function () { + return leftZeroFill(this.isoWeekYear(), 5); + }, + e : function () { + return this.weekday(); + }, + E : function () { + return this.isoWeekday(); + }, + a : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), true); + }, + A : function () { + return this.localeData().meridiem(this.hours(), this.minutes(), false); + }, + H : function () { + return this.hours(); + }, + h : function () { + return this.hours() % 12 || 12; + }, + m : function () { + return this.minutes(); + }, + s : function () { + return this.seconds(); + }, + S : function () { + return toInt(this.milliseconds() / 100); + }, + SS : function () { + return leftZeroFill(toInt(this.milliseconds() / 10), 2); + }, + SSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + SSSS : function () { + return leftZeroFill(this.milliseconds(), 3); + }, + Z : function () { + var a = -this.zone(), + b = '+'; + if (a < 0) { + a = -a; + b = '-'; + } + return b + leftZeroFill(toInt(a / 60), 2) + ':' + leftZeroFill(toInt(a) % 60, 2); + }, + ZZ : function () { + var a = -this.zone(), + b = '+'; + if (a < 0) { + a = -a; + b = '-'; + } + return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); + }, + z : function () { + return this.zoneAbbr(); + }, + zz : function () { + return this.zoneName(); + }, + X : function () { + return this.unix(); + }, + Q : function () { + return this.quarter(); + } + }, + + deprecations = {}, + + lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; + + // Pick the first defined of two or three arguments. dfl comes from + // default. + function dfl(a, b, c) { + switch (arguments.length) { + case 2: return a != null ? a : b; + case 3: return a != null ? a : b != null ? b : c; + default: throw new Error('Implement me'); + } + } + + function hasOwnProp(a, b) { + return hasOwnProperty.call(a, b); + } + + function defaultParsingFlags() { + // We need to deep clone this object, and es5 standard is not very + // helpful. + return { + empty : false, + unusedTokens : [], + unusedInput : [], + overflow : -2, + charsLeftOver : 0, + nullInput : false, + invalidMonth : null, + invalidFormat : false, + userInvalidated : false, + iso: false + }; + } + + function printMsg(msg) { + if (moment.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (firstTime) { + printMsg(msg); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } + + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + printMsg(msg); + deprecations[name] = true; + } + } + + function padToken(func, count) { + return function (a) { + return leftZeroFill(func.call(this, a), count); + }; + } + function ordinalizeToken(func, period) { + return function (a) { + return this.localeData().ordinal(func.call(this, a), period); + }; + } + + while (ordinalizeTokens.length) { + i = ordinalizeTokens.pop(); + formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); + } + while (paddedTokens.length) { + i = paddedTokens.pop(); + formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); + } + formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); + + + /************************************ + Constructors + ************************************/ + + function Locale() { + } + + // Moment prototype object + function Moment(config, skipOverflow) { + if (skipOverflow !== false) { + checkOverflow(config); + } + copyConfig(this, config); + this._d = new Date(+config._d); + } + + // Duration Constructor + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 36e5; // 1000 * 60 * 60 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._locale = moment.localeData(); + + this._bubble(); + } + + /************************************ + Helpers + ************************************/ + + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function copyConfig(to, from) { + var i, prop, val; + + if (typeof from._isAMomentObject !== 'undefined') { + to._isAMomentObject = from._isAMomentObject; + } + if (typeof from._i !== 'undefined') { + to._i = from._i; + } + if (typeof from._f !== 'undefined') { + to._f = from._f; + } + if (typeof from._l !== 'undefined') { + to._l = from._l; + } + if (typeof from._strict !== 'undefined') { + to._strict = from._strict; + } + if (typeof from._tzm !== 'undefined') { + to._tzm = from._tzm; + } + if (typeof from._isUTC !== 'undefined') { + to._isUTC = from._isUTC; + } + if (typeof from._offset !== 'undefined') { + to._offset = from._offset; + } + if (typeof from._pf !== 'undefined') { + to._pf = from._pf; + } + if (typeof from._locale !== 'undefined') { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i in momentProperties) { + prop = momentProperties[i]; + val = from[prop]; + if (typeof val !== 'undefined') { + to[prop] = val; + } + } + } + + return to; + } + + function absRound(number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } + + // left zero fill a number + // see http://jsperf.com/left-zero-filling for performance comparison + function leftZeroFill(number, targetLength, forceSign) { + var output = '' + Math.abs(number), + sign = number >= 0; + + while (output.length < targetLength) { + output = '0' + output; + } + return (sign ? (forceSign ? '+' : '') : '-') + output; + } + + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; + } + + function momentsDifference(base, other) { + var res; + other = makeAs(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } + + // TODO: remove 'name' arg after deprecation is removed + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period).'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = moment.duration(val, period); + addOrSubtractDurationFromMoment(this, dur, direction); + return this; + }; + } + + function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; + + if (milliseconds) { + mom._d.setTime(+mom._d + milliseconds * isAdding); + } + if (days) { + rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); + } + if (months) { + rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); + } + if (updateOffset) { + moment.updateOffset(mom, days || months); + } + } + + // check if is an array + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } + + function isDate(input) { + return Object.prototype.toString.call(input) === '[object Date]' || + input instanceof Date; + } + + // compare two arrays, return the number of differences + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } + } + return diffs + lengthDiff; + } + + function normalizeUnits(units) { + if (units) { + var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); + units = unitAliases[units] || camelFunctions[lowered] || lowered; + } + return units; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + function makeList(field) { + var count, setter; + + if (field.indexOf('week') === 0) { + count = 7; + setter = 'day'; + } + else if (field.indexOf('month') === 0) { + count = 12; + setter = 'month'; + } + else { + return; + } + + moment[field] = function (format, index) { + var i, getter, + method = moment._locale[field], + results = []; + + if (typeof format === 'number') { + index = format; + format = undefined; + } + + getter = function (i) { + var m = moment().utc().set(setter, i); + return method.call(moment._locale, m, format || ''); + }; + + if (index != null) { + return getter(index); + } + else { + for (i = 0; i < count; i++) { + results.push(getter(i)); + } + return results; + } + }; + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + if (coercedNumber >= 0) { + value = Math.floor(coercedNumber); + } else { + value = Math.ceil(coercedNumber); + } + } + + return value; + } + + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } + + function weeksInYear(year, dow, doy) { + return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; + } + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + + function checkOverflow(m) { + var overflow; + if (m._a && m._pf.overflow === -2) { + overflow = + m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : + m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : + m._a[HOUR] < 0 || m._a[HOUR] > 23 ? HOUR : + m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : + m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : + m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : + -1; + + if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + m._pf.overflow = overflow; + } + } + + function isValid(m) { + if (m._isValid == null) { + m._isValid = !isNaN(m._d.getTime()) && + m._pf.overflow < 0 && + !m._pf.empty && + !m._pf.invalidMonth && + !m._pf.nullInput && + !m._pf.invalidFormat && + !m._pf.userInvalidated; + + if (m._strict) { + m._isValid = m._isValid && + m._pf.charsLeftOver === 0 && + m._pf.unusedTokens.length === 0; + } + } + return m._isValid; + } + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } + + // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return null; + } + + function loadLocale(name) { + var oldLocale = null; + if (!locales[name] && hasModule) { + try { + oldLocale = moment.locale(); + require('./locale/' + name); + // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales + moment.locale(oldLocale); + } catch (e) { } + } + return locales[name]; + } + + // Return a moment from input, that is local/utc/zone equivalent to model. + function makeAs(input, model) { + return model._isUTC ? moment(input).zone(model._offset || 0) : + moment(input).local(); + } + + /************************************ + Locale + ************************************/ + + + extend(Locale.prototype, { + + set : function (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + }, + + _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + months : function (m) { + return this._months[m.month()]; + }, + + _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + monthsShort : function (m) { + return this._monthsShort[m.month()]; + }, + + monthsParse : function (monthName) { + var i, mom, regex; + + if (!this._monthsParse) { + this._monthsParse = []; + } + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + if (!this._monthsParse[i]) { + mom = moment.utc([2000, i]); + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._monthsParse[i].test(monthName)) { + return i; + } + } + }, + + _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdays : function (m) { + return this._weekdays[m.day()]; + }, + + _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysShort : function (m) { + return this._weekdaysShort[m.day()]; + }, + + _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + weekdaysMin : function (m) { + return this._weekdaysMin[m.day()]; + }, + + weekdaysParse : function (weekdayName) { + var i, mom, regex; + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + if (!this._weekdaysParse[i]) { + mom = moment([2000, 1]).day(i); + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + }, + + _longDateFormat : { + LT : 'h:mm A', + L : 'MM/DD/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY LT', + LLLL : 'dddd, MMMM D, YYYY LT' + }, + longDateFormat : function (key) { + var output = this._longDateFormat[key]; + if (!output && this._longDateFormat[key.toUpperCase()]) { + output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + this._longDateFormat[key] = output; + } + return output; + }, + + isPM : function (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); + }, + + _meridiemParse : /[ap]\.?m?\.?/i, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + }, + + _calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.apply(mom) : output; + }, + + _relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + + relativeTime : function (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (typeof output === 'function') ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); + }, + + pastFuture : function (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + }, + + ordinal : function (number) { + return this._ordinal.replace('%d', number); + }, + _ordinal : '%d', + + preparse : function (string) { + return string; + }, + + postformat : function (string) { + return string; + }, + + week : function (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + }, + + _week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + }, + + _invalidDate: 'Invalid date', + invalidDate: function () { + return this._invalidDate; + } + }); + + /************************************ + Formatting + ************************************/ + + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = ''; + for (i = 0; i < length; i++) { + output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; + } + return output; + }; + } + + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + + if (!formatFunctions[format]) { + formatFunctions[format] = makeFormatFunction(format); + } + + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + + /************************************ + Parsing + ************************************/ + + + // get the regex to find the next token + function getParseRegexForToken(token, config) { + var a, strict = config._strict; + switch (token) { + case 'Q': + return parseTokenOneDigit; + case 'DDDD': + return parseTokenThreeDigits; + case 'YYYY': + case 'GGGG': + case 'gggg': + return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; + case 'Y': + case 'G': + case 'g': + return parseTokenSignedNumber; + case 'YYYYYY': + case 'YYYYY': + case 'GGGGG': + case 'ggggg': + return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; + case 'S': + if (strict) { + return parseTokenOneDigit; + } + /* falls through */ + case 'SS': + if (strict) { + return parseTokenTwoDigits; + } + /* falls through */ + case 'SSS': + if (strict) { + return parseTokenThreeDigits; + } + /* falls through */ + case 'DDD': + return parseTokenOneToThreeDigits; + case 'MMM': + case 'MMMM': + case 'dd': + case 'ddd': + case 'dddd': + return parseTokenWord; + case 'a': + case 'A': + return config._locale._meridiemParse; + case 'X': + return parseTokenTimestampMs; + case 'Z': + case 'ZZ': + return parseTokenTimezone; + case 'T': + return parseTokenT; + case 'SSSS': + return parseTokenDigits; + case 'MM': + case 'DD': + case 'YY': + case 'GG': + case 'gg': + case 'HH': + case 'hh': + case 'mm': + case 'ss': + case 'ww': + case 'WW': + return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; + case 'M': + case 'D': + case 'd': + case 'H': + case 'h': + case 'm': + case 's': + case 'w': + case 'W': + case 'e': + case 'E': + return parseTokenOneOrTwoDigits; + case 'Do': + return parseTokenOrdinal; + default : + a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), 'i')); + return a; + } + } + + function timezoneMinutesFromString(string) { + string = string || ''; + var possibleTzMatches = (string.match(parseTokenTimezone) || []), + tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], + parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], + minutes = +(parts[1] * 60) + toInt(parts[2]); + + return parts[0] === '+' ? -minutes : minutes; + } + + // function to convert string input to date + function addTimeToArrayFromToken(token, input, config) { + var a, datePartArray = config._a; + + switch (token) { + // QUARTER + case 'Q': + if (input != null) { + datePartArray[MONTH] = (toInt(input) - 1) * 3; + } + break; + // MONTH + case 'M' : // fall through to MM + case 'MM' : + if (input != null) { + datePartArray[MONTH] = toInt(input) - 1; + } + break; + case 'MMM' : // fall through to MMMM + case 'MMMM' : + a = config._locale.monthsParse(input); + // if we didn't find a month name, mark the date as invalid. + if (a != null) { + datePartArray[MONTH] = a; + } else { + config._pf.invalidMonth = input; + } + break; + // DAY OF MONTH + case 'D' : // fall through to DD + case 'DD' : + if (input != null) { + datePartArray[DATE] = toInt(input); + } + break; + case 'Do' : + if (input != null) { + datePartArray[DATE] = toInt(parseInt(input, 10)); + } + break; + // DAY OF YEAR + case 'DDD' : // fall through to DDDD + case 'DDDD' : + if (input != null) { + config._dayOfYear = toInt(input); + } + + break; + // YEAR + case 'YY' : + datePartArray[YEAR] = moment.parseTwoDigitYear(input); + break; + case 'YYYY' : + case 'YYYYY' : + case 'YYYYYY' : + datePartArray[YEAR] = toInt(input); + break; + // AM / PM + case 'a' : // fall through to A + case 'A' : + config._isPm = config._locale.isPM(input); + break; + // 24 HOUR + case 'H' : // fall through to hh + case 'HH' : // fall through to hh + case 'h' : // fall through to hh + case 'hh' : + datePartArray[HOUR] = toInt(input); + break; + // MINUTE + case 'm' : // fall through to mm + case 'mm' : + datePartArray[MINUTE] = toInt(input); + break; + // SECOND + case 's' : // fall through to ss + case 'ss' : + datePartArray[SECOND] = toInt(input); + break; + // MILLISECOND + case 'S' : + case 'SS' : + case 'SSS' : + case 'SSSS' : + datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); + break; + // UNIX TIMESTAMP WITH MS + case 'X': + config._d = new Date(parseFloat(input) * 1000); + break; + // TIMEZONE + case 'Z' : // fall through to ZZ + case 'ZZ' : + config._useUTC = true; + config._tzm = timezoneMinutesFromString(input); + break; + // WEEKDAY - human + case 'dd': + case 'ddd': + case 'dddd': + a = config._locale.weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (a != null) { + config._w = config._w || {}; + config._w['d'] = a; + } else { + config._pf.invalidWeekday = input; + } + break; + // WEEK, WEEK DAY - numeric + case 'w': + case 'ww': + case 'W': + case 'WW': + case 'd': + case 'e': + case 'E': + token = token.substr(0, 1); + /* falls through */ + case 'gggg': + case 'GGGG': + case 'GGGGG': + token = token.substr(0, 2); + if (input) { + config._w = config._w || {}; + config._w[token] = toInt(input); + } + break; + case 'gg': + case 'GG': + config._w = config._w || {}; + config._w[token] = moment.parseTwoDigitYear(input); + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); + week = dfl(w.W, 1); + weekday = dfl(w.E, 1); + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); + week = dfl(w.w, 1); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < dow) { + ++week; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + } else { + // default to begining of week + weekday = dow; + } + } + temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); + + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function dateFromConfig(config) { + var i, date, input = [], currentDate, yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse)) { + config._pf._overflowDayOfYear = true; + } + + date = makeUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); + // Apply timezone offset from input. The actual zone can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); + } + } + + function dateFromObject(config) { + var normalizedInput; + + if (config._d) { + return; + } + + normalizedInput = normalizeObjectUnits(config._i); + config._a = [ + normalizedInput.year, + normalizedInput.month, + normalizedInput.day, + normalizedInput.hour, + normalizedInput.minute, + normalizedInput.second, + normalizedInput.millisecond + ]; + + dateFromConfig(config); + } + + function currentDateArray(config) { + var now = new Date(); + if (config._useUTC) { + return [ + now.getUTCFullYear(), + now.getUTCMonth(), + now.getUTCDate() + ]; + } else { + return [now.getFullYear(), now.getMonth(), now.getDate()]; + } + } + + // date from string and format string + function makeDateFromStringAndFormat(config) { + if (config._f === moment.ISO_8601) { + parseISO(config); + return; + } + + config._a = []; + config._pf.empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + config._pf.unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + config._pf.empty = false; + } + else { + config._pf.unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + config._pf.unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + config._pf.charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + config._pf.unusedInput.push(string); + } + + // handle am pm + if (config._isPm && config._a[HOUR] < 12) { + config._a[HOUR] += 12; + } + // if is 12 am, change hours to 0 + if (config._isPm === false && config._a[HOUR] === 12) { + config._a[HOUR] = 0; + } + + dateFromConfig(config); + checkOverflow(config); + } + + function unescapeFormat(s) { + return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }); + } + + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function regexpEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + // date from string and array of format strings + function makeDateFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + if (config._f.length === 0) { + config._pf.invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + tempConfig._pf = defaultParsingFlags(); + tempConfig._f = config._f[i]; + makeDateFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += tempConfig._pf.charsLeftOver; + + //or tokens + currentScore += tempConfig._pf.unusedTokens.length * 10; + + tempConfig._pf.score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + // date from iso format + function parseISO(config) { + var i, l, + string = config._i, + match = isoRegex.exec(string); + + if (match) { + config._pf.iso = true; + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(string)) { + // match[5] should be 'T' or undefined + config._f = isoDates[i][0] + (match[6] || ' '); + break; + } + } + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(string)) { + config._f += isoTimes[i][0]; + break; + } + } + if (string.match(parseTokenTimezone)) { + config._f += 'Z'; + } + makeDateFromStringAndFormat(config); + } else { + config._isValid = false; + } + } + + // date from iso format or fallback + function makeDateFromString(config) { + parseISO(config); + if (config._isValid === false) { + delete config._isValid; + moment.createFromInputFallback(config); + } + } + + function makeDateFromInput(config) { + var input = config._i, matched; + if (input === undefined) { + config._d = new Date(); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if ((matched = aspNetJsonRegex.exec(input)) !== null) { + config._d = new Date(+matched[1]); + } else if (typeof input === 'string') { + makeDateFromString(config); + } else if (isArray(input)) { + config._a = input.slice(0); + dateFromConfig(config); + } else if (typeof(input) === 'object') { + dateFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + moment.createFromInputFallback(config); + } + } + + function makeDate(y, m, d, h, M, s, ms) { + //can't just apply() to create a date: + //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply + var date = new Date(y, m, d, h, M, s, ms); + + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } + + function makeUTCDate(y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } + + function parseWeekday(input, locale) { + if (typeof input === 'string') { + if (!isNaN(input)) { + input = parseInt(input, 10); + } + else { + input = locale.weekdaysParse(input); + if (typeof input !== 'number') { + return null; + } + } + } + return input; + } + + /************************************ + Relative Time + ************************************/ + + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime(posNegDuration, withoutSuffix, locale) { + var duration = moment.duration(posNegDuration).abs(), + seconds = round(duration.as('s')), + minutes = round(duration.as('m')), + hours = round(duration.as('h')), + days = round(duration.as('d')), + months = round(duration.as('M')), + years = round(duration.as('y')), + + args = seconds < relativeTimeThresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < relativeTimeThresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < relativeTimeThresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days < relativeTimeThresholds.d && ['dd', days] || + months === 1 && ['M'] || + months < relativeTimeThresholds.M && ['MM', months] || + years === 1 && ['y'] || ['yy', years]; + + args[2] = withoutSuffix; + args[3] = +posNegDuration > 0; + args[4] = locale; + return substituteTimeAgo.apply({}, args); + } + + + /************************************ + Week of Year + ************************************/ + + + // firstDayOfWeek 0 = sun, 6 = sat + // the day of the week that starts the week + // (usually sunday or monday) + // firstDayOfWeekOfYear 0 = sun, 6 = sat + // the first week is the week that contains the first + // of this day of the week + // (eg. ISO weeks use thursday (4)) + function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { + var end = firstDayOfWeekOfYear - firstDayOfWeek, + daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), + adjustedMoment; + + + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } + + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } + + adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; + } + + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; + + d = d === 0 ? 7 : d; + weekday = weekday != null ? weekday : firstDayOfWeek; + daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); + dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; + + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; + } + + /************************************ + Top Level Functions + ************************************/ + + function makeMoment(config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || moment.localeData(config._l); + + if (input === null || (format === undefined && input === '')) { + return moment.invalid({nullInput: true}); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (moment.isMoment(input)) { + return new Moment(input, true); + } else if (format) { + if (isArray(format)) { + makeDateFromStringAndArray(config); + } else { + makeDateFromStringAndFormat(config); + } + } else { + makeDateFromInput(config); + } + + return new Moment(config); + } + + moment = function (input, format, locale, strict) { + var c; + + if (typeof(locale) === 'boolean') { + strict = locale; + locale = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._i = input; + c._f = format; + c._l = locale; + c._strict = strict; + c._isUTC = false; + c._pf = defaultParsingFlags(); + + return makeMoment(c); + }; + + moment.suppressDeprecationWarnings = false; + + moment.createFromInputFallback = deprecate( + 'moment construction falls back to js Date. This is ' + + 'discouraged and will be removed in upcoming major ' + + 'release. Please refer to ' + + 'https://github.com/moment/moment/issues/1407 for more info.', + function (config) { + config._d = new Date(config._i); + } + ); + + // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return moment(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (moments[i][fn](res)) { + res = moments[i]; + } + } + return res; + } + + moment.min = function () { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); + }; + + moment.max = function () { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); + }; + + // creating with utc + moment.utc = function (input, format, locale, strict) { + var c; + + if (typeof(locale) === 'boolean') { + strict = locale; + locale = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c = {}; + c._isAMomentObject = true; + c._useUTC = true; + c._isUTC = true; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + c._pf = defaultParsingFlags(); + + return makeMoment(c).utc(); + }; + + // creating with unix timestamp (in seconds) + moment.unix = function (input) { + return moment(input * 1000); + }; + + // duration + moment.duration = function (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + parseIso, + diffRes; + + if (moment.isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (typeof input === 'number') { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(match[MILLISECOND]) * sign + }; + } else if (!!(match = isoDurationRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + parseIso = function (inp) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; + }; + duration = { + y: parseIso(match[2]), + M: parseIso(match[3]), + d: parseIso(match[4]), + h: parseIso(match[5]), + m: parseIso(match[6]), + s: parseIso(match[7]), + w: parseIso(match[8]) + }; + } else if (typeof duration === 'object' && + ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(moment(duration.from), moment(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (moment.isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + }; + + // version number + moment.version = VERSION; + + // default format + moment.defaultFormat = isoFormat; + + // constant that refers to the ISO standard + moment.ISO_8601 = function () {}; + + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + moment.momentProperties = momentProperties; + + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + moment.updateOffset = function () {}; + + // This function allows you to set a threshold for relative time strings + moment.relativeTimeThreshold = function (threshold, limit) { + if (relativeTimeThresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return relativeTimeThresholds[threshold]; + } + relativeTimeThresholds[threshold] = limit; + return true; + }; + + moment.lang = deprecate( + 'moment.lang is deprecated. Use moment.locale instead.', + function (key, value) { + return moment.locale(key, value); + } + ); + + // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + moment.locale = function (key, values) { + var data; + if (key) { + if (typeof(values) !== 'undefined') { + data = moment.defineLocale(key, values); + } + else { + data = moment.localeData(key); + } + + if (data) { + moment.duration._locale = moment._locale = data; + } + } + + return moment._locale._abbr; + }; + + moment.defineLocale = function (name, values) { + if (values !== null) { + values.abbr = name; + if (!locales[name]) { + locales[name] = new Locale(); + } + locales[name].set(values); + + // backwards compat for now: also set the locale + moment.locale(name); + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + }; + + moment.langData = deprecate( + 'moment.langData is deprecated. Use moment.localeData instead.', + function (key) { + return moment.localeData(key); + } + ); + + // returns locale data + moment.localeData = function (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return moment._locale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); + }; + + // compare moment object + moment.isMoment = function (obj) { + return obj instanceof Moment || + (obj != null && hasOwnProp(obj, '_isAMomentObject')); + }; + + // for typechecking Duration objects + moment.isDuration = function (obj) { + return obj instanceof Duration; + }; + + for (i = lists.length - 1; i >= 0; --i) { + makeList(lists[i]); + } + + moment.normalizeUnits = function (units) { + return normalizeUnits(units); + }; + + moment.invalid = function (flags) { + var m = moment.utc(NaN); + if (flags != null) { + extend(m._pf, flags); + } + else { + m._pf.userInvalidated = true; + } + + return m; + }; + + moment.parseZone = function () { + return moment.apply(null, arguments).parseZone(); + }; + + moment.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; + + /************************************ + Moment Prototype + ************************************/ + + + extend(moment.fn = Moment.prototype, { + + clone : function () { + return moment(this); + }, + + valueOf : function () { + return +this._d + ((this._offset || 0) * 60000); + }, + + unix : function () { + return Math.floor(+this / 1000); + }, + + toString : function () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + }, + + toDate : function () { + return this._offset ? new Date(+this) : this._d; + }, + + toISOString : function () { + var m = moment(this).utc(); + if (0 < m.year() && m.year() <= 9999) { + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } else { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + }, + + toArray : function () { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hours(), + m.minutes(), + m.seconds(), + m.milliseconds() + ]; + }, + + isValid : function () { + return isValid(this); + }, + + isDSTShifted : function () { + if (this._a) { + return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; + } + + return false; + }, + + parsingFlags : function () { + return extend({}, this._pf); + }, + + invalidAt: function () { + return this._pf.overflow; + }, + + utc : function (keepLocalTime) { + return this.zone(0, keepLocalTime); + }, + + local : function (keepLocalTime) { + if (this._isUTC) { + this.zone(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.add(this._d.getTimezoneOffset(), 'm'); + } + } + return this; + }, + + format : function (inputString) { + var output = formatMoment(this, inputString || moment.defaultFormat); + return this.localeData().postformat(output); + }, + + add : createAdder(1, 'add'), + + subtract : createAdder(-1, 'subtract'), + + diff : function (input, units, asFloat) { + var that = makeAs(input, this), + zoneDiff = (this.zone() - that.zone()) * 6e4, + diff, output; + + units = normalizeUnits(units); + + if (units === 'year' || units === 'month') { + // average number of days in the months in the given dates + diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 + // difference in months + output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); + // adjust by taking difference in days, average number of days + // and dst in the given months. + output += ((this - moment(this).startOf('month')) - + (that - moment(that).startOf('month'))) / diff; + // same as above but with zones, to negate all dst + output -= ((this.zone() - moment(this).startOf('month').zone()) - + (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff; + if (units === 'year') { + output = output / 12; + } + } else { + diff = (this - that); + output = units === 'second' ? diff / 1e3 : // 1000 + units === 'minute' ? diff / 6e4 : // 1000 * 60 + units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + diff; + } + return asFloat ? output : absRound(output); + }, + + from : function (time, withoutSuffix) { + return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + }, + + fromNow : function (withoutSuffix) { + return this.from(moment(), withoutSuffix); + }, + + calendar : function (time) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're zone'd or not. + var now = time || moment(), + sod = makeAs(now, this).startOf('day'), + diff = this.diff(sod, 'days', true), + format = diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; + return this.format(this.localeData().calendar(format, this)); + }, + + isLeapYear : function () { + return isLeapYear(this.year()); + }, + + isDST : function () { + return (this.zone() < this.clone().month(0).zone() || + this.zone() < this.clone().month(5).zone()); + }, + + day : function (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + }, + + month : makeAccessor('Month', true), + + startOf : function (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + /* falls through */ + } + + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } else if (units === 'isoWeek') { + this.isoWeekday(1); + } + + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } + + return this; + }, + + endOf: function (units) { + units = normalizeUnits(units); + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + }, + + isAfter: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) > +moment(input).startOf(units); + }, + + isBefore: function (input, units) { + units = typeof units !== 'undefined' ? units : 'millisecond'; + return +this.clone().startOf(units) < +moment(input).startOf(units); + }, + + isSame: function (input, units) { + units = units || 'ms'; + return +this.clone().startOf(units) === +makeAs(input, this).startOf(units); + }, + + min: deprecate( + 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other < this ? this : other; + } + ), + + max: deprecate( + 'moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548', + function (other) { + other = moment.apply(null, arguments); + return other > this ? this : other; + } + ), + + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[zone(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist int zone + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + zone : function (input, keepLocalTime) { + var offset = this._offset || 0, + localAdjust; + if (input != null) { + if (typeof input === 'string') { + input = timezoneMinutesFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = this._d.getTimezoneOffset(); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.subtract(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addOrSubtractDurationFromMoment(this, + moment.duration(offset - input, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + moment.updateOffset(this, true); + this._changeInProgress = null; + } + } + } else { + return this._isUTC ? offset : this._d.getTimezoneOffset(); + } + return this; + }, + + zoneAbbr : function () { + return this._isUTC ? 'UTC' : ''; + }, + + zoneName : function () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + }, + + parseZone : function () { + if (this._tzm) { + this.zone(this._tzm); + } else if (typeof this._i === 'string') { + this.zone(this._i); + } + return this; + }, + + hasAlignedHourOffset : function (input) { + if (!input) { + input = 0; + } + else { + input = moment(input).zone(); + } + + return (this.zone() - input) % 60 === 0; + }, + + daysInMonth : function () { + return daysInMonth(this.year(), this.month()); + }, + + dayOfYear : function (input) { + var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); + }, + + quarter : function (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + }, + + weekYear : function (input) { + var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; + return input == null ? year : this.add((input - year), 'y'); + }, + + isoWeekYear : function (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + }, + + week : function (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + }, + + isoWeek : function (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + }, + + weekday : function (input) { + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + }, + + isoWeekday : function (input) { + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); + }, + + isoWeeksInYear : function () { + return weeksInYear(this.year(), 1, 4); + }, + + weeksInYear : function () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + }, + + get : function (units) { + units = normalizeUnits(units); + return this[units](); + }, + + set : function (units, value) { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + this[units](value); + } + return this; + }, + + // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + locale : function (key) { + if (key === undefined) { + return this._locale._abbr; + } else { + this._locale = moment.localeData(key); + return this; + } + }, + + lang : deprecate( + 'moment().lang() is deprecated. Use moment().localeData() instead.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + this._locale = moment.localeData(key); + return this; + } + } + ), + + localeData : function () { + return this._locale; + } + }); + + function rawMonthSetter(mom, value) { + var dayOfMonth; + + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (typeof value !== 'number') { + return mom; + } + } + + dayOfMonth = Math.min(mom.date(), + daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } + + function rawGetter(mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + } + + function rawSetter(mom, unit, value) { + if (unit === 'Month') { + return rawMonthSetter(mom, value); + } else { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + + function makeAccessor(unit, keepTime) { + return function (value) { + if (value != null) { + rawSetter(this, unit, value); + moment.updateOffset(this, keepTime); + return this; + } else { + return rawGetter(this, unit); + } + }; + } + + moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); + moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); + moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); + // Setting the hour should keep the time, because the user explicitly + // specified which hour he wants. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); + // moment.fn.month is defined separately + moment.fn.date = makeAccessor('Date', true); + moment.fn.dates = deprecate('dates accessor is deprecated. Use date instead.', makeAccessor('Date', true)); + moment.fn.year = makeAccessor('FullYear', true); + moment.fn.years = deprecate('years accessor is deprecated. Use year instead.', makeAccessor('FullYear', true)); + + // add plural methods + moment.fn.days = moment.fn.day; + moment.fn.months = moment.fn.month; + moment.fn.weeks = moment.fn.week; + moment.fn.isoWeeks = moment.fn.isoWeek; + moment.fn.quarters = moment.fn.quarter; + + // add aliased format methods + moment.fn.toJSON = moment.fn.toISOString; + + /************************************ + Duration Prototype + ************************************/ + + + function daysToYears (days) { + // 400 years have 146097 days (taking into account leap year rules) + return days * 400 / 146097; + } + + function yearsToDays (years) { + // years * 365 + absRound(years / 4) - + // absRound(years / 100) + absRound(years / 400); + return years * 146097 / 400; + } + + extend(moment.duration.fn = Duration.prototype, { + + _bubble : function () { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, minutes, hours, years = 0; + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absRound(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absRound(seconds / 60); + data.minutes = minutes % 60; + + hours = absRound(minutes / 60); + data.hours = hours % 24; + + days += absRound(hours / 24); + + // Accurately convert days to years, assume start from year 0. + years = absRound(daysToYears(days)); + days -= absRound(yearsToDays(years)); + + // 30 days to a month + // TODO (iskren): Use anchor date (like 1st Jan) to compute this. + months += absRound(days / 30); + days %= 30; + + // 12 months -> 1 year + years += absRound(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + }, + + abs : function () { + this._milliseconds = Math.abs(this._milliseconds); + this._days = Math.abs(this._days); + this._months = Math.abs(this._months); + + this._data.milliseconds = Math.abs(this._data.milliseconds); + this._data.seconds = Math.abs(this._data.seconds); + this._data.minutes = Math.abs(this._data.minutes); + this._data.hours = Math.abs(this._data.hours); + this._data.months = Math.abs(this._data.months); + this._data.years = Math.abs(this._data.years); + + return this; + }, + + weeks : function () { + return absRound(this.days() / 7); + }, + + valueOf : function () { + return this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6; + }, + + humanize : function (withSuffix) { + var output = relativeTime(this, !withSuffix, this.localeData()); + + if (withSuffix) { + output = this.localeData().pastFuture(+this, output); + } + + return this.localeData().postformat(output); + }, + + add : function (input, val) { + // supports only 2.0-style add(1, 's') or add(moment) + var dur = moment.duration(input, val); + + this._milliseconds += dur._milliseconds; + this._days += dur._days; + this._months += dur._months; + + this._bubble(); + + return this; + }, + + subtract : function (input, val) { + var dur = moment.duration(input, val); + + this._milliseconds -= dur._milliseconds; + this._days -= dur._days; + this._months -= dur._months; + + this._bubble(); + + return this; + }, + + get : function (units) { + units = normalizeUnits(units); + return this[units.toLowerCase() + 's'](); + }, + + as : function (units) { + var days, months; + units = normalizeUnits(units); + + days = this._days + this._milliseconds / 864e5; + if (units === 'month' || units === 'year') { + months = this._months + daysToYears(days) * 12; + return units === 'month' ? months : months / 12; + } else { + days += yearsToDays(this._months / 12); + switch (units) { + case 'week': return days / 7; + case 'day': return days; + case 'hour': return days * 24; + case 'minute': return days * 24 * 60; + case 'second': return days * 24 * 60 * 60; + case 'millisecond': return days * 24 * 60 * 60 * 1000; + default: throw new Error('Unknown unit ' + units); + } + } + }, + + lang : moment.fn.lang, + locale : moment.fn.locale, + + toIsoString : deprecate( + 'toIsoString() is deprecated. Please use toISOString() instead ' + + '(notice the capitals)', + function () { + return this.toISOString(); + } + ), + + toISOString : function () { + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var years = Math.abs(this.years()), + months = Math.abs(this.months()), + days = Math.abs(this.days()), + hours = Math.abs(this.hours()), + minutes = Math.abs(this.minutes()), + seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); + + if (!this.asSeconds()) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + return (this.asSeconds() < 0 ? '-' : '') + + 'P' + + (years ? years + 'Y' : '') + + (months ? months + 'M' : '') + + (days ? days + 'D' : '') + + ((hours || minutes || seconds) ? 'T' : '') + + (hours ? hours + 'H' : '') + + (minutes ? minutes + 'M' : '') + + (seconds ? seconds + 'S' : ''); + }, + + localeData : function () { + return this._locale; + } + }); + + moment.duration.fn.toString = moment.duration.fn.toISOString; + + function makeDurationGetter(name) { + moment.duration.fn[name] = function () { + return this._data[name]; + }; + } + + for (i in unitMillisecondFactors) { + if (hasOwnProp(unitMillisecondFactors, i)) { + makeDurationGetter(i.toLowerCase()); + } + } + + moment.duration.fn.asMilliseconds = function () { + return this.as('ms'); + }; + moment.duration.fn.asSeconds = function () { + return this.as('s'); + }; + moment.duration.fn.asMinutes = function () { + return this.as('m'); + }; + moment.duration.fn.asHours = function () { + return this.as('h'); + }; + moment.duration.fn.asDays = function () { + return this.as('d'); + }; + moment.duration.fn.asWeeks = function () { + return this.as('weeks'); + }; + moment.duration.fn.asMonths = function () { + return this.as('M'); + }; + moment.duration.fn.asYears = function () { + return this.as('y'); + }; + + /************************************ + Default Locale + ************************************/ + + + // Set default locale, other locale will inherit from English. + moment.locale('en', { + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); + + // moment.js locale configuration +// locale : afrikaans (af) +// author : Werner Mollentze : https://github.com/wernerm + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('af', { + months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'), + weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'), + weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'), + weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'), + meridiem : function (hours, minutes, isLower) { + if (hours < 12) { + return isLower ? 'vm' : 'VM'; + } else { + return isLower ? 'nm' : 'NM'; + } + }, + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Vandag om] LT', + nextDay : '[Môre om] LT', + nextWeek : 'dddd [om] LT', + lastDay : '[Gister om] LT', + lastWeek : '[Laas] dddd [om] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'oor %s', + past : '%s gelede', + s : '\'n paar sekondes', + m : '\'n minuut', + mm : '%d minute', + h : '\'n uur', + hh : '%d ure', + d : '\'n dag', + dd : '%d dae', + M : '\'n maand', + MM : '%d maande', + y : '\'n jaar', + yy : '%d jaar' + }, + ordinal : function (number) { + return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter + }, + week : { + dow : 1, // Maandag is die eerste dag van die week. + doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar. + } + }); +})); +// moment.js locale configuration +// locale : Moroccan Arabic (ar-ma) +// author : ElFadili Yassine : https://github.com/ElFadiliY +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ar-ma', { + months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), + monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'), + weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Arabic Saudi Arabia (ar-sa) +// author : Suhail Alkowaileet : https://github.com/xsoh + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '١', + '2': '٢', + '3': '٣', + '4': '٤', + '5': '٥', + '6': '٦', + '7': '٧', + '8': '٨', + '9': '٩', + '0': '٠' + }, numberMap = { + '١': '1', + '٢': '2', + '٣': '3', + '٤': '4', + '٥': '5', + '٦': '6', + '٧': '7', + '٨': '8', + '٩': '9', + '٠': '0' + }; + + return moment.defineLocale('ar-sa', { + months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), + monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), + weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ص'; + } else { + return 'م'; + } + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Arabic (ar) +// author : Abdel Said : https://github.com/abdelsaid +// changes in months, weekdays : Ahmed Elkhatib + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '١', + '2': '٢', + '3': '٣', + '4': '٤', + '5': '٥', + '6': '٦', + '7': '٧', + '8': '٨', + '9': '٩', + '0': '٠' + }, numberMap = { + '١': '1', + '٢': '2', + '٣': '3', + '٤': '4', + '٥': '5', + '٦': '6', + '٧': '7', + '٨': '8', + '٩': '9', + '٠': '0' + }; + + return moment.defineLocale('ar', { + months : 'يناير/ كانون الثاني_فبراير/ شباط_مارس/ آذار_أبريل/ نيسان_مايو/ أيار_يونيو/ حزيران_يوليو/ تموز_أغسطس/ آب_سبتمبر/ أيلول_أكتوبر/ تشرين الأول_نوفمبر/ تشرين الثاني_ديسمبر/ كانون الأول'.split('_'), + monthsShort : 'يناير/ كانون الثاني_فبراير/ شباط_مارس/ آذار_أبريل/ نيسان_مايو/ أيار_يونيو/ حزيران_يوليو/ تموز_أغسطس/ آب_سبتمبر/ أيلول_أكتوبر/ تشرين الأول_نوفمبر/ تشرين الثاني_ديسمبر/ كانون الأول'.split('_'), + weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), + weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), + weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ص'; + } else { + return 'م'; + } + }, + calendar : { + sameDay: '[اليوم على الساعة] LT', + nextDay: '[غدا على الساعة] LT', + nextWeek: 'dddd [على الساعة] LT', + lastDay: '[أمس على الساعة] LT', + lastWeek: 'dddd [على الساعة] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'في %s', + past : 'منذ %s', + s : 'ثوان', + m : 'دقيقة', + mm : '%d دقائق', + h : 'ساعة', + hh : '%d ساعات', + d : 'يوم', + dd : '%d أيام', + M : 'شهر', + MM : '%d أشهر', + y : 'سنة', + yy : '%d سنوات' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : azerbaijani (az) +// author : topchiyev : https://github.com/topchiyev + +(function (factory) { + factory(moment); +}(function (moment) { + var suffixes = { + 1: '-inci', + 5: '-inci', + 8: '-inci', + 70: '-inci', + 80: '-inci', + + 2: '-nci', + 7: '-nci', + 20: '-nci', + 50: '-nci', + + 3: '-üncü', + 4: '-üncü', + 100: '-üncü', + + 6: '-ncı', + + 9: '-uncu', + 10: '-uncu', + 30: '-uncu', + + 60: '-ıncı', + 90: '-ıncı' + }; + return moment.defineLocale('az', { + months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'), + monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'), + weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'), + weekdaysShort : 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'), + weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[bugün saat] LT', + nextDay : '[sabah saat] LT', + nextWeek : '[gələn həftə] dddd [saat] LT', + lastDay : '[dünən] LT', + lastWeek : '[keçən həftə] dddd [saat] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s sonra', + past : '%s əvvəl', + s : 'birneçə saniyyə', + m : 'bir dəqiqə', + mm : '%d dəqiqə', + h : 'bir saat', + hh : '%d saat', + d : 'bir gün', + dd : '%d gün', + M : 'bir ay', + MM : '%d ay', + y : 'bir il', + yy : '%d il' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'gecə'; + } else if (hour < 12) { + return 'səhər'; + } else if (hour < 17) { + return 'gündüz'; + } else { + return 'axşam'; + } + }, + ordinal : function (number) { + if (number === 0) { // special case for zero + return number + '-ıncı'; + } + var a = number % 10, + b = number % 100 - a, + c = number >= 100 ? 100 : null; + + return number + (suffixes[a] || suffixes[b] || suffixes[c]); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : belarusian (be) +// author : Dmitry Demidov : https://github.com/demidov91 +// author: Praleska: http://praleska.pro/ +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін', + 'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін', + 'dd': 'дзень_дні_дзён', + 'MM': 'месяц_месяцы_месяцаў', + 'yy': 'год_гады_гадоў' + }; + if (key === 'm') { + return withoutSuffix ? 'хвіліна' : 'хвіліну'; + } + else if (key === 'h') { + return withoutSuffix ? 'гадзіна' : 'гадзіну'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_'), + 'accusative': 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split('_'), + 'accusative': 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split('_') + }, + + nounCase = (/\[ ?[Вв] ?(?:мінулую|наступную)? ?\] ?dddd/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('be', { + months : monthsCaseReplace, + monthsShort : 'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'нд_пн_ат_ср_чц_пт_сб'.split('_'), + weekdaysMin : 'нд_пн_ат_ср_чц_пт_сб'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY г.', + LLL : 'D MMMM YYYY г., LT', + LLLL : 'dddd, D MMMM YYYY г., LT' + }, + calendar : { + sameDay: '[Сёння ў] LT', + nextDay: '[Заўтра ў] LT', + lastDay: '[Учора ў] LT', + nextWeek: function () { + return '[У] dddd [ў] LT'; + }, + lastWeek: function () { + switch (this.day()) { + case 0: + case 3: + case 5: + case 6: + return '[У мінулую] dddd [ў] LT'; + case 1: + case 2: + case 4: + return '[У мінулы] dddd [ў] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'праз %s', + past : '%s таму', + s : 'некалькі секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : relativeTimeWithPlural, + hh : relativeTimeWithPlural, + d : 'дзень', + dd : relativeTimeWithPlural, + M : 'месяц', + MM : relativeTimeWithPlural, + y : 'год', + yy : relativeTimeWithPlural + }, + + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночы'; + } else if (hour < 12) { + return 'раніцы'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечара'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + case 'w': + case 'W': + return (number % 10 === 2 || number % 10 === 3) && (number % 100 !== 12 && number % 100 !== 13) ? number + '-і' : number + '-ы'; + case 'D': + return number + '-га'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : bulgarian (bg) +// author : Krasen Borisov : https://github.com/kraz + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('bg', { + months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'), + monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'), + weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'), + weekdaysShort : 'нед_пон_вто_сря_чет_пет_съб'.split('_'), + weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'D.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Днес в] LT', + nextDay : '[Утре в] LT', + nextWeek : 'dddd [в] LT', + lastDay : '[Вчера в] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[В изминалата] dddd [в] LT'; + case 1: + case 2: + case 4: + case 5: + return '[В изминалия] dddd [в] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'след %s', + past : 'преди %s', + s : 'няколко секунди', + m : 'минута', + mm : '%d минути', + h : 'час', + hh : '%d часа', + d : 'ден', + dd : '%d дни', + M : 'месец', + MM : '%d месеца', + y : 'година', + yy : '%d години' + }, + ordinal : function (number) { + var lastDigit = number % 10, + last2Digits = number % 100; + if (number === 0) { + return number + '-ев'; + } else if (last2Digits === 0) { + return number + '-ен'; + } else if (last2Digits > 10 && last2Digits < 20) { + return number + '-ти'; + } else if (lastDigit === 1) { + return number + '-ви'; + } else if (lastDigit === 2) { + return number + '-ри'; + } else if (lastDigit === 7 || lastDigit === 8) { + return number + '-ми'; + } else { + return number + '-ти'; + } + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bengali (bn) +// author : Kaushik Gandhi : https://github.com/kaushikgandhi + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '১', + '2': '২', + '3': '৩', + '4': '৪', + '5': '৫', + '6': '৬', + '7': '৭', + '8': '৮', + '9': '৯', + '0': '০' + }, + numberMap = { + '১': '1', + '২': '2', + '৩': '3', + '৪': '4', + '৫': '5', + '৬': '6', + '৭': '7', + '৮': '8', + '৯': '9', + '০': '0' + }; + + return moment.defineLocale('bn', { + months : 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'), + monthsShort : 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'), + weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রুবার_শনিবার'.split('_'), + weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্রু_শনি'.split('_'), + weekdaysMin : 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'), + longDateFormat : { + LT : 'A h:mm সময়', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[আজ] LT', + nextDay : '[আগামীকাল] LT', + nextWeek : 'dddd, LT', + lastDay : '[গতকাল] LT', + lastWeek : '[গত] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s পরে', + past : '%s আগে', + s : 'কএক সেকেন্ড', + m : 'এক মিনিট', + mm : '%d মিনিট', + h : 'এক ঘন্টা', + hh : '%d ঘন্টা', + d : 'এক দিন', + dd : '%d দিন', + M : 'এক মাস', + MM : '%d মাস', + y : 'এক বছর', + yy : '%d বছর' + }, + preparse: function (string) { + return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + //Bengali is a vast language its spoken + //in different forms in various parts of the world. + //I have just generalized with most common one used + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'রাত'; + } else if (hour < 10) { + return 'শকাল'; + } else if (hour < 17) { + return 'দুপুর'; + } else if (hour < 20) { + return 'বিকেল'; + } else { + return 'রাত'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : tibetan (bo) +// author : Thupten N. Chakrishar : https://github.com/vajradog + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '༡', + '2': '༢', + '3': '༣', + '4': '༤', + '5': '༥', + '6': '༦', + '7': '༧', + '8': '༨', + '9': '༩', + '0': '༠' + }, + numberMap = { + '༡': '1', + '༢': '2', + '༣': '3', + '༤': '4', + '༥': '5', + '༦': '6', + '༧': '7', + '༨': '8', + '༩': '9', + '༠': '0' + }; + + return moment.defineLocale('bo', { + months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'), + monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'), + weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'), + weekdaysShort : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'), + weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'), + longDateFormat : { + LT : 'A h:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[དི་རིང] LT', + nextDay : '[སང་ཉིན] LT', + nextWeek : '[བདུན་ཕྲག་རྗེས་མ], LT', + lastDay : '[ཁ་སང] LT', + lastWeek : '[བདུན་ཕྲག་མཐའ་མ] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s ལ་', + past : '%s སྔན་ལ', + s : 'ལམ་སང', + m : 'སྐར་མ་གཅིག', + mm : '%d སྐར་མ', + h : 'ཆུ་ཚོད་གཅིག', + hh : '%d ཆུ་ཚོད', + d : 'ཉིན་གཅིག', + dd : '%d ཉིན་', + M : 'ཟླ་བ་གཅིག', + MM : '%d ཟླ་བ', + y : 'ལོ་གཅིག', + yy : '%d ལོ' + }, + preparse: function (string) { + return string.replace(/[༡༢༣༤༥༦༧༨༩༠]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'མཚན་མོ'; + } else if (hour < 10) { + return 'ཞོགས་ཀས'; + } else if (hour < 17) { + return 'ཉིན་གུང'; + } else if (hour < 20) { + return 'དགོང་དག'; + } else { + return 'མཚན་མོ'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : breton (br) +// author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou + +(function (factory) { + factory(moment); +}(function (moment) { + function relativeTimeWithMutation(number, withoutSuffix, key) { + var format = { + 'mm': 'munutenn', + 'MM': 'miz', + 'dd': 'devezh' + }; + return number + ' ' + mutation(format[key], number); + } + + function specialMutationForYears(number) { + switch (lastNumber(number)) { + case 1: + case 3: + case 4: + case 5: + case 9: + return number + ' bloaz'; + default: + return number + ' vloaz'; + } + } + + function lastNumber(number) { + if (number > 9) { + return lastNumber(number % 10); + } + return number; + } + + function mutation(text, number) { + if (number === 2) { + return softMutation(text); + } + return text; + } + + function softMutation(text) { + var mutationTable = { + 'm': 'v', + 'b': 'v', + 'd': 'z' + }; + if (mutationTable[text.charAt(0)] === undefined) { + return text; + } + return mutationTable[text.charAt(0)] + text.substring(1); + } + + return moment.defineLocale('br', { + months : 'Genver_C\'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split('_'), + monthsShort : 'Gen_C\'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'), + weekdays : 'Sul_Lun_Meurzh_Merc\'her_Yaou_Gwener_Sadorn'.split('_'), + weekdaysShort : 'Sul_Lun_Meu_Mer_Yao_Gwe_Sad'.split('_'), + weekdaysMin : 'Su_Lu_Me_Mer_Ya_Gw_Sa'.split('_'), + longDateFormat : { + LT : 'h[e]mm A', + L : 'DD/MM/YYYY', + LL : 'D [a viz] MMMM YYYY', + LLL : 'D [a viz] MMMM YYYY LT', + LLLL : 'dddd, D [a viz] MMMM YYYY LT' + }, + calendar : { + sameDay : '[Hiziv da] LT', + nextDay : '[Warc\'hoazh da] LT', + nextWeek : 'dddd [da] LT', + lastDay : '[Dec\'h da] LT', + lastWeek : 'dddd [paset da] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'a-benn %s', + past : '%s \'zo', + s : 'un nebeud segondennoù', + m : 'ur vunutenn', + mm : relativeTimeWithMutation, + h : 'un eur', + hh : '%d eur', + d : 'un devezh', + dd : relativeTimeWithMutation, + M : 'ur miz', + MM : relativeTimeWithMutation, + y : 'ur bloaz', + yy : specialMutationForYears + }, + ordinal : function (number) { + var output = (number === 1) ? 'añ' : 'vet'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : bosnian (bs) +// author : Nedim Cholich : https://github.com/frontyard +// based on (hr) translation by Bojan Marković + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'jedna minuta' : 'jedne minute'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minuta'; + } + return result; + case 'h': + return withoutSuffix ? 'jedan sat' : 'jednog sata'; + case 'hh': + if (number === 1) { + result += 'sat'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'sata'; + } else { + result += 'sati'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dana'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mjesec'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'mjeseca'; + } else { + result += 'mjeseci'; + } + return result; + case 'yy': + if (number === 1) { + result += 'godina'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'godine'; + } else { + result += 'godina'; + } + return result; + } + } + + return moment.defineLocale('bs', { + months : 'januar_februar_mart_april_maj_juni_juli_avgust_septembar_oktobar_novembar_decembar'.split('_'), + monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'), + weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'), + weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'), + weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danas u] LT', + nextDay : '[sutra u] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[u] [nedjelju] [u] LT'; + case 3: + return '[u] [srijedu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[jučer u] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + return '[prošlu] dddd [u] LT'; + case 6: + return '[prošle] [subote] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prošli] dddd [u] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'prije %s', + s : 'par sekundi', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'dan', + dd : translate, + M : 'mjesec', + MM : translate, + y : 'godinu', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : catalan (ca) +// author : Juan G. Hurtado : https://github.com/juanghurtado + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ca', { + months : 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'), + monthsShort : 'gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.'.split('_'), + weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'), + weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'), + weekdaysMin : 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay : function () { + return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + nextDay : function () { + return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + nextWeek : function () { + return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + lastDay : function () { + return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + lastWeek : function () { + return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'en %s', + past : 'fa %s', + s : 'uns segons', + m : 'un minut', + mm : '%d minuts', + h : 'una hora', + hh : '%d hores', + d : 'un dia', + dd : '%d dies', + M : 'un mes', + MM : '%d mesos', + y : 'un any', + yy : '%d anys' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : czech (cs) +// author : petrbela : https://github.com/petrbela + +(function (factory) { + factory(moment); +}(function (moment) { + var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'), + monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'); + + function plural(n) { + return (n > 1) && (n < 5) && (~~(n / 10) !== 1); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': // a few seconds / in a few seconds / a few seconds ago + return (withoutSuffix || isFuture) ? 'pár sekund' : 'pár sekundami'; + case 'm': // a minute / in a minute / a minute ago + return withoutSuffix ? 'minuta' : (isFuture ? 'minutu' : 'minutou'); + case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'minuty' : 'minut'); + } else { + return result + 'minutami'; + } + break; + case 'h': // an hour / in an hour / an hour ago + return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou'); + case 'hh': // 9 hours / in 9 hours / 9 hours ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'hodiny' : 'hodin'); + } else { + return result + 'hodinami'; + } + break; + case 'd': // a day / in a day / a day ago + return (withoutSuffix || isFuture) ? 'den' : 'dnem'; + case 'dd': // 9 days / in 9 days / 9 days ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'dny' : 'dní'); + } else { + return result + 'dny'; + } + break; + case 'M': // a month / in a month / a month ago + return (withoutSuffix || isFuture) ? 'měsíc' : 'měsícem'; + case 'MM': // 9 months / in 9 months / 9 months ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'měsíce' : 'měsíců'); + } else { + return result + 'měsíci'; + } + break; + case 'y': // a year / in a year / a year ago + return (withoutSuffix || isFuture) ? 'rok' : 'rokem'; + case 'yy': // 9 years / in 9 years / 9 years ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'roky' : 'let'); + } else { + return result + 'lety'; + } + break; + } + } + + return moment.defineLocale('cs', { + months : months, + monthsShort : monthsShort, + monthsParse : (function (months, monthsShort) { + var i, _monthsParse = []; + for (i = 0; i < 12; i++) { + // use custom parser to solve problem with July (červenec) + _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i'); + } + return _monthsParse; + }(months, monthsShort)), + weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'), + weekdaysShort : 'ne_po_út_st_čt_pá_so'.split('_'), + weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'), + longDateFormat : { + LT: 'H.mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[dnes v] LT', + nextDay: '[zítra v] LT', + nextWeek: function () { + switch (this.day()) { + case 0: + return '[v neděli v] LT'; + case 1: + case 2: + return '[v] dddd [v] LT'; + case 3: + return '[ve středu v] LT'; + case 4: + return '[ve čtvrtek v] LT'; + case 5: + return '[v pátek v] LT'; + case 6: + return '[v sobotu v] LT'; + } + }, + lastDay: '[včera v] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[minulou neděli v] LT'; + case 1: + case 2: + return '[minulé] dddd [v] LT'; + case 3: + return '[minulou středu v] LT'; + case 4: + case 5: + return '[minulý] dddd [v] LT'; + case 6: + return '[minulou sobotu v] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : 'před %s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : chuvash (cv) +// author : Anatoly Mironov : https://github.com/mirontoli + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('cv', { + months : 'кăрлач_нарăс_пуш_ака_май_çĕртме_утă_çурла_авăн_юпа_чӳк_раштав'.split('_'), + monthsShort : 'кăр_нар_пуш_ака_май_çĕр_утă_çур_ав_юпа_чӳк_раш'.split('_'), + weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кĕçнерникун_эрнекун_шăматкун'.split('_'), + weekdaysShort : 'выр_тун_ытл_юн_кĕç_эрн_шăм'.split('_'), + weekdaysMin : 'вр_тн_ыт_юн_кç_эр_шм'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD-MM-YYYY', + LL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ]', + LLL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT', + LLLL : 'dddd, YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT' + }, + calendar : { + sameDay: '[Паян] LT [сехетре]', + nextDay: '[Ыран] LT [сехетре]', + lastDay: '[Ĕнер] LT [сехетре]', + nextWeek: '[Çитес] dddd LT [сехетре]', + lastWeek: '[Иртнĕ] dddd LT [сехетре]', + sameElse: 'L' + }, + relativeTime : { + future : function (output) { + var affix = /сехет$/i.exec(output) ? 'рен' : /çул$/i.exec(output) ? 'тан' : 'ран'; + return output + affix; + }, + past : '%s каялла', + s : 'пĕр-ик çеккунт', + m : 'пĕр минут', + mm : '%d минут', + h : 'пĕр сехет', + hh : '%d сехет', + d : 'пĕр кун', + dd : '%d кун', + M : 'пĕр уйăх', + MM : '%d уйăх', + y : 'пĕр çул', + yy : '%d çул' + }, + ordinal : '%d-мĕш', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Welsh (cy) +// author : Robert Allen + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('cy', { + months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'), + monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'), + weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'), + weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'), + weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'), + // time formats are the same as en-gb + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd, D MMMM YYYY LT' + }, + calendar: { + sameDay: '[Heddiw am] LT', + nextDay: '[Yfory am] LT', + nextWeek: 'dddd [am] LT', + lastDay: '[Ddoe am] LT', + lastWeek: 'dddd [diwethaf am] LT', + sameElse: 'L' + }, + relativeTime: { + future: 'mewn %s', + past: '%s yn ôl', + s: 'ychydig eiliadau', + m: 'munud', + mm: '%d munud', + h: 'awr', + hh: '%d awr', + d: 'diwrnod', + dd: '%d diwrnod', + M: 'mis', + MM: '%d mis', + y: 'blwyddyn', + yy: '%d flynedd' + }, + // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh + ordinal: function (number) { + var b = number, + output = '', + lookup = [ + '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed + 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed' // 11eg to 20fed + ]; + + if (b > 20) { + if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) { + output = 'fed'; // not 30ain, 70ain or 90ain + } else { + output = 'ain'; + } + } else if (b > 0) { + output = lookup[b]; + } + + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : danish (da) +// author : Ulrik Nielsen : https://github.com/mrbase + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('da', { + months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), + weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'), + weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd [d.] D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[I dag kl.] LT', + nextDay : '[I morgen kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[I går kl.] LT', + lastWeek : '[sidste] dddd [kl] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'om %s', + past : '%s siden', + s : 'få sekunder', + m : 'et minut', + mm : '%d minutter', + h : 'en time', + hh : '%d timer', + d : 'en dag', + dd : '%d dage', + M : 'en måned', + MM : '%d måneder', + y : 'et år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : austrian german (de-at) +// author : lluchs : https://github.com/lluchs +// author: Menelion Elensúle: https://github.com/Oire +// author : Martin Groller : https://github.com/MadMG + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eine Minute', 'einer Minute'], + 'h': ['eine Stunde', 'einer Stunde'], + 'd': ['ein Tag', 'einem Tag'], + 'dd': [number + ' Tage', number + ' Tagen'], + 'M': ['ein Monat', 'einem Monat'], + 'MM': [number + ' Monate', number + ' Monaten'], + 'y': ['ein Jahr', 'einem Jahr'], + 'yy': [number + ' Jahre', number + ' Jahren'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('de-at', { + months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort : 'Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'), + weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), + weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), + longDateFormat : { + LT: 'HH:mm [Uhr]', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[Heute um] LT', + sameElse: 'L', + nextDay: '[Morgen um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gestern um] LT', + lastWeek: '[letzten] dddd [um] LT' + }, + relativeTime : { + future : 'in %s', + past : 'vor %s', + s : 'ein paar Sekunden', + m : processRelativeTime, + mm : '%d Minuten', + h : processRelativeTime, + hh : '%d Stunden', + d : processRelativeTime, + dd : processRelativeTime, + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : german (de) +// author : lluchs : https://github.com/lluchs +// author: Menelion Elensúle: https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eine Minute', 'einer Minute'], + 'h': ['eine Stunde', 'einer Stunde'], + 'd': ['ein Tag', 'einem Tag'], + 'dd': [number + ' Tage', number + ' Tagen'], + 'M': ['ein Monat', 'einem Monat'], + 'MM': [number + ' Monate', number + ' Monaten'], + 'y': ['ein Jahr', 'einem Jahr'], + 'yy': [number + ' Jahre', number + ' Jahren'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('de', { + months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort : 'Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'), + weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), + weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), + longDateFormat : { + LT: 'HH:mm [Uhr]', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[Heute um] LT', + sameElse: 'L', + nextDay: '[Morgen um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gestern um] LT', + lastWeek: '[letzten] dddd [um] LT' + }, + relativeTime : { + future : 'in %s', + past : 'vor %s', + s : 'ein paar Sekunden', + m : processRelativeTime, + mm : '%d Minuten', + h : processRelativeTime, + hh : '%d Stunden', + d : processRelativeTime, + dd : processRelativeTime, + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : modern greek (el) +// author : Aggelos Karalias : https://github.com/mehiel + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('el', { + monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'), + monthsGenitiveEl : 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'), + months : function (momentToFormat, format) { + if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM' + return this._monthsGenitiveEl[momentToFormat.month()]; + } else { + return this._monthsNominativeEl[momentToFormat.month()]; + } + }, + monthsShort : 'Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ'.split('_'), + weekdays : 'Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο'.split('_'), + weekdaysShort : 'Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ'.split('_'), + weekdaysMin : 'Κυ_Δε_Τρ_Τε_Πε_Πα_Σα'.split('_'), + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'μμ' : 'ΜΜ'; + } else { + return isLower ? 'πμ' : 'ΠΜ'; + } + }, + isPM : function (input) { + return ((input + '').toLowerCase()[0] === 'μ'); + }, + meridiemParse : /[ΠΜ]\.?Μ?\.?/i, + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendarEl : { + sameDay : '[Σήμερα {}] LT', + nextDay : '[Αύριο {}] LT', + nextWeek : 'dddd [{}] LT', + lastDay : '[Χθες {}] LT', + lastWeek : function () { + switch (this.day()) { + case 6: + return '[το προηγούμενο] dddd [{}] LT'; + default: + return '[την προηγούμενη] dddd [{}] LT'; + } + }, + sameElse : 'L' + }, + calendar : function (key, mom) { + var output = this._calendarEl[key], + hours = mom && mom.hours(); + + if (typeof output === 'function') { + output = output.apply(mom); + } + + return output.replace('{}', (hours % 12 === 1 ? 'στη' : 'στις')); + }, + relativeTime : { + future : 'σε %s', + past : '%s πριν', + s : 'δευτερόλεπτα', + m : 'ένα λεπτό', + mm : '%d λεπτά', + h : 'μία ώρα', + hh : '%d ώρες', + d : 'μία μέρα', + dd : '%d μέρες', + M : 'ένας μήνας', + MM : '%d μήνες', + y : 'ένας χρόνος', + yy : '%d χρόνια' + }, + ordinal : function (number) { + return number + 'η'; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : australian english (en-au) + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-au', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : canadian english (en-ca) +// author : Jonathan Abourbih : https://github.com/jonbca + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-ca', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'YYYY-MM-DD', + LL : 'D MMMM, YYYY', + LLL : 'D MMMM, YYYY LT', + LLLL : 'dddd, D MMMM, YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); +})); +// moment.js locale configuration +// locale : great britain english (en-gb) +// author : Chris Gedrim : https://github.com/chrisgedrim + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('en-gb', { + months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), + weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), + weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : esperanto (eo) +// author : Colin Dean : https://github.com/colindean +// komento: Mi estas malcerta se mi korekte traktis akuzativojn en tiu traduko. +// Se ne, bonvolu korekti kaj avizi min por ke mi povas lerni! + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('eo', { + months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'), + weekdays : 'Dimanĉo_Lundo_Mardo_Merkredo_Ĵaŭdo_Vendredo_Sabato'.split('_'), + weekdaysShort : 'Dim_Lun_Mard_Merk_Ĵaŭ_Ven_Sab'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Ĵa_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D[-an de] MMMM, YYYY', + LLL : 'D[-an de] MMMM, YYYY LT', + LLLL : 'dddd, [la] D[-an de] MMMM, YYYY LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'p.t.m.' : 'P.T.M.'; + } else { + return isLower ? 'a.t.m.' : 'A.T.M.'; + } + }, + calendar : { + sameDay : '[Hodiaŭ je] LT', + nextDay : '[Morgaŭ je] LT', + nextWeek : 'dddd [je] LT', + lastDay : '[Hieraŭ je] LT', + lastWeek : '[pasinta] dddd [je] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'je %s', + past : 'antaŭ %s', + s : 'sekundoj', + m : 'minuto', + mm : '%d minutoj', + h : 'horo', + hh : '%d horoj', + d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo + dd : '%d tagoj', + M : 'monato', + MM : '%d monatoj', + y : 'jaro', + yy : '%d jaroj' + }, + ordinal : '%da', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : spanish (es) +// author : Julio Napurí : https://github.com/julionc + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'), + monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'); + + return moment.defineLocale('es', { + months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'), + monthsShort : function (m, format) { + if (/-MMM-/.test(format)) { + return monthsShort[m.month()]; + } else { + return monthsShortDot[m.month()]; + } + }, + weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'), + weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'), + weekdaysMin : 'Do_Lu_Ma_Mi_Ju_Vi_Sá'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY LT' + }, + calendar : { + sameDay : function () { + return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + nextDay : function () { + return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + nextWeek : function () { + return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + lastDay : function () { + return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + lastWeek : function () { + return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'en %s', + past : 'hace %s', + s : 'unos segundos', + m : 'un minuto', + mm : '%d minutos', + h : 'una hora', + hh : '%d horas', + d : 'un día', + dd : '%d días', + M : 'un mes', + MM : '%d meses', + y : 'un año', + yy : '%d años' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : estonian (et) +// author : Henry Kehlmann : https://github.com/madhenry +// improvements : Illimar Tambek : https://github.com/ragulka + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'], + 'm' : ['ühe minuti', 'üks minut'], + 'mm': [number + ' minuti', number + ' minutit'], + 'h' : ['ühe tunni', 'tund aega', 'üks tund'], + 'hh': [number + ' tunni', number + ' tundi'], + 'd' : ['ühe päeva', 'üks päev'], + 'M' : ['kuu aja', 'kuu aega', 'üks kuu'], + 'MM': [number + ' kuu', number + ' kuud'], + 'y' : ['ühe aasta', 'aasta', 'üks aasta'], + 'yy': [number + ' aasta', number + ' aastat'] + }; + if (withoutSuffix) { + return format[key][2] ? format[key][2] : format[key][1]; + } + return isFuture ? format[key][0] : format[key][1]; + } + + return moment.defineLocale('et', { + months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'), + monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'), + weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'), + weekdaysShort : 'P_E_T_K_N_R_L'.split('_'), + weekdaysMin : 'P_E_T_K_N_R_L'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[Täna,] LT', + nextDay : '[Homme,] LT', + nextWeek : '[Järgmine] dddd LT', + lastDay : '[Eile,] LT', + lastWeek : '[Eelmine] dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s pärast', + past : '%s tagasi', + s : processRelativeTime, + m : processRelativeTime, + mm : processRelativeTime, + h : processRelativeTime, + hh : processRelativeTime, + d : processRelativeTime, + dd : '%d päeva', + M : processRelativeTime, + MM : processRelativeTime, + y : processRelativeTime, + yy : processRelativeTime + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : euskara (eu) +// author : Eneko Illarramendi : https://github.com/eillarra + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('eu', { + months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'), + monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'), + weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'), + weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'), + weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'YYYY[ko] MMMM[ren] D[a]', + LLL : 'YYYY[ko] MMMM[ren] D[a] LT', + LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] LT', + l : 'YYYY-M-D', + ll : 'YYYY[ko] MMM D[a]', + lll : 'YYYY[ko] MMM D[a] LT', + llll : 'ddd, YYYY[ko] MMM D[a] LT' + }, + calendar : { + sameDay : '[gaur] LT[etan]', + nextDay : '[bihar] LT[etan]', + nextWeek : 'dddd LT[etan]', + lastDay : '[atzo] LT[etan]', + lastWeek : '[aurreko] dddd LT[etan]', + sameElse : 'L' + }, + relativeTime : { + future : '%s barru', + past : 'duela %s', + s : 'segundo batzuk', + m : 'minutu bat', + mm : '%d minutu', + h : 'ordu bat', + hh : '%d ordu', + d : 'egun bat', + dd : '%d egun', + M : 'hilabete bat', + MM : '%d hilabete', + y : 'urte bat', + yy : '%d urte' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Persian (fa) +// author : Ebrahim Byagowi : https://github.com/ebraminio + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '۱', + '2': '۲', + '3': '۳', + '4': '۴', + '5': '۵', + '6': '۶', + '7': '۷', + '8': '۸', + '9': '۹', + '0': '۰' + }, numberMap = { + '۱': '1', + '۲': '2', + '۳': '3', + '۴': '4', + '۵': '5', + '۶': '6', + '۷': '7', + '۸': '8', + '۹': '9', + '۰': '0' + }; + + return moment.defineLocale('fa', { + months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'), + monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'), + weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'), + weekdaysShort : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'), + weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'قبل از ظهر'; + } else { + return 'بعد از ظهر'; + } + }, + calendar : { + sameDay : '[امروز ساعت] LT', + nextDay : '[فردا ساعت] LT', + nextWeek : 'dddd [ساعت] LT', + lastDay : '[دیروز ساعت] LT', + lastWeek : 'dddd [پیش] [ساعت] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'در %s', + past : '%s پیش', + s : 'چندین ثانیه', + m : 'یک دقیقه', + mm : '%d دقیقه', + h : 'یک ساعت', + hh : '%d ساعت', + d : 'یک روز', + dd : '%d روز', + M : 'یک ماه', + MM : '%d ماه', + y : 'یک سال', + yy : '%d سال' + }, + preparse: function (string) { + return string.replace(/[۰-۹]/g, function (match) { + return numberMap[match]; + }).replace(/،/g, ','); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }).replace(/,/g, '،'); + }, + ordinal : '%dم', + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : finnish (fi) +// author : Tarmo Aidantausta : https://github.com/bleadof + +(function (factory) { + factory(moment); +}(function (moment) { + var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '), + numbersFuture = [ + 'nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden', + numbersPast[7], numbersPast[8], numbersPast[9] + ]; + + function translate(number, withoutSuffix, key, isFuture) { + var result = ''; + switch (key) { + case 's': + return isFuture ? 'muutaman sekunnin' : 'muutama sekunti'; + case 'm': + return isFuture ? 'minuutin' : 'minuutti'; + case 'mm': + result = isFuture ? 'minuutin' : 'minuuttia'; + break; + case 'h': + return isFuture ? 'tunnin' : 'tunti'; + case 'hh': + result = isFuture ? 'tunnin' : 'tuntia'; + break; + case 'd': + return isFuture ? 'päivän' : 'päivä'; + case 'dd': + result = isFuture ? 'päivän' : 'päivää'; + break; + case 'M': + return isFuture ? 'kuukauden' : 'kuukausi'; + case 'MM': + result = isFuture ? 'kuukauden' : 'kuukautta'; + break; + case 'y': + return isFuture ? 'vuoden' : 'vuosi'; + case 'yy': + result = isFuture ? 'vuoden' : 'vuotta'; + break; + } + result = verbalNumber(number, isFuture) + ' ' + result; + return result; + } + + function verbalNumber(number, isFuture) { + return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number; + } + + return moment.defineLocale('fi', { + months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split('_'), + monthsShort : 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split('_'), + weekdays : 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split('_'), + weekdaysShort : 'su_ma_ti_ke_to_pe_la'.split('_'), + weekdaysMin : 'su_ma_ti_ke_to_pe_la'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD.MM.YYYY', + LL : 'Do MMMM[ta] YYYY', + LLL : 'Do MMMM[ta] YYYY, [klo] LT', + LLLL : 'dddd, Do MMMM[ta] YYYY, [klo] LT', + l : 'D.M.YYYY', + ll : 'Do MMM YYYY', + lll : 'Do MMM YYYY, [klo] LT', + llll : 'ddd, Do MMM YYYY, [klo] LT' + }, + calendar : { + sameDay : '[tänään] [klo] LT', + nextDay : '[huomenna] [klo] LT', + nextWeek : 'dddd [klo] LT', + lastDay : '[eilen] [klo] LT', + lastWeek : '[viime] dddd[na] [klo] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s päästä', + past : '%s sitten', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : faroese (fo) +// author : Ragnar Johannesen : https://github.com/ragnar123 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fo', { + months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'), + weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'), + weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D. MMMM, YYYY LT' + }, + calendar : { + sameDay : '[Í dag kl.] LT', + nextDay : '[Í morgin kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[Í gjár kl.] LT', + lastWeek : '[síðstu] dddd [kl] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'um %s', + past : '%s síðani', + s : 'fá sekund', + m : 'ein minutt', + mm : '%d minuttir', + h : 'ein tími', + hh : '%d tímar', + d : 'ein dagur', + dd : '%d dagar', + M : 'ein mánaði', + MM : '%d mánaðir', + y : 'eitt ár', + yy : '%d ár' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : canadian french (fr-ca) +// author : Jonathan Abourbih : https://github.com/jonbca + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fr-ca', { + months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), + monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), + weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), + weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Aujourd\'hui à] LT', + nextDay: '[Demain à] LT', + nextWeek: 'dddd [à] LT', + lastDay: '[Hier à] LT', + lastWeek: 'dddd [dernier à] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dans %s', + past : 'il y a %s', + s : 'quelques secondes', + m : 'une minute', + mm : '%d minutes', + h : 'une heure', + hh : '%d heures', + d : 'un jour', + dd : '%d jours', + M : 'un mois', + MM : '%d mois', + y : 'un an', + yy : '%d ans' + }, + ordinal : function (number) { + return number + (number === 1 ? 'er' : ''); + } + }); +})); +// moment.js locale configuration +// locale : french (fr) +// author : John Fischer : https://github.com/jfroffice + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('fr', { + months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), + monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), + weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), + weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), + weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Aujourd\'hui à] LT', + nextDay: '[Demain à] LT', + nextWeek: 'dddd [à] LT', + lastDay: '[Hier à] LT', + lastWeek: 'dddd [dernier à] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dans %s', + past : 'il y a %s', + s : 'quelques secondes', + m : 'une minute', + mm : '%d minutes', + h : 'une heure', + hh : '%d heures', + d : 'un jour', + dd : '%d jours', + M : 'un mois', + MM : '%d mois', + y : 'un an', + yy : '%d ans' + }, + ordinal : function (number) { + return number + (number === 1 ? 'er' : ''); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : galician (gl) +// author : Juan G. Hurtado : https://github.com/juanghurtado + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('gl', { + months : 'Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro'.split('_'), + monthsShort : 'Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.'.split('_'), + weekdays : 'Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado'.split('_'), + weekdaysShort : 'Dom._Lun._Mar._Mér._Xov._Ven._Sáb.'.split('_'), + weekdaysMin : 'Do_Lu_Ma_Mé_Xo_Ve_Sá'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay : function () { + return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT'; + }, + nextDay : function () { + return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT'; + }, + nextWeek : function () { + return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; + }, + lastDay : function () { + return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT'; + }, + lastWeek : function () { + return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT'; + }, + sameElse : 'L' + }, + relativeTime : { + future : function (str) { + if (str === 'uns segundos') { + return 'nuns segundos'; + } + return 'en ' + str; + }, + past : 'hai %s', + s : 'uns segundos', + m : 'un minuto', + mm : '%d minutos', + h : 'unha hora', + hh : '%d horas', + d : 'un día', + dd : '%d días', + M : 'un mes', + MM : '%d meses', + y : 'un ano', + yy : '%d anos' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Hebrew (he) +// author : Tomer Cohen : https://github.com/tomer +// author : Moshe Simantov : https://github.com/DevelopmentIL +// author : Tal Ater : https://github.com/TalAter + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('he', { + months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'), + monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'), + weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'), + weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'), + weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [ב]MMMM YYYY', + LLL : 'D [ב]MMMM YYYY LT', + LLLL : 'dddd, D [ב]MMMM YYYY LT', + l : 'D/M/YYYY', + ll : 'D MMM YYYY', + lll : 'D MMM YYYY LT', + llll : 'ddd, D MMM YYYY LT' + }, + calendar : { + sameDay : '[היום ב־]LT', + nextDay : '[מחר ב־]LT', + nextWeek : 'dddd [בשעה] LT', + lastDay : '[אתמול ב־]LT', + lastWeek : '[ביום] dddd [האחרון בשעה] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'בעוד %s', + past : 'לפני %s', + s : 'מספר שניות', + m : 'דקה', + mm : '%d דקות', + h : 'שעה', + hh : function (number) { + if (number === 2) { + return 'שעתיים'; + } + return number + ' שעות'; + }, + d : 'יום', + dd : function (number) { + if (number === 2) { + return 'יומיים'; + } + return number + ' ימים'; + }, + M : 'חודש', + MM : function (number) { + if (number === 2) { + return 'חודשיים'; + } + return number + ' חודשים'; + }, + y : 'שנה', + yy : function (number) { + if (number === 2) { + return 'שנתיים'; + } + return number + ' שנים'; + } + } + }); +})); +// moment.js locale configuration +// locale : hindi (hi) +// author : Mayank Singhal : https://github.com/mayanksinghal + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('hi', { + months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'), + monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'), + weekdays : 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'), + weekdaysShort : 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'), + weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'), + longDateFormat : { + LT : 'A h:mm बजे', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[कल] LT', + nextWeek : 'dddd, LT', + lastDay : '[कल] LT', + lastWeek : '[पिछले] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s में', + past : '%s पहले', + s : 'कुछ ही क्षण', + m : 'एक मिनट', + mm : '%d मिनट', + h : 'एक घंटा', + hh : '%d घंटे', + d : 'एक दिन', + dd : '%d दिन', + M : 'एक महीने', + MM : '%d महीने', + y : 'एक वर्ष', + yy : '%d वर्ष' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + // Hindi notation for meridiems are quite fuzzy in practice. While there exists + // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi. + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'रात'; + } else if (hour < 10) { + return 'सुबह'; + } else if (hour < 17) { + return 'दोपहर'; + } else if (hour < 20) { + return 'शाम'; + } else { + return 'रात'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : hrvatski (hr) +// author : Bojan Marković : https://github.com/bmarkovic + +// based on (sl) translation by Robert Sedovšek + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'jedna minuta' : 'jedne minute'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minuta'; + } + return result; + case 'h': + return withoutSuffix ? 'jedan sat' : 'jednog sata'; + case 'hh': + if (number === 1) { + result += 'sat'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'sata'; + } else { + result += 'sati'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dana'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mjesec'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'mjeseca'; + } else { + result += 'mjeseci'; + } + return result; + case 'yy': + if (number === 1) { + result += 'godina'; + } else if (number === 2 || number === 3 || number === 4) { + result += 'godine'; + } else { + result += 'godina'; + } + return result; + } + } + + return moment.defineLocale('hr', { + months : 'sječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_'), + monthsShort : 'sje._vel._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split('_'), + weekdays : 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'), + weekdaysShort : 'ned._pon._uto._sri._čet._pet._sub.'.split('_'), + weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danas u] LT', + nextDay : '[sutra u] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[u] [nedjelju] [u] LT'; + case 3: + return '[u] [srijedu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[jučer u] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + return '[prošlu] dddd [u] LT'; + case 6: + return '[prošle] [subote] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prošli] dddd [u] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'prije %s', + s : 'par sekundi', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'dan', + dd : translate, + M : 'mjesec', + MM : translate, + y : 'godinu', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : hungarian (hu) +// author : Adam Brunner : https://github.com/adambrunner + +(function (factory) { + factory(moment); +}(function (moment) { + var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' '); + + function translate(number, withoutSuffix, key, isFuture) { + var num = number, + suffix; + + switch (key) { + case 's': + return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce'; + case 'm': + return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce'); + case 'mm': + return num + (isFuture || withoutSuffix ? ' perc' : ' perce'); + case 'h': + return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája'); + case 'hh': + return num + (isFuture || withoutSuffix ? ' óra' : ' órája'); + case 'd': + return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja'); + case 'dd': + return num + (isFuture || withoutSuffix ? ' nap' : ' napja'); + case 'M': + return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja'); + case 'MM': + return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja'); + case 'y': + return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve'); + case 'yy': + return num + (isFuture || withoutSuffix ? ' év' : ' éve'); + } + + return ''; + } + + function week(isFuture) { + return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]'; + } + + return moment.defineLocale('hu', { + months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'), + monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'), + weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'), + weekdaysShort : 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'), + weekdaysMin : 'v_h_k_sze_cs_p_szo'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'YYYY.MM.DD.', + LL : 'YYYY. MMMM D.', + LLL : 'YYYY. MMMM D., LT', + LLLL : 'YYYY. MMMM D., dddd LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 12) { + return isLower === true ? 'de' : 'DE'; + } else { + return isLower === true ? 'du' : 'DU'; + } + }, + calendar : { + sameDay : '[ma] LT[-kor]', + nextDay : '[holnap] LT[-kor]', + nextWeek : function () { + return week.call(this, true); + }, + lastDay : '[tegnap] LT[-kor]', + lastWeek : function () { + return week.call(this, false); + }, + sameElse : 'L' + }, + relativeTime : { + future : '%s múlva', + past : '%s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Armenian (hy-am) +// author : Armendarabyan : https://github.com/armendarabyan + +(function (factory) { + factory(moment); +}(function (moment) { + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_'), + 'accusative': 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function monthsShortCaseReplace(m, format) { + var monthsShort = 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'); + + return monthsShort[m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_'); + + return weekdays[m.day()]; + } + + return moment.defineLocale('hy-am', { + months : monthsCaseReplace, + monthsShort : monthsShortCaseReplace, + weekdays : weekdaysCaseReplace, + weekdaysShort : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'), + weekdaysMin : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY թ.', + LLL : 'D MMMM YYYY թ., LT', + LLLL : 'dddd, D MMMM YYYY թ., LT' + }, + calendar : { + sameDay: '[այսօր] LT', + nextDay: '[վաղը] LT', + lastDay: '[երեկ] LT', + nextWeek: function () { + return 'dddd [օրը ժամը] LT'; + }, + lastWeek: function () { + return '[անցած] dddd [օրը ժամը] LT'; + }, + sameElse: 'L' + }, + relativeTime : { + future : '%s հետո', + past : '%s առաջ', + s : 'մի քանի վայրկյան', + m : 'րոպե', + mm : '%d րոպե', + h : 'ժամ', + hh : '%d ժամ', + d : 'օր', + dd : '%d օր', + M : 'ամիս', + MM : '%d ամիս', + y : 'տարի', + yy : '%d տարի' + }, + + meridiem : function (hour) { + if (hour < 4) { + return 'գիշերվա'; + } else if (hour < 12) { + return 'առավոտվա'; + } else if (hour < 17) { + return 'ցերեկվա'; + } else { + return 'երեկոյան'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'DDD': + case 'w': + case 'W': + case 'DDDo': + if (number === 1) { + return number + '-ին'; + } + return number + '-րդ'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bahasa Indonesia (id) +// author : Mohammad Satrio Utomo : https://github.com/tyok +// reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('id', { + months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'), + monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des'.split('_'), + weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'), + weekdaysShort : 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'), + weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY [pukul] LT', + LLLL : 'dddd, D MMMM YYYY [pukul] LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 11) { + return 'pagi'; + } else if (hours < 15) { + return 'siang'; + } else if (hours < 19) { + return 'sore'; + } else { + return 'malam'; + } + }, + calendar : { + sameDay : '[Hari ini pukul] LT', + nextDay : '[Besok pukul] LT', + nextWeek : 'dddd [pukul] LT', + lastDay : '[Kemarin pukul] LT', + lastWeek : 'dddd [lalu pukul] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'dalam %s', + past : '%s yang lalu', + s : 'beberapa detik', + m : 'semenit', + mm : '%d menit', + h : 'sejam', + hh : '%d jam', + d : 'sehari', + dd : '%d hari', + M : 'sebulan', + MM : '%d bulan', + y : 'setahun', + yy : '%d tahun' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : icelandic (is) +// author : Hinrik Örn Sigurðsson : https://github.com/hinrik + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(n) { + if (n % 100 === 11) { + return true; + } else if (n % 10 === 1) { + return false; + } + return true; + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': + return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum'; + case 'm': + return withoutSuffix ? 'mínúta' : 'mínútu'; + case 'mm': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum'); + } else if (withoutSuffix) { + return result + 'mínúta'; + } + return result + 'mínútu'; + case 'hh': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum'); + } + return result + 'klukkustund'; + case 'd': + if (withoutSuffix) { + return 'dagur'; + } + return isFuture ? 'dag' : 'degi'; + case 'dd': + if (plural(number)) { + if (withoutSuffix) { + return result + 'dagar'; + } + return result + (isFuture ? 'daga' : 'dögum'); + } else if (withoutSuffix) { + return result + 'dagur'; + } + return result + (isFuture ? 'dag' : 'degi'); + case 'M': + if (withoutSuffix) { + return 'mánuður'; + } + return isFuture ? 'mánuð' : 'mánuði'; + case 'MM': + if (plural(number)) { + if (withoutSuffix) { + return result + 'mánuðir'; + } + return result + (isFuture ? 'mánuði' : 'mánuðum'); + } else if (withoutSuffix) { + return result + 'mánuður'; + } + return result + (isFuture ? 'mánuð' : 'mánuði'); + case 'y': + return withoutSuffix || isFuture ? 'ár' : 'ári'; + case 'yy': + if (plural(number)) { + return result + (withoutSuffix || isFuture ? 'ár' : 'árum'); + } + return result + (withoutSuffix || isFuture ? 'ár' : 'ári'); + } + } + + return moment.defineLocale('is', { + months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'), + weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'), + weekdaysShort : 'sun_mán_þri_mið_fim_fös_lau'.split('_'), + weekdaysMin : 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD/MM/YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY [kl.] LT', + LLLL : 'dddd, D. MMMM YYYY [kl.] LT' + }, + calendar : { + sameDay : '[í dag kl.] LT', + nextDay : '[á morgun kl.] LT', + nextWeek : 'dddd [kl.] LT', + lastDay : '[í gær kl.] LT', + lastWeek : '[síðasta] dddd [kl.] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'eftir %s', + past : 'fyrir %s síðan', + s : translate, + m : translate, + mm : translate, + h : 'klukkustund', + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : italian (it) +// author : Lorenzo : https://github.com/aliem +// author: Mattia Larentis: https://github.com/nostalgiaz + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('it', { + months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'), + monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'), + weekdays : 'Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato'.split('_'), + weekdaysShort : 'Dom_Lun_Mar_Mer_Gio_Ven_Sab'.split('_'), + weekdaysMin : 'D_L_Ma_Me_G_V_S'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Oggi alle] LT', + nextDay: '[Domani alle] LT', + nextWeek: 'dddd [alle] LT', + lastDay: '[Ieri alle] LT', + lastWeek: '[lo scorso] dddd [alle] LT', + sameElse: 'L' + }, + relativeTime : { + future : function (s) { + return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s; + }, + past : '%s fa', + s : 'alcuni secondi', + m : 'un minuto', + mm : '%d minuti', + h : 'un\'ora', + hh : '%d ore', + d : 'un giorno', + dd : '%d giorni', + M : 'un mese', + MM : '%d mesi', + y : 'un anno', + yy : '%d anni' + }, + ordinal: '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : japanese (ja) +// author : LI Long : https://github.com/baryon + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ja', { + months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'), + weekdaysShort : '日_月_火_水_木_金_土'.split('_'), + weekdaysMin : '日_月_火_水_木_金_土'.split('_'), + longDateFormat : { + LT : 'Ah時m分', + L : 'YYYY/MM/DD', + LL : 'YYYY年M月D日', + LLL : 'YYYY年M月D日LT', + LLLL : 'YYYY年M月D日LT dddd' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return '午前'; + } else { + return '午後'; + } + }, + calendar : { + sameDay : '[今日] LT', + nextDay : '[明日] LT', + nextWeek : '[来週]dddd LT', + lastDay : '[昨日] LT', + lastWeek : '[前週]dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s後', + past : '%s前', + s : '数秒', + m : '1分', + mm : '%d分', + h : '1時間', + hh : '%d時間', + d : '1日', + dd : '%d日', + M : '1ヶ月', + MM : '%dヶ月', + y : '1年', + yy : '%d年' + } + }); +})); +// moment.js locale configuration +// locale : Georgian (ka) +// author : Irakli Janiashvili : https://github.com/irakli-janiashvili + +(function (factory) { + factory(moment); +}(function (moment) { + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'), + 'accusative': 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_') + }, + + nounCase = (/D[oD] *MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'), + 'accusative': 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split('_') + }, + + nounCase = (/(წინა|შემდეგ)/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('ka', { + months : monthsCaseReplace, + monthsShort : 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ'.split('_'), + weekdaysMin : 'კვ_ორ_სა_ოთ_ხუ_პა_შა'.split('_'), + longDateFormat : { + LT : 'h:mm A', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[დღეს] LT[-ზე]', + nextDay : '[ხვალ] LT[-ზე]', + lastDay : '[გუშინ] LT[-ზე]', + nextWeek : '[შემდეგ] dddd LT[-ზე]', + lastWeek : '[წინა] dddd LT-ზე', + sameElse : 'L' + }, + relativeTime : { + future : function (s) { + return (/(წამი|წუთი|საათი|წელი)/).test(s) ? + s.replace(/ი$/, 'ში') : + s + 'ში'; + }, + past : function (s) { + if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) { + return s.replace(/(ი|ე)$/, 'ის წინ'); + } + if ((/წელი/).test(s)) { + return s.replace(/წელი$/, 'წლის წინ'); + } + }, + s : 'რამდენიმე წამი', + m : 'წუთი', + mm : '%d წუთი', + h : 'საათი', + hh : '%d საათი', + d : 'დღე', + dd : '%d დღე', + M : 'თვე', + MM : '%d თვე', + y : 'წელი', + yy : '%d წელი' + }, + ordinal : function (number) { + if (number === 0) { + return number; + } + + if (number === 1) { + return number + '-ლი'; + } + + if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) { + return 'მე-' + number; + } + + return number + '-ე'; + }, + week : { + dow : 1, + doy : 7 + } + }); +})); +// moment.js locale configuration +// locale : khmer (km) +// author : Kruy Vanna : https://github.com/kruyvanna + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('km', { + months: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), + monthsShort: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'), + weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'), + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd, D MMMM YYYY LT' + }, + calendar: { + sameDay: '[ថ្ងៃនៈ ម៉ោង] LT', + nextDay: '[ស្អែក ម៉ោង] LT', + nextWeek: 'dddd [ម៉ោង] LT', + lastDay: '[ម្សិលមិញ ម៉ោង] LT', + lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT', + sameElse: 'L' + }, + relativeTime: { + future: '%sទៀត', + past: '%sមុន', + s: 'ប៉ុន្មានវិនាទី', + m: 'មួយនាទី', + mm: '%d នាទី', + h: 'មួយម៉ោង', + hh: '%d ម៉ោង', + d: 'មួយថ្ងៃ', + dd: '%d ថ្ងៃ', + M: 'មួយខែ', + MM: '%d ខែ', + y: 'មួយឆ្នាំ', + yy: '%d ឆ្នាំ' + }, + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : korean (ko) +// +// authors +// +// - Kyungwook, Park : https://github.com/kyungw00k +// - Jeeeyul Lee +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ko', { + months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), + monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), + weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'), + weekdaysShort : '일_월_화_수_목_금_토'.split('_'), + weekdaysMin : '일_월_화_수_목_금_토'.split('_'), + longDateFormat : { + LT : 'A h시 m분', + L : 'YYYY.MM.DD', + LL : 'YYYY년 MMMM D일', + LLL : 'YYYY년 MMMM D일 LT', + LLLL : 'YYYY년 MMMM D일 dddd LT' + }, + meridiem : function (hour, minute, isUpper) { + return hour < 12 ? '오전' : '오후'; + }, + calendar : { + sameDay : '오늘 LT', + nextDay : '내일 LT', + nextWeek : 'dddd LT', + lastDay : '어제 LT', + lastWeek : '지난주 dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s 후', + past : '%s 전', + s : '몇초', + ss : '%d초', + m : '일분', + mm : '%d분', + h : '한시간', + hh : '%d시간', + d : '하루', + dd : '%d일', + M : '한달', + MM : '%d달', + y : '일년', + yy : '%d년' + }, + ordinal : '%d일', + meridiemParse : /(오전|오후)/, + isPM : function (token) { + return token === '오후'; + } + }); +})); +// moment.js locale configuration +// locale : Luxembourgish (lb) +// author : mweimerskirch : https://github.com/mweimerskirch, David Raison : https://github.com/kwisatz + +// Note: Luxembourgish has a very particular phonological rule ('Eifeler Regel') that causes the +// deletion of the final 'n' in certain contexts. That's what the 'eifelerRegelAppliesToWeekday' +// and 'eifelerRegelAppliesToNumber' methods are meant for + +(function (factory) { + factory(moment); +}(function (moment) { + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eng Minutt', 'enger Minutt'], + 'h': ['eng Stonn', 'enger Stonn'], + 'd': ['een Dag', 'engem Dag'], + 'M': ['ee Mount', 'engem Mount'], + 'y': ['ee Joer', 'engem Joer'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + function processFutureTime(string) { + var number = string.substr(0, string.indexOf(' ')); + if (eifelerRegelAppliesToNumber(number)) { + return 'a ' + string; + } + return 'an ' + string; + } + + function processPastTime(string) { + var number = string.substr(0, string.indexOf(' ')); + if (eifelerRegelAppliesToNumber(number)) { + return 'viru ' + string; + } + return 'virun ' + string; + } + + /** + * Returns true if the word before the given number loses the '-n' ending. + * e.g. 'an 10 Deeg' but 'a 5 Deeg' + * + * @param number {integer} + * @returns {boolean} + */ + function eifelerRegelAppliesToNumber(number) { + number = parseInt(number, 10); + if (isNaN(number)) { + return false; + } + if (number < 0) { + // Negative Number --> always true + return true; + } else if (number < 10) { + // Only 1 digit + if (4 <= number && number <= 7) { + return true; + } + return false; + } else if (number < 100) { + // 2 digits + var lastDigit = number % 10, firstDigit = number / 10; + if (lastDigit === 0) { + return eifelerRegelAppliesToNumber(firstDigit); + } + return eifelerRegelAppliesToNumber(lastDigit); + } else if (number < 10000) { + // 3 or 4 digits --> recursively check first digit + while (number >= 10) { + number = number / 10; + } + return eifelerRegelAppliesToNumber(number); + } else { + // Anything larger than 4 digits: recursively check first n-3 digits + number = number / 1000; + return eifelerRegelAppliesToNumber(number); + } + } + + return moment.defineLocale('lb', { + months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'), + weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'), + weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'), + weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'), + longDateFormat: { + LT: 'H:mm [Auer]', + L: 'DD.MM.YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[Haut um] LT', + sameElse: 'L', + nextDay: '[Muer um] LT', + nextWeek: 'dddd [um] LT', + lastDay: '[Gëschter um] LT', + lastWeek: function () { + // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule + switch (this.day()) { + case 2: + case 4: + return '[Leschten] dddd [um] LT'; + default: + return '[Leschte] dddd [um] LT'; + } + } + }, + relativeTime : { + future : processFutureTime, + past : processPastTime, + s : 'e puer Sekonnen', + m : processRelativeTime, + mm : '%d Minutten', + h : processRelativeTime, + hh : '%d Stonnen', + d : processRelativeTime, + dd : '%d Deeg', + M : processRelativeTime, + MM : '%d Méint', + y : processRelativeTime, + yy : '%d Joer' + }, + ordinal: '%d.', + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Lithuanian (lt) +// author : Mindaugas Mozūras : https://github.com/mmozuras + +(function (factory) { + factory(moment); +}(function (moment) { + var units = { + 'm' : 'minutė_minutės_minutę', + 'mm': 'minutės_minučių_minutes', + 'h' : 'valanda_valandos_valandą', + 'hh': 'valandos_valandų_valandas', + 'd' : 'diena_dienos_dieną', + 'dd': 'dienos_dienų_dienas', + 'M' : 'mėnuo_mėnesio_mėnesį', + 'MM': 'mėnesiai_mėnesių_mėnesius', + 'y' : 'metai_metų_metus', + 'yy': 'metai_metų_metus' + }, + weekDays = 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split('_'); + + function translateSeconds(number, withoutSuffix, key, isFuture) { + if (withoutSuffix) { + return 'kelios sekundės'; + } else { + return isFuture ? 'kelių sekundžių' : 'kelias sekundes'; + } + } + + function translateSingular(number, withoutSuffix, key, isFuture) { + return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]); + } + + function special(number) { + return number % 10 === 0 || (number > 10 && number < 20); + } + + function forms(key) { + return units[key].split('_'); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + if (number === 1) { + return result + translateSingular(number, withoutSuffix, key[0], isFuture); + } else if (withoutSuffix) { + return result + (special(number) ? forms(key)[1] : forms(key)[0]); + } else { + if (isFuture) { + return result + forms(key)[1]; + } else { + return result + (special(number) ? forms(key)[1] : forms(key)[2]); + } + } + } + + function relativeWeekDay(moment, format) { + var nominative = format.indexOf('dddd HH:mm') === -1, + weekDay = weekDays[moment.day()]; + + return nominative ? weekDay : weekDay.substring(0, weekDay.length - 2) + 'į'; + } + + return moment.defineLocale('lt', { + months : 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'), + monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'), + weekdays : relativeWeekDay, + weekdaysShort : 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'), + weekdaysMin : 'S_P_A_T_K_Pn_Š'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'YYYY [m.] MMMM D [d.]', + LLL : 'YYYY [m.] MMMM D [d.], LT [val.]', + LLLL : 'YYYY [m.] MMMM D [d.], dddd, LT [val.]', + l : 'YYYY-MM-DD', + ll : 'YYYY [m.] MMMM D [d.]', + lll : 'YYYY [m.] MMMM D [d.], LT [val.]', + llll : 'YYYY [m.] MMMM D [d.], ddd, LT [val.]' + }, + calendar : { + sameDay : '[Šiandien] LT', + nextDay : '[Rytoj] LT', + nextWeek : 'dddd LT', + lastDay : '[Vakar] LT', + lastWeek : '[Praėjusį] dddd LT', + sameElse : 'L' + }, + relativeTime : { + future : 'po %s', + past : 'prieš %s', + s : translateSeconds, + m : translateSingular, + mm : translate, + h : translateSingular, + hh : translate, + d : translateSingular, + dd : translate, + M : translateSingular, + MM : translate, + y : translateSingular, + yy : translate + }, + ordinal : function (number) { + return number + '-oji'; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : latvian (lv) +// author : Kristaps Karlsons : https://github.com/skakri + +(function (factory) { + factory(moment); +}(function (moment) { + var units = { + 'mm': 'minūti_minūtes_minūte_minūtes', + 'hh': 'stundu_stundas_stunda_stundas', + 'dd': 'dienu_dienas_diena_dienas', + 'MM': 'mēnesi_mēnešus_mēnesis_mēneši', + 'yy': 'gadu_gadus_gads_gadi' + }; + + function format(word, number, withoutSuffix) { + var forms = word.split('_'); + if (withoutSuffix) { + return number % 10 === 1 && number !== 11 ? forms[2] : forms[3]; + } else { + return number % 10 === 1 && number !== 11 ? forms[0] : forms[1]; + } + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + return number + ' ' + format(units[key], number, withoutSuffix); + } + + return moment.defineLocale('lv', { + months : 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'), + weekdaysShort : 'Sv_P_O_T_C_Pk_S'.split('_'), + weekdaysMin : 'Sv_P_O_T_C_Pk_S'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'YYYY. [gada] D. MMMM', + LLL : 'YYYY. [gada] D. MMMM, LT', + LLLL : 'YYYY. [gada] D. MMMM, dddd, LT' + }, + calendar : { + sameDay : '[Šodien pulksten] LT', + nextDay : '[Rīt pulksten] LT', + nextWeek : 'dddd [pulksten] LT', + lastDay : '[Vakar pulksten] LT', + lastWeek : '[Pagājušā] dddd [pulksten] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s vēlāk', + past : '%s agrāk', + s : 'dažas sekundes', + m : 'minūti', + mm : relativeTimeWithPlural, + h : 'stundu', + hh : relativeTimeWithPlural, + d : 'dienu', + dd : relativeTimeWithPlural, + M : 'mēnesi', + MM : relativeTimeWithPlural, + y : 'gadu', + yy : relativeTimeWithPlural + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : macedonian (mk) +// author : Borislav Mickov : https://github.com/B0k0 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('mk', { + months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'), + monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'), + weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'), + weekdaysShort : 'нед_пон_вто_сре_чет_пет_саб'.split('_'), + weekdaysMin : 'нe_пo_вт_ср_че_пе_сa'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'D.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Денес во] LT', + nextDay : '[Утре во] LT', + nextWeek : 'dddd [во] LT', + lastDay : '[Вчера во] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[Во изминатата] dddd [во] LT'; + case 1: + case 2: + case 4: + case 5: + return '[Во изминатиот] dddd [во] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'после %s', + past : 'пред %s', + s : 'неколку секунди', + m : 'минута', + mm : '%d минути', + h : 'час', + hh : '%d часа', + d : 'ден', + dd : '%d дена', + M : 'месец', + MM : '%d месеци', + y : 'година', + yy : '%d години' + }, + ordinal : function (number) { + var lastDigit = number % 10, + last2Digits = number % 100; + if (number === 0) { + return number + '-ев'; + } else if (last2Digits === 0) { + return number + '-ен'; + } else if (last2Digits > 10 && last2Digits < 20) { + return number + '-ти'; + } else if (lastDigit === 1) { + return number + '-ви'; + } else if (lastDigit === 2) { + return number + '-ри'; + } else if (lastDigit === 7 || lastDigit === 8) { + return number + '-ми'; + } else { + return number + '-ти'; + } + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : malayalam (ml) +// author : Floyd Pink : https://github.com/floydpink + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ml', { + months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'), + monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'), + weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'), + weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'), + weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'), + longDateFormat : { + LT : 'A h:mm -നു', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[ഇന്ന്] LT', + nextDay : '[നാളെ] LT', + nextWeek : 'dddd, LT', + lastDay : '[ഇന്നലെ] LT', + lastWeek : '[കഴിഞ്ഞ] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s കഴിഞ്ഞ്', + past : '%s മുൻപ്', + s : 'അൽപ നിമിഷങ്ങൾ', + m : 'ഒരു മിനിറ്റ്', + mm : '%d മിനിറ്റ്', + h : 'ഒരു മണിക്കൂർ', + hh : '%d മണിക്കൂർ', + d : 'ഒരു ദിവസം', + dd : '%d ദിവസം', + M : 'ഒരു മാസം', + MM : '%d മാസം', + y : 'ഒരു വർഷം', + yy : '%d വർഷം' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'രാത്രി'; + } else if (hour < 12) { + return 'രാവിലെ'; + } else if (hour < 17) { + return 'ഉച്ച കഴിഞ്ഞ്'; + } else if (hour < 20) { + return 'വൈകുന്നേരം'; + } else { + return 'രാത്രി'; + } + } + }); +})); +// moment.js locale configuration +// locale : Marathi (mr) +// author : Harshad Kale : https://github.com/kalehv + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('mr', { + months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'), + monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'), + weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'), + weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'), + weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'), + longDateFormat : { + LT : 'A h:mm वाजता', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[उद्या] LT', + nextWeek : 'dddd, LT', + lastDay : '[काल] LT', + lastWeek: '[मागील] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s नंतर', + past : '%s पूर्वी', + s : 'सेकंद', + m: 'एक मिनिट', + mm: '%d मिनिटे', + h : 'एक तास', + hh : '%d तास', + d : 'एक दिवस', + dd : '%d दिवस', + M : 'एक महिना', + MM : '%d महिने', + y : 'एक वर्ष', + yy : '%d वर्षे' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem: function (hour, minute, isLower) + { + if (hour < 4) { + return 'रात्री'; + } else if (hour < 10) { + return 'सकाळी'; + } else if (hour < 17) { + return 'दुपारी'; + } else if (hour < 20) { + return 'सायंकाळी'; + } else { + return 'रात्री'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Bahasa Malaysia (ms-MY) +// author : Weldan Jamili : https://github.com/weldan + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('ms-my', { + months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'), + monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'), + weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'), + weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'), + weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'), + longDateFormat : { + LT : 'HH.mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY [pukul] LT', + LLLL : 'dddd, D MMMM YYYY [pukul] LT' + }, + meridiem : function (hours, minutes, isLower) { + if (hours < 11) { + return 'pagi'; + } else if (hours < 15) { + return 'tengahari'; + } else if (hours < 19) { + return 'petang'; + } else { + return 'malam'; + } + }, + calendar : { + sameDay : '[Hari ini pukul] LT', + nextDay : '[Esok pukul] LT', + nextWeek : 'dddd [pukul] LT', + lastDay : '[Kelmarin pukul] LT', + lastWeek : 'dddd [lepas pukul] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'dalam %s', + past : '%s yang lepas', + s : 'beberapa saat', + m : 'seminit', + mm : '%d minit', + h : 'sejam', + hh : '%d jam', + d : 'sehari', + dd : '%d hari', + M : 'sebulan', + MM : '%d bulan', + y : 'setahun', + yy : '%d tahun' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Burmese (my) +// author : Squar team, mysquar.com + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '၁', + '2': '၂', + '3': '၃', + '4': '၄', + '5': '၅', + '6': '၆', + '7': '၇', + '8': '၈', + '9': '၉', + '0': '၀' + }, numberMap = { + '၁': '1', + '၂': '2', + '၃': '3', + '၄': '4', + '၅': '5', + '၆': '6', + '၇': '7', + '၈': '8', + '၉': '9', + '၀': '0' + }; + return moment.defineLocale('my', { + months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'), + monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'), + weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'), + weekdaysShort: 'နွေ_လာ_င်္ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'), + weekdaysMin: 'နွေ_လာ_င်္ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'), + longDateFormat: { + LT: 'HH:mm', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY LT', + LLLL: 'dddd D MMMM YYYY LT' + }, + calendar: { + sameDay: '[ယနေ.] LT [မှာ]', + nextDay: '[မနက်ဖြန်] LT [မှာ]', + nextWeek: 'dddd LT [မှာ]', + lastDay: '[မနေ.က] LT [မှာ]', + lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]', + sameElse: 'L' + }, + relativeTime: { + future: 'လာမည့် %s မှာ', + past: 'လွန်ခဲ့သော %s က', + s: 'စက္ကန်.အနည်းငယ်', + m: 'တစ်မိနစ်', + mm: '%d မိနစ်', + h: 'တစ်နာရီ', + hh: '%d နာရီ', + d: 'တစ်ရက်', + dd: '%d ရက်', + M: 'တစ်လ', + MM: '%d လ', + y: 'တစ်နှစ်', + yy: '%d နှစ်' + }, + preparse: function (string) { + return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + week: { + dow: 1, // Monday is the first day of the week. + doy: 4 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : norwegian bokmål (nb) +// authors : Espen Hovlandsdal : https://github.com/rexxars +// Sigurd Gartmann : https://github.com/sigurdga + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('nb', { + months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), + weekdaysShort : 'søn_man_tirs_ons_tors_fre_lør'.split('_'), + weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'H.mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY [kl.] LT', + LLLL : 'dddd D. MMMM YYYY [kl.] LT' + }, + calendar : { + sameDay: '[i dag kl.] LT', + nextDay: '[i morgen kl.] LT', + nextWeek: 'dddd [kl.] LT', + lastDay: '[i går kl.] LT', + lastWeek: '[forrige] dddd [kl.] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'for %s siden', + s : 'noen sekunder', + m : 'ett minutt', + mm : '%d minutter', + h : 'en time', + hh : '%d timer', + d : 'en dag', + dd : '%d dager', + M : 'en måned', + MM : '%d måneder', + y : 'ett år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : nepali/nepalese +// author : suvash : https://github.com/suvash + +(function (factory) { + factory(moment); +}(function (moment) { + var symbolMap = { + '1': '१', + '2': '२', + '3': '३', + '4': '४', + '5': '५', + '6': '६', + '7': '७', + '8': '८', + '9': '९', + '0': '०' + }, + numberMap = { + '१': '1', + '२': '2', + '३': '3', + '४': '4', + '५': '5', + '६': '6', + '७': '7', + '८': '8', + '९': '9', + '०': '0' + }; + + return moment.defineLocale('ne', { + months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'), + monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'), + weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'), + weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'), + weekdaysMin : 'आइ._सो._मङ्_बु._बि._शु._श.'.split('_'), + longDateFormat : { + LT : 'Aको h:mm बजे', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + preparse: function (string) { + return string.replace(/[१२३४५६७८९०]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + }, + meridiem : function (hour, minute, isLower) { + if (hour < 3) { + return 'राती'; + } else if (hour < 10) { + return 'बिहान'; + } else if (hour < 15) { + return 'दिउँसो'; + } else if (hour < 18) { + return 'बेलुका'; + } else if (hour < 20) { + return 'साँझ'; + } else { + return 'राती'; + } + }, + calendar : { + sameDay : '[आज] LT', + nextDay : '[भोली] LT', + nextWeek : '[आउँदो] dddd[,] LT', + lastDay : '[हिजो] LT', + lastWeek : '[गएको] dddd[,] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%sमा', + past : '%s अगाडी', + s : 'केही समय', + m : 'एक मिनेट', + mm : '%d मिनेट', + h : 'एक घण्टा', + hh : '%d घण्टा', + d : 'एक दिन', + dd : '%d दिन', + M : 'एक महिना', + MM : '%d महिना', + y : 'एक बर्ष', + yy : '%d बर्ष' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : dutch (nl) +// author : Joris Röling : https://github.com/jjupiter + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'), + monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'); + + return moment.defineLocale('nl', { + months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'), + monthsShort : function (m, format) { + if (/-MMM-/.test(format)) { + return monthsShortWithoutDots[m.month()]; + } else { + return monthsShortWithDots[m.month()]; + } + }, + weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'), + weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'), + weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD-MM-YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[vandaag om] LT', + nextDay: '[morgen om] LT', + nextWeek: 'dddd [om] LT', + lastDay: '[gisteren om] LT', + lastWeek: '[afgelopen] dddd [om] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'over %s', + past : '%s geleden', + s : 'een paar seconden', + m : 'één minuut', + mm : '%d minuten', + h : 'één uur', + hh : '%d uur', + d : 'één dag', + dd : '%d dagen', + M : 'één maand', + MM : '%d maanden', + y : 'één jaar', + yy : '%d jaar' + }, + ordinal : function (number) { + return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : norwegian nynorsk (nn) +// author : https://github.com/mechuwind + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('nn', { + months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), + weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), + weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'), + weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[I dag klokka] LT', + nextDay: '[I morgon klokka] LT', + nextWeek: 'dddd [klokka] LT', + lastDay: '[I går klokka] LT', + lastWeek: '[Føregåande] dddd [klokka] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'for %s sidan', + s : 'nokre sekund', + m : 'eit minutt', + mm : '%d minutt', + h : 'ein time', + hh : '%d timar', + d : 'ein dag', + dd : '%d dagar', + M : 'ein månad', + MM : '%d månader', + y : 'eit år', + yy : '%d år' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : polish (pl) +// author : Rafal Hirsz : https://github.com/evoL + +(function (factory) { + factory(moment); +}(function (moment) { + var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'), + monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_'); + + function plural(n) { + return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1); + } + + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'minuta' : 'minutę'; + case 'mm': + return result + (plural(number) ? 'minuty' : 'minut'); + case 'h': + return withoutSuffix ? 'godzina' : 'godzinę'; + case 'hh': + return result + (plural(number) ? 'godziny' : 'godzin'); + case 'MM': + return result + (plural(number) ? 'miesiące' : 'miesięcy'); + case 'yy': + return result + (plural(number) ? 'lata' : 'lat'); + } + } + + return moment.defineLocale('pl', { + months : function (momentToFormat, format) { + if (/D MMMM/.test(format)) { + return monthsSubjective[momentToFormat.month()]; + } else { + return monthsNominative[momentToFormat.month()]; + } + }, + monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'), + weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'), + weekdaysShort : 'nie_pon_wt_śr_czw_pt_sb'.split('_'), + weekdaysMin : 'N_Pn_Wt_Śr_Cz_Pt_So'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Dziś o] LT', + nextDay: '[Jutro o] LT', + nextWeek: '[W] dddd [o] LT', + lastDay: '[Wczoraj o] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[W zeszłą niedzielę o] LT'; + case 3: + return '[W zeszłą środę o] LT'; + case 6: + return '[W zeszłą sobotę o] LT'; + default: + return '[W zeszły] dddd [o] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : '%s temu', + s : 'kilka sekund', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : '1 dzień', + dd : '%d dni', + M : 'miesiąc', + MM : translate, + y : 'rok', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : brazilian portuguese (pt-br) +// author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('pt-br', { + months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), + monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), + weekdays : 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'), + weekdaysShort : 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), + weekdaysMin : 'dom_2ª_3ª_4ª_5ª_6ª_sáb'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY [às] LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY [às] LT' + }, + calendar : { + sameDay: '[Hoje às] LT', + nextDay: '[Amanhã às] LT', + nextWeek: 'dddd [às] LT', + lastDay: '[Ontem às] LT', + lastWeek: function () { + return (this.day() === 0 || this.day() === 6) ? + '[Último] dddd [às] LT' : // Saturday + Sunday + '[Última] dddd [às] LT'; // Monday - Friday + }, + sameElse: 'L' + }, + relativeTime : { + future : 'em %s', + past : '%s atrás', + s : 'segundos', + m : 'um minuto', + mm : '%d minutos', + h : 'uma hora', + hh : '%d horas', + d : 'um dia', + dd : '%d dias', + M : 'um mês', + MM : '%d meses', + y : 'um ano', + yy : '%d anos' + }, + ordinal : '%dº' + }); +})); +// moment.js locale configuration +// locale : portuguese (pt) +// author : Jefferson : https://github.com/jalex79 + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('pt', { + months : 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split('_'), + monthsShort : 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), + weekdays : 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split('_'), + weekdaysShort : 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), + weekdaysMin : 'dom_2ª_3ª_4ª_5ª_6ª_sáb'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D [de] MMMM [de] YYYY', + LLL : 'D [de] MMMM [de] YYYY LT', + LLLL : 'dddd, D [de] MMMM [de] YYYY LT' + }, + calendar : { + sameDay: '[Hoje às] LT', + nextDay: '[Amanhã às] LT', + nextWeek: 'dddd [às] LT', + lastDay: '[Ontem às] LT', + lastWeek: function () { + return (this.day() === 0 || this.day() === 6) ? + '[Último] dddd [às] LT' : // Saturday + Sunday + '[Última] dddd [às] LT'; // Monday - Friday + }, + sameElse: 'L' + }, + relativeTime : { + future : 'em %s', + past : 'há %s', + s : 'segundos', + m : 'um minuto', + mm : '%d minutos', + h : 'uma hora', + hh : '%d horas', + d : 'um dia', + dd : '%d dias', + M : 'um mês', + MM : '%d meses', + y : 'um ano', + yy : '%d anos' + }, + ordinal : '%dº', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : romanian (ro) +// author : Vlad Gurdiga : https://github.com/gurdiga +// author : Valentin Agachi : https://github.com/avaly + +(function (factory) { + factory(moment); +}(function (moment) { + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': 'minute', + 'hh': 'ore', + 'dd': 'zile', + 'MM': 'luni', + 'yy': 'ani' + }, + separator = ' '; + if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) { + separator = ' de '; + } + + return number + separator + format[key]; + } + + return moment.defineLocale('ro', { + months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'), + monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'), + weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'), + weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'), + weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY H:mm', + LLLL : 'dddd, D MMMM YYYY H:mm' + }, + calendar : { + sameDay: '[azi la] LT', + nextDay: '[mâine la] LT', + nextWeek: 'dddd [la] LT', + lastDay: '[ieri la] LT', + lastWeek: '[fosta] dddd [la] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'peste %s', + past : '%s în urmă', + s : 'câteva secunde', + m : 'un minut', + mm : relativeTimeWithPlural, + h : 'o oră', + hh : relativeTimeWithPlural, + d : 'o zi', + dd : relativeTimeWithPlural, + M : 'o lună', + MM : relativeTimeWithPlural, + y : 'un an', + yy : relativeTimeWithPlural + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : russian (ru) +// author : Viktorminator : https://github.com/Viktorminator +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут', + 'hh': 'час_часа_часов', + 'dd': 'день_дня_дней', + 'MM': 'месяц_месяца_месяцев', + 'yy': 'год_года_лет' + }; + if (key === 'm') { + return withoutSuffix ? 'минута' : 'минуту'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'), + 'accusative': 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function monthsShortCaseReplace(m, format) { + var monthsShort = { + 'nominative': 'янв_фев_мар_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'), + 'accusative': 'янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек'.split('_') + }, + + nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return monthsShort[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'), + 'accusative': 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_') + }, + + nounCase = (/\[ ?[Вв] ?(?:прошлую|следующую)? ?\] ?dddd/).test(format) ? + 'accusative' : + 'nominative'; + + return weekdays[nounCase][m.day()]; + } + + return moment.defineLocale('ru', { + months : monthsCaseReplace, + monthsShort : monthsShortCaseReplace, + weekdays : weekdaysCaseReplace, + weekdaysShort : 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + monthsParse : [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[й|я]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i], + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY г.', + LLL : 'D MMMM YYYY г., LT', + LLLL : 'dddd, D MMMM YYYY г., LT' + }, + calendar : { + sameDay: '[Сегодня в] LT', + nextDay: '[Завтра в] LT', + lastDay: '[Вчера в] LT', + nextWeek: function () { + return this.day() === 2 ? '[Во] dddd [в] LT' : '[В] dddd [в] LT'; + }, + lastWeek: function () { + switch (this.day()) { + case 0: + return '[В прошлое] dddd [в] LT'; + case 1: + case 2: + case 4: + return '[В прошлый] dddd [в] LT'; + case 3: + case 5: + case 6: + return '[В прошлую] dddd [в] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'через %s', + past : '%s назад', + s : 'несколько секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : 'час', + hh : relativeTimeWithPlural, + d : 'день', + dd : relativeTimeWithPlural, + M : 'месяц', + MM : relativeTimeWithPlural, + y : 'год', + yy : relativeTimeWithPlural + }, + + meridiemParse: /ночи|утра|дня|вечера/i, + isPM : function (input) { + return /^(дня|вечера)$/.test(input); + }, + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночи'; + } else if (hour < 12) { + return 'утра'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечера'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + return number + '-й'; + case 'D': + return number + '-го'; + case 'w': + case 'W': + return number + '-я'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : slovak (sk) +// author : Martin Minka : https://github.com/k2s +// based on work of petrbela : https://github.com/petrbela + +(function (factory) { + factory(moment); +}(function (moment) { + var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'), + monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_'); + + function plural(n) { + return (n > 1) && (n < 5); + } + + function translate(number, withoutSuffix, key, isFuture) { + var result = number + ' '; + switch (key) { + case 's': // a few seconds / in a few seconds / a few seconds ago + return (withoutSuffix || isFuture) ? 'pár sekúnd' : 'pár sekundami'; + case 'm': // a minute / in a minute / a minute ago + return withoutSuffix ? 'minúta' : (isFuture ? 'minútu' : 'minútou'); + case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'minúty' : 'minút'); + } else { + return result + 'minútami'; + } + break; + case 'h': // an hour / in an hour / an hour ago + return withoutSuffix ? 'hodina' : (isFuture ? 'hodinu' : 'hodinou'); + case 'hh': // 9 hours / in 9 hours / 9 hours ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'hodiny' : 'hodín'); + } else { + return result + 'hodinami'; + } + break; + case 'd': // a day / in a day / a day ago + return (withoutSuffix || isFuture) ? 'deň' : 'dňom'; + case 'dd': // 9 days / in 9 days / 9 days ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'dni' : 'dní'); + } else { + return result + 'dňami'; + } + break; + case 'M': // a month / in a month / a month ago + return (withoutSuffix || isFuture) ? 'mesiac' : 'mesiacom'; + case 'MM': // 9 months / in 9 months / 9 months ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'mesiace' : 'mesiacov'); + } else { + return result + 'mesiacmi'; + } + break; + case 'y': // a year / in a year / a year ago + return (withoutSuffix || isFuture) ? 'rok' : 'rokom'; + case 'yy': // 9 years / in 9 years / 9 years ago + if (withoutSuffix || isFuture) { + return result + (plural(number) ? 'roky' : 'rokov'); + } else { + return result + 'rokmi'; + } + break; + } + } + + return moment.defineLocale('sk', { + months : months, + monthsShort : monthsShort, + monthsParse : (function (months, monthsShort) { + var i, _monthsParse = []; + for (i = 0; i < 12; i++) { + // use custom parser to solve problem with July (červenec) + _monthsParse[i] = new RegExp('^' + months[i] + '$|^' + monthsShort[i] + '$', 'i'); + } + return _monthsParse; + }(months, monthsShort)), + weekdays : 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'), + weekdaysShort : 'ne_po_ut_st_št_pi_so'.split('_'), + weekdaysMin : 'ne_po_ut_st_št_pi_so'.split('_'), + longDateFormat : { + LT: 'H:mm', + L : 'DD.MM.YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd D. MMMM YYYY LT' + }, + calendar : { + sameDay: '[dnes o] LT', + nextDay: '[zajtra o] LT', + nextWeek: function () { + switch (this.day()) { + case 0: + return '[v nedeľu o] LT'; + case 1: + case 2: + return '[v] dddd [o] LT'; + case 3: + return '[v stredu o] LT'; + case 4: + return '[vo štvrtok o] LT'; + case 5: + return '[v piatok o] LT'; + case 6: + return '[v sobotu o] LT'; + } + }, + lastDay: '[včera o] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[minulú nedeľu o] LT'; + case 1: + case 2: + return '[minulý] dddd [o] LT'; + case 3: + return '[minulú stredu o] LT'; + case 4: + case 5: + return '[minulý] dddd [o] LT'; + case 6: + return '[minulú sobotu o] LT'; + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'za %s', + past : 'pred %s', + s : translate, + m : translate, + mm : translate, + h : translate, + hh : translate, + d : translate, + dd : translate, + M : translate, + MM : translate, + y : translate, + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : slovenian (sl) +// author : Robert Sedovšek : https://github.com/sedovsek + +(function (factory) { + factory(moment); +}(function (moment) { + function translate(number, withoutSuffix, key) { + var result = number + ' '; + switch (key) { + case 'm': + return withoutSuffix ? 'ena minuta' : 'eno minuto'; + case 'mm': + if (number === 1) { + result += 'minuta'; + } else if (number === 2) { + result += 'minuti'; + } else if (number === 3 || number === 4) { + result += 'minute'; + } else { + result += 'minut'; + } + return result; + case 'h': + return withoutSuffix ? 'ena ura' : 'eno uro'; + case 'hh': + if (number === 1) { + result += 'ura'; + } else if (number === 2) { + result += 'uri'; + } else if (number === 3 || number === 4) { + result += 'ure'; + } else { + result += 'ur'; + } + return result; + case 'dd': + if (number === 1) { + result += 'dan'; + } else { + result += 'dni'; + } + return result; + case 'MM': + if (number === 1) { + result += 'mesec'; + } else if (number === 2) { + result += 'meseca'; + } else if (number === 3 || number === 4) { + result += 'mesece'; + } else { + result += 'mesecev'; + } + return result; + case 'yy': + if (number === 1) { + result += 'leto'; + } else if (number === 2) { + result += 'leti'; + } else if (number === 3 || number === 4) { + result += 'leta'; + } else { + result += 'let'; + } + return result; + } + } + + return moment.defineLocale('sl', { + months : 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'), + monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'), + weekdays : 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'), + weekdaysShort : 'ned._pon._tor._sre._čet._pet._sob.'.split('_'), + weekdaysMin : 'ne_po_to_sr_če_pe_so'.split('_'), + longDateFormat : { + LT : 'H:mm', + L : 'DD. MM. YYYY', + LL : 'D. MMMM YYYY', + LLL : 'D. MMMM YYYY LT', + LLLL : 'dddd, D. MMMM YYYY LT' + }, + calendar : { + sameDay : '[danes ob] LT', + nextDay : '[jutri ob] LT', + + nextWeek : function () { + switch (this.day()) { + case 0: + return '[v] [nedeljo] [ob] LT'; + case 3: + return '[v] [sredo] [ob] LT'; + case 6: + return '[v] [soboto] [ob] LT'; + case 1: + case 2: + case 4: + case 5: + return '[v] dddd [ob] LT'; + } + }, + lastDay : '[včeraj ob] LT', + lastWeek : function () { + switch (this.day()) { + case 0: + case 3: + case 6: + return '[prejšnja] dddd [ob] LT'; + case 1: + case 2: + case 4: + case 5: + return '[prejšnji] dddd [ob] LT'; + } + }, + sameElse : 'L' + }, + relativeTime : { + future : 'čez %s', + past : '%s nazaj', + s : 'nekaj sekund', + m : translate, + mm : translate, + h : translate, + hh : translate, + d : 'en dan', + dd : translate, + M : 'en mesec', + MM : translate, + y : 'eno leto', + yy : translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Albanian (sq) +// author : Flakërim Ismani : https://github.com/flakerimi +// author: Menelion Elensúle: https://github.com/Oire (tests) +// author : Oerd Cukalla : https://github.com/oerd (fixes) + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('sq', { + months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'), + monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'), + weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'), + weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'), + weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'), + meridiem : function (hours, minutes, isLower) { + return hours < 12 ? 'PD' : 'MD'; + }, + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[Sot në] LT', + nextDay : '[Nesër në] LT', + nextWeek : 'dddd [në] LT', + lastDay : '[Dje në] LT', + lastWeek : 'dddd [e kaluar në] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'në %s', + past : '%s më parë', + s : 'disa sekonda', + m : 'një minutë', + mm : '%d minuta', + h : 'një orë', + hh : '%d orë', + d : 'një ditë', + dd : '%d ditë', + M : 'një muaj', + MM : '%d muaj', + y : 'një vit', + yy : '%d vite' + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Serbian-cyrillic (sr-cyrl) +// author : Milan Janačković : https://github.com/milan-j + +(function (factory) { + factory(moment); +}(function (moment) { + var translator = { + words: { //Different grammatical cases + m: ['један минут', 'једне минуте'], + mm: ['минут', 'минуте', 'минута'], + h: ['један сат', 'једног сата'], + hh: ['сат', 'сата', 'сати'], + dd: ['дан', 'дана', 'дана'], + MM: ['месец', 'месеца', 'месеци'], + yy: ['година', 'године', 'година'] + }, + correctGrammaticalCase: function (number, wordKey) { + return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]); + }, + translate: function (number, withoutSuffix, key) { + var wordKey = translator.words[key]; + if (key.length === 1) { + return withoutSuffix ? wordKey[0] : wordKey[1]; + } else { + return number + ' ' + translator.correctGrammaticalCase(number, wordKey); + } + } + }; + + return moment.defineLocale('sr-cyrl', { + months: ['јануар', 'фебруар', 'март', 'април', 'мај', 'јун', 'јул', 'август', 'септембар', 'октобар', 'новембар', 'децембар'], + monthsShort: ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'дец.'], + weekdays: ['недеља', 'понедељак', 'уторак', 'среда', 'четвртак', 'петак', 'субота'], + weekdaysShort: ['нед.', 'пон.', 'уто.', 'сре.', 'чет.', 'пет.', 'суб.'], + weekdaysMin: ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'], + longDateFormat: { + LT: 'H:mm', + L: 'DD. MM. YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[данас у] LT', + nextDay: '[сутра у] LT', + + nextWeek: function () { + switch (this.day()) { + case 0: + return '[у] [недељу] [у] LT'; + case 3: + return '[у] [среду] [у] LT'; + case 6: + return '[у] [суботу] [у] LT'; + case 1: + case 2: + case 4: + case 5: + return '[у] dddd [у] LT'; + } + }, + lastDay : '[јуче у] LT', + lastWeek : function () { + var lastWeekDays = [ + '[прошле] [недеље] [у] LT', + '[прошлог] [понедељка] [у] LT', + '[прошлог] [уторка] [у] LT', + '[прошле] [среде] [у] LT', + '[прошлог] [четвртка] [у] LT', + '[прошлог] [петка] [у] LT', + '[прошле] [суботе] [у] LT' + ]; + return lastWeekDays[this.day()]; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'за %s', + past : 'пре %s', + s : 'неколико секунди', + m : translator.translate, + mm : translator.translate, + h : translator.translate, + hh : translator.translate, + d : 'дан', + dd : translator.translate, + M : 'месец', + MM : translator.translate, + y : 'годину', + yy : translator.translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Serbian-latin (sr) +// author : Milan Janačković : https://github.com/milan-j + +(function (factory) { + factory(moment); +}(function (moment) { + var translator = { + words: { //Different grammatical cases + m: ['jedan minut', 'jedne minute'], + mm: ['minut', 'minute', 'minuta'], + h: ['jedan sat', 'jednog sata'], + hh: ['sat', 'sata', 'sati'], + dd: ['dan', 'dana', 'dana'], + MM: ['mesec', 'meseca', 'meseci'], + yy: ['godina', 'godine', 'godina'] + }, + correctGrammaticalCase: function (number, wordKey) { + return number === 1 ? wordKey[0] : (number >= 2 && number <= 4 ? wordKey[1] : wordKey[2]); + }, + translate: function (number, withoutSuffix, key) { + var wordKey = translator.words[key]; + if (key.length === 1) { + return withoutSuffix ? wordKey[0] : wordKey[1]; + } else { + return number + ' ' + translator.correctGrammaticalCase(number, wordKey); + } + } + }; + + return moment.defineLocale('sr', { + months: ['januar', 'februar', 'mart', 'april', 'maj', 'jun', 'jul', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'], + monthsShort: ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun', 'jul', 'avg.', 'sep.', 'okt.', 'nov.', 'dec.'], + weekdays: ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'], + weekdaysShort: ['ned.', 'pon.', 'uto.', 'sre.', 'čet.', 'pet.', 'sub.'], + weekdaysMin: ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'], + longDateFormat: { + LT: 'H:mm', + L: 'DD. MM. YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY LT', + LLLL: 'dddd, D. MMMM YYYY LT' + }, + calendar: { + sameDay: '[danas u] LT', + nextDay: '[sutra u] LT', + + nextWeek: function () { + switch (this.day()) { + case 0: + return '[u] [nedelju] [u] LT'; + case 3: + return '[u] [sredu] [u] LT'; + case 6: + return '[u] [subotu] [u] LT'; + case 1: + case 2: + case 4: + case 5: + return '[u] dddd [u] LT'; + } + }, + lastDay : '[juče u] LT', + lastWeek : function () { + var lastWeekDays = [ + '[prošle] [nedelje] [u] LT', + '[prošlog] [ponedeljka] [u] LT', + '[prošlog] [utorka] [u] LT', + '[prošle] [srede] [u] LT', + '[prošlog] [četvrtka] [u] LT', + '[prošlog] [petka] [u] LT', + '[prošle] [subote] [u] LT' + ]; + return lastWeekDays[this.day()]; + }, + sameElse : 'L' + }, + relativeTime : { + future : 'za %s', + past : 'pre %s', + s : 'nekoliko sekundi', + m : translator.translate, + mm : translator.translate, + h : translator.translate, + hh : translator.translate, + d : 'dan', + dd : translator.translate, + M : 'mesec', + MM : translator.translate, + y : 'godinu', + yy : translator.translate + }, + ordinal : '%d.', + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : swedish (sv) +// author : Jens Alm : https://github.com/ulmus + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('sv', { + months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'), + monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), + weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'), + weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'), + weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'YYYY-MM-DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[Idag] LT', + nextDay: '[Imorgon] LT', + lastDay: '[Igår] LT', + nextWeek: 'dddd LT', + lastWeek: '[Förra] dddd[en] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'om %s', + past : 'för %s sedan', + s : 'några sekunder', + m : 'en minut', + mm : '%d minuter', + h : 'en timme', + hh : '%d timmar', + d : 'en dag', + dd : '%d dagar', + M : 'en månad', + MM : '%d månader', + y : 'ett år', + yy : '%d år' + }, + ordinal : function (number) { + var b = number % 10, + output = (~~(number % 100 / 10) === 1) ? 'e' : + (b === 1) ? 'a' : + (b === 2) ? 'a' : + (b === 3) ? 'e' : 'e'; + return number + output; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : tamil (ta) +// author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 + +(function (factory) { + factory(moment); +}(function (moment) { + /*var symbolMap = { + '1': '௧', + '2': '௨', + '3': '௩', + '4': '௪', + '5': '௫', + '6': '௬', + '7': '௭', + '8': '௮', + '9': '௯', + '0': '௦' + }, + numberMap = { + '௧': '1', + '௨': '2', + '௩': '3', + '௪': '4', + '௫': '5', + '௬': '6', + '௭': '7', + '௮': '8', + '௯': '9', + '௦': '0' + }; */ + + return moment.defineLocale('ta', { + months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'), + monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'), + weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'), + weekdaysShort : 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'), + weekdaysMin : 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY, LT', + LLLL : 'dddd, D MMMM YYYY, LT' + }, + calendar : { + sameDay : '[இன்று] LT', + nextDay : '[நாளை] LT', + nextWeek : 'dddd, LT', + lastDay : '[நேற்று] LT', + lastWeek : '[கடந்த வாரம்] dddd, LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s இல்', + past : '%s முன்', + s : 'ஒரு சில விநாடிகள்', + m : 'ஒரு நிமிடம்', + mm : '%d நிமிடங்கள்', + h : 'ஒரு மணி நேரம்', + hh : '%d மணி நேரம்', + d : 'ஒரு நாள்', + dd : '%d நாட்கள்', + M : 'ஒரு மாதம்', + MM : '%d மாதங்கள்', + y : 'ஒரு வருடம்', + yy : '%d ஆண்டுகள்' + }, +/* preparse: function (string) { + return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) { + return numberMap[match]; + }); + }, + postformat: function (string) { + return string.replace(/\d/g, function (match) { + return symbolMap[match]; + }); + },*/ + ordinal : function (number) { + return number + 'வது'; + }, + + + // refer http://ta.wikipedia.org/s/1er1 + + meridiem : function (hour, minute, isLower) { + if (hour >= 6 && hour <= 10) { + return ' காலை'; + } else if (hour >= 10 && hour <= 14) { + return ' நண்பகல்'; + } else if (hour >= 14 && hour <= 18) { + return ' எற்பாடு'; + } else if (hour >= 18 && hour <= 20) { + return ' மாலை'; + } else if (hour >= 20 && hour <= 24) { + return ' இரவு'; + } else if (hour >= 0 && hour <= 6) { + return ' வைகறை'; + } + }, + week : { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : thai (th) +// author : Kridsada Thanabulpong : https://github.com/sirn + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('th', { + months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'), + monthsShort : 'มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา'.split('_'), + weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'), + weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference + weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'), + longDateFormat : { + LT : 'H นาฬิกา m นาที', + L : 'YYYY/MM/DD', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY เวลา LT', + LLLL : 'วันddddที่ D MMMM YYYY เวลา LT' + }, + meridiem : function (hour, minute, isLower) { + if (hour < 12) { + return 'ก่อนเที่ยง'; + } else { + return 'หลังเที่ยง'; + } + }, + calendar : { + sameDay : '[วันนี้ เวลา] LT', + nextDay : '[พรุ่งนี้ เวลา] LT', + nextWeek : 'dddd[หน้า เวลา] LT', + lastDay : '[เมื่อวานนี้ เวลา] LT', + lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT', + sameElse : 'L' + }, + relativeTime : { + future : 'อีก %s', + past : '%sที่แล้ว', + s : 'ไม่กี่วินาที', + m : '1 นาที', + mm : '%d นาที', + h : '1 ชั่วโมง', + hh : '%d ชั่วโมง', + d : '1 วัน', + dd : '%d วัน', + M : '1 เดือน', + MM : '%d เดือน', + y : '1 ปี', + yy : '%d ปี' + } + }); +})); +// moment.js locale configuration +// locale : Tagalog/Filipino (tl-ph) +// author : Dan Hagman + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tl-ph', { + months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'), + monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'), + weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'), + weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'), + weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'MM/D/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY LT', + LLLL : 'dddd, MMMM DD, YYYY LT' + }, + calendar : { + sameDay: '[Ngayon sa] LT', + nextDay: '[Bukas sa] LT', + nextWeek: 'dddd [sa] LT', + lastDay: '[Kahapon sa] LT', + lastWeek: 'dddd [huling linggo] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'sa loob ng %s', + past : '%s ang nakalipas', + s : 'ilang segundo', + m : 'isang minuto', + mm : '%d minuto', + h : 'isang oras', + hh : '%d oras', + d : 'isang araw', + dd : '%d araw', + M : 'isang buwan', + MM : '%d buwan', + y : 'isang taon', + yy : '%d taon' + }, + ordinal : function (number) { + return number; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : turkish (tr) +// authors : Erhan Gundogan : https://github.com/erhangundogan, +// Burak Yiğit Kaya: https://github.com/BYK + +(function (factory) { + factory(moment); +}(function (moment) { + var suffixes = { + 1: '\'inci', + 5: '\'inci', + 8: '\'inci', + 70: '\'inci', + 80: '\'inci', + + 2: '\'nci', + 7: '\'nci', + 20: '\'nci', + 50: '\'nci', + + 3: '\'üncü', + 4: '\'üncü', + 100: '\'üncü', + + 6: '\'ncı', + + 9: '\'uncu', + 10: '\'uncu', + 30: '\'uncu', + + 60: '\'ıncı', + 90: '\'ıncı' + }; + + return moment.defineLocale('tr', { + months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split('_'), + monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'), + weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split('_'), + weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'), + weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd, D MMMM YYYY LT' + }, + calendar : { + sameDay : '[bugün saat] LT', + nextDay : '[yarın saat] LT', + nextWeek : '[haftaya] dddd [saat] LT', + lastDay : '[dün] LT', + lastWeek : '[geçen hafta] dddd [saat] LT', + sameElse : 'L' + }, + relativeTime : { + future : '%s sonra', + past : '%s önce', + s : 'birkaç saniye', + m : 'bir dakika', + mm : '%d dakika', + h : 'bir saat', + hh : '%d saat', + d : 'bir gün', + dd : '%d gün', + M : 'bir ay', + MM : '%d ay', + y : 'bir yıl', + yy : '%d yıl' + }, + ordinal : function (number) { + if (number === 0) { // special case for zero + return number + '\'ıncı'; + } + var a = number % 10, + b = number % 100 - a, + c = number >= 100 ? 100 : null; + + return number + (suffixes[a] || suffixes[b] || suffixes[c]); + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Morocco Central Atlas Tamaziɣt in Latin (tzm-latn) +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tzm-latn', { + months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), + monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), + weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[asdkh g] LT', + nextDay: '[aska g] LT', + nextWeek: 'dddd [g] LT', + lastDay: '[assant g] LT', + lastWeek: 'dddd [g] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'dadkh s yan %s', + past : 'yan %s', + s : 'imik', + m : 'minuḍ', + mm : '%d minuḍ', + h : 'saɛa', + hh : '%d tassaɛin', + d : 'ass', + dd : '%d ossan', + M : 'ayowr', + MM : '%d iyyirn', + y : 'asgas', + yy : '%d isgasn' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : Morocco Central Atlas Tamaziɣt (tzm) +// author : Abdel Said : https://github.com/abdelsaid + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('tzm', { + months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), + monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), + weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'dddd D MMMM YYYY LT' + }, + calendar : { + sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', + nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', + nextWeek: 'dddd [ⴴ] LT', + lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', + lastWeek: 'dddd [ⴴ] LT', + sameElse: 'L' + }, + relativeTime : { + future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', + past : 'ⵢⴰⵏ %s', + s : 'ⵉⵎⵉⴽ', + m : 'ⵎⵉⵏⵓⴺ', + mm : '%d ⵎⵉⵏⵓⴺ', + h : 'ⵙⴰⵄⴰ', + hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', + d : 'ⴰⵙⵙ', + dd : '%d oⵙⵙⴰⵏ', + M : 'ⴰⵢoⵓⵔ', + MM : '%d ⵉⵢⵢⵉⵔⵏ', + y : 'ⴰⵙⴳⴰⵙ', + yy : '%d ⵉⵙⴳⴰⵙⵏ' + }, + week : { + dow : 6, // Saturday is the first day of the week. + doy : 12 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : ukrainian (uk) +// author : zemlanin : https://github.com/zemlanin +// Author : Menelion Elensúle : https://github.com/Oire + +(function (factory) { + factory(moment); +}(function (moment) { + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]); + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'mm': 'хвилина_хвилини_хвилин', + 'hh': 'година_години_годин', + 'dd': 'день_дні_днів', + 'MM': 'місяць_місяці_місяців', + 'yy': 'рік_роки_років' + }; + if (key === 'm') { + return withoutSuffix ? 'хвилина' : 'хвилину'; + } + else if (key === 'h') { + return withoutSuffix ? 'година' : 'годину'; + } + else { + return number + ' ' + plural(format[key], +number); + } + } + + function monthsCaseReplace(m, format) { + var months = { + 'nominative': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_'), + 'accusative': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_') + }, + + nounCase = (/D[oD]? *MMMM?/).test(format) ? + 'accusative' : + 'nominative'; + + return months[nounCase][m.month()]; + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'), + 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'), + 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_') + }, + + nounCase = (/(\[[ВвУу]\]) ?dddd/).test(format) ? + 'accusative' : + ((/\[?(?:минулої|наступної)? ?\] ?dddd/).test(format) ? + 'genitive' : + 'nominative'); + + return weekdays[nounCase][m.day()]; + } + + function processHoursFunction(str) { + return function () { + return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT'; + }; + } + + return moment.defineLocale('uk', { + months : monthsCaseReplace, + monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'), + weekdays : weekdaysCaseReplace, + weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD.MM.YYYY', + LL : 'D MMMM YYYY р.', + LLL : 'D MMMM YYYY р., LT', + LLLL : 'dddd, D MMMM YYYY р., LT' + }, + calendar : { + sameDay: processHoursFunction('[Сьогодні '), + nextDay: processHoursFunction('[Завтра '), + lastDay: processHoursFunction('[Вчора '), + nextWeek: processHoursFunction('[У] dddd ['), + lastWeek: function () { + switch (this.day()) { + case 0: + case 3: + case 5: + case 6: + return processHoursFunction('[Минулої] dddd [').call(this); + case 1: + case 2: + case 4: + return processHoursFunction('[Минулого] dddd [').call(this); + } + }, + sameElse: 'L' + }, + relativeTime : { + future : 'за %s', + past : '%s тому', + s : 'декілька секунд', + m : relativeTimeWithPlural, + mm : relativeTimeWithPlural, + h : 'годину', + hh : relativeTimeWithPlural, + d : 'день', + dd : relativeTimeWithPlural, + M : 'місяць', + MM : relativeTimeWithPlural, + y : 'рік', + yy : relativeTimeWithPlural + }, + + // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason + + meridiem : function (hour, minute, isLower) { + if (hour < 4) { + return 'ночі'; + } else if (hour < 12) { + return 'ранку'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечора'; + } + }, + + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + case 'w': + case 'W': + return number + '-й'; + case 'D': + return number + '-го'; + default: + return number; + } + }, + + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 1st is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : uzbek (uz) +// author : Sardor Muminov : https://github.com/muminoff + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('uz', { + months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'), + monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), + weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), + weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), + weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM YYYY', + LLL : 'D MMMM YYYY LT', + LLLL : 'D MMMM YYYY, dddd LT' + }, + calendar : { + sameDay : '[Бугун соат] LT [да]', + nextDay : '[Эртага] LT [да]', + nextWeek : 'dddd [куни соат] LT [да]', + lastDay : '[Кеча соат] LT [да]', + lastWeek : '[Утган] dddd [куни соат] LT [да]', + sameElse : 'L' + }, + relativeTime : { + future : 'Якин %s ичида', + past : 'Бир неча %s олдин', + s : 'фурсат', + m : 'бир дакика', + mm : '%d дакика', + h : 'бир соат', + hh : '%d соат', + d : 'бир кун', + dd : '%d кун', + M : 'бир ой', + MM : '%d ой', + y : 'бир йил', + yy : '%d йил' + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 7 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : vietnamese (vi) +// author : Bang Nguyen : https://github.com/bangnk + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('vi', { + months : 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split('_'), + monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'), + weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'), + weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'), + weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'), + longDateFormat : { + LT : 'HH:mm', + L : 'DD/MM/YYYY', + LL : 'D MMMM [năm] YYYY', + LLL : 'D MMMM [năm] YYYY LT', + LLLL : 'dddd, D MMMM [năm] YYYY LT', + l : 'DD/M/YYYY', + ll : 'D MMM YYYY', + lll : 'D MMM YYYY LT', + llll : 'ddd, D MMM YYYY LT' + }, + calendar : { + sameDay: '[Hôm nay lúc] LT', + nextDay: '[Ngày mai lúc] LT', + nextWeek: 'dddd [tuần tới lúc] LT', + lastDay: '[Hôm qua lúc] LT', + lastWeek: 'dddd [tuần rồi lúc] LT', + sameElse: 'L' + }, + relativeTime : { + future : '%s tới', + past : '%s trước', + s : 'vài giây', + m : 'một phút', + mm : '%d phút', + h : 'một giờ', + hh : '%d giờ', + d : 'một ngày', + dd : '%d ngày', + M : 'một tháng', + MM : '%d tháng', + y : 'một năm', + yy : '%d năm' + }, + ordinal : function (number) { + return number; + }, + week : { + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : chinese (zh-cn) +// author : suupic : https://github.com/suupic +// author : Zeno Zeng : https://github.com/zenozeng + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('zh-cn', { + months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'), + weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'), + weekdaysMin : '日_一_二_三_四_五_六'.split('_'), + longDateFormat : { + LT : 'Ah点mm', + L : 'YYYY-MM-DD', + LL : 'YYYY年MMMD日', + LLL : 'YYYY年MMMD日LT', + LLLL : 'YYYY年MMMD日ddddLT', + l : 'YYYY-MM-DD', + ll : 'YYYY年MMMD日', + lll : 'YYYY年MMMD日LT', + llll : 'YYYY年MMMD日ddddLT' + }, + meridiem : function (hour, minute, isLower) { + var hm = hour * 100 + minute; + if (hm < 600) { + return '凌晨'; + } else if (hm < 900) { + return '早上'; + } else if (hm < 1130) { + return '上午'; + } else if (hm < 1230) { + return '中午'; + } else if (hm < 1800) { + return '下午'; + } else { + return '晚上'; + } + }, + calendar : { + sameDay : function () { + return this.minutes() === 0 ? '[今天]Ah[点整]' : '[今天]LT'; + }, + nextDay : function () { + return this.minutes() === 0 ? '[明天]Ah[点整]' : '[明天]LT'; + }, + lastDay : function () { + return this.minutes() === 0 ? '[昨天]Ah[点整]' : '[昨天]LT'; + }, + nextWeek : function () { + var startOfWeek, prefix; + startOfWeek = moment().startOf('week'); + prefix = this.unix() - startOfWeek.unix() >= 7 * 24 * 3600 ? '[下]' : '[本]'; + return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm'; + }, + lastWeek : function () { + var startOfWeek, prefix; + startOfWeek = moment().startOf('week'); + prefix = this.unix() < startOfWeek.unix() ? '[上]' : '[本]'; + return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm'; + }, + sameElse : 'LL' + }, + ordinal : function (number, period) { + switch (period) { + case 'd': + case 'D': + case 'DDD': + return number + '日'; + case 'M': + return number + '月'; + case 'w': + case 'W': + return number + '周'; + default: + return number; + } + }, + relativeTime : { + future : '%s内', + past : '%s前', + s : '几秒', + m : '1分钟', + mm : '%d分钟', + h : '1小时', + hh : '%d小时', + d : '1天', + dd : '%d天', + M : '1个月', + MM : '%d个月', + y : '1年', + yy : '%d年' + }, + week : { + // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效 + dow : 1, // Monday is the first day of the week. + doy : 4 // The week that contains Jan 4th is the first week of the year. + } + }); +})); +// moment.js locale configuration +// locale : traditional chinese (zh-tw) +// author : Ben : https://github.com/ben-lin + +(function (factory) { + factory(moment); +}(function (moment) { + return moment.defineLocale('zh-tw', { + months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'), + monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'), + weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'), + weekdaysMin : '日_一_二_三_四_五_六'.split('_'), + longDateFormat : { + LT : 'Ah點mm', + L : 'YYYY年MMMD日', + LL : 'YYYY年MMMD日', + LLL : 'YYYY年MMMD日LT', + LLLL : 'YYYY年MMMD日ddddLT', + l : 'YYYY年MMMD日', + ll : 'YYYY年MMMD日', + lll : 'YYYY年MMMD日LT', + llll : 'YYYY年MMMD日ddddLT' + }, + meridiem : function (hour, minute, isLower) { + var hm = hour * 100 + minute; + if (hm < 900) { + return '早上'; + } else if (hm < 1130) { + return '上午'; + } else if (hm < 1230) { + return '中午'; + } else if (hm < 1800) { + return '下午'; + } else { + return '晚上'; + } + }, + calendar : { + sameDay : '[今天]LT', + nextDay : '[明天]LT', + nextWeek : '[下]ddddLT', + lastDay : '[昨天]LT', + lastWeek : '[上]ddddLT', + sameElse : 'L' + }, + ordinal : function (number, period) { + switch (period) { + case 'd' : + case 'D' : + case 'DDD' : + return number + '日'; + case 'M' : + return number + '月'; + case 'w' : + case 'W' : + return number + '週'; + default : + return number; + } + }, + relativeTime : { + future : '%s內', + past : '%s前', + s : '幾秒', + m : '一分鐘', + mm : '%d分鐘', + h : '一小時', + hh : '%d小時', + d : '一天', + dd : '%d天', + M : '一個月', + MM : '%d個月', + y : '一年', + yy : '%d年' + } + }); +})); + + moment.locale('en'); + + + /************************************ + Exposing Moment + ************************************/ + + function makeGlobal(shouldDeprecate) { + /*global ender:false */ + if (typeof ender !== 'undefined') { + return; + } + oldGlobalMoment = globalScope.moment; + if (shouldDeprecate) { + globalScope.moment = deprecate( + 'Accessing Moment through the global scope is ' + + 'deprecated, and will be removed in an upcoming ' + + 'release.', + moment); + } else { + globalScope.moment = moment; + } + } + + // CommonJS module is defined + if (hasModule) { + module.exports = moment; + } else if (typeof define === 'function' && define.amd) { + define('moment', function (require, exports, module) { + if (module.config && module.config() && module.config().noGlobal === true) { + // release the global variable + globalScope.moment = oldGlobalMoment; + } + + return moment; + }); + makeGlobal(true); + } else { + makeGlobal(); + } +}).call(this); diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 7f87e1a6f3eb46ccc2c3615bda089e145f8fa231..bd6fd2e5007df362818b832751df71805b5abafb 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -635,7 +635,7 @@ var OCdialogs = { type: entry.type, dir: dir, filename: entry.name, - date: relative_modified_date(entry.mtime/1000) + date: OC.Util.relativeModifiedDate(entry.mtime) }); if (entry.isPreviewAvailable) { var urlSpec = { diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 166210d0312296ee45c6c82e33b1d7d812a9364c..3af56c490e65e455196d2e133dce699970ec4f37 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -376,6 +376,9 @@ describe('Core base tests', function() { it('substitutes parameters', function() { expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); }); + it('doesnt error out with no params provided', function () { + expect(OC.generateUrl('apps/files/download{file}')).toEqual(OC.webroot + '/index.php/apps/files/download{file}'); + }); }); describe('Main menu mobile toggle', function() { var clock; diff --git a/core/l10n/ach.php b/core/l10n/ach.php index 2cbbaa45ca708af81c9ba205949910e6be3c48d4..e012fb1656e37336d55b280b5a0fe07fce8b4621 100644 --- a/core/l10n/ach.php +++ b/core/l10n/ach.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/ady.php b/core/l10n/ady.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ady.php +++ b/core/l10n/ady.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index d19954dcbd15e9aa744d2d32c01614fd437aafec..9bf6340f45b817022a0df644d5f9f69b1c02b057 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Instellings", "Saving..." => "Stoor...", -"seconds ago" => "sekondes gelede", -"_%n minute ago_::_%n minutes ago_" => array("%n minute gelede","%n minute gelede"), -"_%n hour ago_::_%n hours ago_" => array("%n ure gelde","%n ure gelede"), -"today" => "vandag", -"yesterday" => "gister", -"_%n day ago_::_%n days ago_" => array("%n dae gelede","%n dae gelede"), -"last month" => "verlede maand", -"_%n month ago_::_%n months ago_" => array("%n maande gelede","%n maande gelede"), -"last year" => "verlede jaar", -"years ago" => "jare gelede", "Reset password" => "Herstel wagwoord", "No" => "Nee", "Yes" => "Ja", diff --git a/core/l10n/ak.php b/core/l10n/ak.php index 09e36ba178654b3b1ae9bc986aea02a50d6cb51a..df47d5b95c23b1099934d74e675340a6cbc663c1 100644 --- a/core/l10n/ak.php +++ b/core/l10n/ak.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=n > 1;"; diff --git a/core/l10n/am_ET.php b/core/l10n/am_ET.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/am_ET.php +++ b/core/l10n/am_ET.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 69b4e13e1deb7da8af669d70371526575c1b49c6..4c154be74d4060b781c3dda6751831150de73091 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "File" => "ملف", "Folder" => "مجلد", "Saving..." => "جاري الحفظ...", -"seconds ago" => "منذ ثواني", -"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","","","",""), -"today" => "اليوم", -"yesterday" => "يوم أمس", -"_%n day ago_::_%n days ago_" => array("","","","","",""), -"last month" => "الشهر الماضي", -"_%n month ago_::_%n months ago_" => array("","","","","",""), -"last year" => "السنةالماضية", -"years ago" => "سنة مضت", "Reset password" => "تعديل كلمة السر", "No" => "لا", "Yes" => "نعم", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 50574e9b88a2ec82fc5ad83638f82e8df43f8bc7..8cd1a571c4b7dd58cc01a253850762442b6094de 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imaxe", "Audio" => "Audiu", "Saving..." => "Guardando...", -"seconds ago" => "hai segundos", -"_%n minute ago_::_%n minutes ago_" => array("hai %n minutu","hai %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n hores"), -"today" => "güei", -"yesterday" => "ayeri", -"_%n day ago_::_%n days ago_" => array("hai %n día","hai %n díes"), -"last month" => "mes caberu", -"_%n month ago_::_%n months ago_" => array("fai %n mes","hai %n meses"), -"last year" => "añu caberu", -"years ago" => "hai años", "Couldn't send reset email. Please contact your administrator." => "Nun pudo unviase'l corréu de reaniciu. Por favor, contauta col alministrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Unviósete al corréu l'enllaz pa reaniciar la to contraseña. Si nun lu recibes nuna cantidá razonable de tiempu, comprueba les tos carpetes de corréu puxarra.
    Si nun ta ehí, entruga al to alministrador llocal", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Los tos ficheros tán crifraos. Si nun habilitesti la clave de recuperación, nun habrá forma de recuperar los tos datos dempués de que se reanicie la to contraseña.
    Si nun tas seguru de qué facer, por favor contauta col to alministrador enantes que sigas.
    ¿De xuru quies siguir?", diff --git a/core/l10n/az.php b/core/l10n/az.php index 06c5bdad2933457547523373e96caca3847e9b84..a214bb0334b1d0f3b2ca6f55ad610bfad9457ae9 100644 --- a/core/l10n/az.php +++ b/core/l10n/az.php @@ -13,13 +13,14 @@ $TRANSLATIONS = array( "Settings" => "Quraşdırmalar", "Folder" => "Qovluq", "Saving..." => "Saxlama...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "Ok" => "Oldu", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Dayandır", +"Very weak password" => "Çox asan şifrə", +"Weak password" => "Asan şifrə", +"So-so password" => "Elə-belə şifrə", +"Good password" => "Yaxşı şifrə", +"Strong password" => "Çətin şifrə", "Share" => "Yayımla", "Error" => "Səhv", "Send" => "Göndər", @@ -27,12 +28,16 @@ $TRANSLATIONS = array( "can share" => "yayımlaya bilərsiniz", "delete" => "sil", "Email sent" => "Məktub göndərildi", +"Warning" => "Xəbərdarlıq", "Delete" => "Sil", "Add" => "Əlavə etmək", "Username" => "İstifadəçi adı", "Reset" => "Sıfırla", +"Personal" => "Şəxsi", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", +"Help" => "Kömək", +"Security Warning" => "Təhlükəsizlik xəbərdarlığı", "Password" => "Şifrə", "You are accessing the server from an untrusted domain." => "Siz serverə inamsız domain-dən girməyə çalışırsız.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Xahiş olunur inzibatçı ilə əlaqə saxlayasınız. Eger siz bu xidmətin inzibatçısısınizsa, \"trusted_domain\" configini config/config.php faylinda düzgün qeyd edin. Config nüsxəsi config/config.sample.php faylında qeyd edilmişdir." diff --git a/core/l10n/be.php b/core/l10n/be.php index b07d3a30604b7a03ba54a32e6872a9d9f89be76a..cf0e5e0c59ba6331fcc85f9a16dcca8cb928f80e 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -20,16 +20,6 @@ $TRANSLATIONS = array( "November" => "Лістапад", "December" => "Снежань", "Settings" => "Налады", -"seconds ago" => "Секунд таму", -"_%n minute ago_::_%n minutes ago_" => array("","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","",""), -"today" => "Сёння", -"yesterday" => "Ўчора", -"_%n day ago_::_%n days ago_" => array("","","",""), -"last month" => "У мінулым месяцы", -"_%n month ago_::_%n months ago_" => array("","","",""), -"last year" => "У мінулым годзе", -"years ago" => "Гадоў таму", "No" => "Не", "Yes" => "Так", "Choose" => "Выбар", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index ce4bc07dc7ba35b5244e382e02058006d3e8c16a..0047bba7250e24e50742f2e4fc477833c36527d4 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Изображение", "Audio" => "Аудио", "Saving..." => "Записване...", -"seconds ago" => "преди секунди", -"_%n minute ago_::_%n minutes ago_" => array("преди %n минута","преди %n минути"), -"_%n hour ago_::_%n hours ago_" => array("преди %n час","преди %n часа"), -"today" => "днес", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("преди %n ден","преди %n дена"), -"last month" => "последният месец", -"_%n month ago_::_%n months ago_" => array("преди %n месец","преди %n месеца"), -"last year" => "последната година", -"years ago" => "последните години", "Couldn't send reset email. Please contact your administrator." => "Неуспешено изпращане на имейл. Моля, свържи се с администратора.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Връзката за възстановяване на паролата е изпратена на твоя имейл. Ако не я получиш в разумен период от време, провери папката си за спам.
    Ако не е там се свържи с администратора.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Файловете ти са криптирани. Ако не си насторил ключ за възстановяване, няма да има възможност да възстановиш информацията си след като промениш паролата.
    Ако не си сигурен какво да направиш, моля свържи се с администратора преди да продължиш.
    Наистина ли си сигурен, че искаш да продължиш?", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index dafaa784238b28a8ba70627b5276725827ca1fc1..90560354127add1ad6f5431cfa90dfa040446332 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,5 +1,7 @@ "অজানা প্রকৃতির ফাইল", +"Invalid image" => "অবৈধ চিত্র", "Sunday" => "রবিবার", "Monday" => "সোমবার", "Tuesday" => "মঙ্গলবার", @@ -25,23 +27,16 @@ $TRANSLATIONS = array( "Image" => "চিত্র", "Audio" => "অডিও", "Saving..." => "সংরক্ষণ করা হচ্ছে..", -"seconds ago" => "সেকেন্ড পূর্বে", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "আজ", -"yesterday" => "গতকাল", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "গত মাস", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "গত বছর", -"years ago" => "বছর পূর্বে", "Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর", "No" => "না", "Yes" => "হ্যাঁ", "Choose" => "বেছে নিন", "Ok" => "তথাস্তু", "_{count} file conflict_::_{count} file conflicts_" => array("",""), -"Cancel" => "বাতির", +"New Files" => "নতুন ফাইল", +"Already existing files" => "বিদ্যমান ফাইল", +"Cancel" => "বাতিল", +"Continue" => "চালিয়ে যাও", "Shared" => "ভাগাভাগিকৃত", "Share" => "ভাগাভাগি কর", "Error" => "সমস্যা", @@ -78,6 +73,7 @@ $TRANSLATIONS = array( "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", +"Reset" => "পূণঃনির্ধানণ", "New password" => "নতুন কূটশব্দ", "Personal" => "ব্যক্তিগত", "Users" => "ব্যবহারকারী", diff --git a/core/l10n/bn_IN.php b/core/l10n/bn_IN.php index 8ac8c2f20f2958fdea53c8837a038d68d2937705..987c0c6585d671b9b616441f792f3010a129da18 100644 --- a/core/l10n/bn_IN.php +++ b/core/l10n/bn_IN.php @@ -3,10 +3,6 @@ $TRANSLATIONS = array( "Settings" => "সেটিংস", "Folder" => "ফোল্ডার", "Saving..." => "সংরক্ষণ করা হচ্ছে ...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "বাতিল করা", "Share" => "শেয়ার", diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 6181142234e6f0cdc902d82d97a385c08ed298ab..69e8e29f4385a548755ec43ae4857cbd298d330b 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -2,10 +2,6 @@ $TRANSLATIONS = array( "Folder" => "Fasikla", "Saving..." => "Spašavam...", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day ago_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","",""), "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Share" => "Podijeli", "Add" => "Dodaj" diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 0b4ce45e0457bf8362075330d660a4c23781c1ee..21a9841fadffa827818eecd698e7651c0d5aa0a0 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imatge", "Audio" => "Audio", "Saving..." => "Desant...", -"seconds ago" => "segons enrere", -"_%n minute ago_::_%n minutes ago_" => array("fa %n minut","fa %n minuts"), -"_%n hour ago_::_%n hours ago_" => array("fa %n hora","fa %n hores"), -"today" => "avui", -"yesterday" => "ahir", -"_%n day ago_::_%n days ago_" => array("fa %n dies","fa %n dies"), -"last month" => "el mes passat", -"_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), -"last year" => "l'any passat", -"years ago" => "anys enrere", "Couldn't send reset email. Please contact your administrator." => "No s'ha pogut restablir el correu. Contacteu amb l'administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu. Si no el rebeu en un temps raonable comproveu les carpetes de spam.
    Si no és allà, pregunteu a l'administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya.
    Si sabeu què fer, contacteu amb l'administrador abans de continuar.
    Voleu continuar?", diff --git a/core/l10n/ca@valencia.php b/core/l10n/ca@valencia.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ca@valencia.php +++ b/core/l10n/ca@valencia.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 3e2f322bb0253d365a69e2639e3c19dfb4ba5134..04861c9dbc46b7d456dcfcce309ee2809190dfb1 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Obrázek", "Audio" => "Audio", "Saving..." => "Ukládám...", -"seconds ago" => "před pár vteřinami", -"_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), -"_%n hour ago_::_%n hours ago_" => array("před %n hodinou","před %n hodinami","před %n hodinami"), -"today" => "dnes", -"yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array("před %n dnem","před %n dny","před %n dny"), -"last month" => "minulý měsíc", -"_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), -"last year" => "minulý rok", -"years ago" => "před lety", "Couldn't send reset email. Please contact your administrator." => "Nepodařilo se odeslat email pro změnu hesla. Kontaktujte vašeho administrátora.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu. Pokud jej v krátké době neobdržíte, zkontrolujte složku nevyžádané pošty a koš.
    Pokud jej nenaleznete, kontaktujte svého administrátora.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Vaše soubory jsou šifrovány. Pokud jste nepovolili klíč pro obnovení, neexistuje způsob jak získat po změně hesla vaše data.
    Pokud si nejste jisti co dělat, kontaktujte nejprve svého administrátora než budete pokračovat.
    Opravdu si přejete pokračovat?", @@ -191,6 +181,8 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Děkuji za trpělivost.", "You are accessing the server from an untrusted domain." => "Přistupujete na server z nedůvěryhodné domény.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontaktujte prosím správce. Pokud jste správce této instalace, nastavte \"trusted_domain\" v souboru config/config.php. Příklad konfigurace najdete v souboru config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže k označení této domény jako důvěryhodné.", +"Add \"%s\" as trusted domain" => "Přidat \"%s\" jako důvěryhodnou doménu", "%s will be updated to version %s." => "%s bude aktualizován na verzi %s.", "The following apps will be disabled:" => "Následující aplikace budou zakázány:", "The theme %s has been disabled." => "Vzhled %s byl zakázán.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index c625ac16facd7f8cf0864a89de47e07eaba5b479..5c61ddfb5e7c69eda57a51c9ae8bf1ffce2052f7 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Gosodiadau", "Folder" => "Plygell", "Saving..." => "Yn cadw...", -"seconds ago" => "eiliad yn ôl", -"_%n minute ago_::_%n minutes ago_" => array("","","",""), -"_%n hour ago_::_%n hours ago_" => array("","","",""), -"today" => "heddiw", -"yesterday" => "ddoe", -"_%n day ago_::_%n days ago_" => array("","","",""), -"last month" => "mis diwethaf", -"_%n month ago_::_%n months ago_" => array("","","",""), -"last year" => "y llynedd", -"years ago" => "blwyddyn yn ôl", "Reset password" => "Ailosod cyfrinair", "No" => "Na", "Yes" => "Ie", diff --git a/core/l10n/da.php b/core/l10n/da.php index 7bb882cdabf1e025c03f79d0a3bf96c36eea2e39..4faa85d8b86d22b4394b39d41db895a7275a7b8b 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "standsede vedligeholdelsestilstand", "Updated database" => "Opdaterede database", "Checked database schema update" => "Tjekket database schema opdatering", +"Checked database schema update for apps" => "Tjekkede databaseskemaets opdatering for apps", +"Updated \"%s\" to %s" => "Opdaterede \"%s\" til %s", "Disabled incompatible apps: %s" => "Deaktiverer inkombatible apps: %s", "No image or file provided" => "Ingen fil eller billede givet", "Unknown filetype" => "Ukendt filtype", @@ -36,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Billede", "Audio" => "Lyd", "Saving..." => "Gemmer...", -"seconds ago" => "sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), -"_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), -"last month" => "sidste måned", -"_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), -"last year" => "sidste år", -"years ago" => "år siden", "Couldn't send reset email. Please contact your administrator." => "Der opstod et problem under afsending af reset-emailen. Kontakt venligst systemadministratoren.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post: hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam/junk-mapper.
    Hvis det ikke er der, så spørg din lokale administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode.
    Hvis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter.
    Vil du fortsætte?", @@ -189,11 +181,14 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Tak for din tålmodighed.", "You are accessing the server from an untrusted domain." => "Du tilgår serveren fra et utroværdigt domæne", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontakt venligst din administrator. Hvis du er administrator, konfigurer \"trusted_domain\" indstillingen i config/config.php. Et eksempel kan ses i config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne.", +"Add \"%s\" as trusted domain" => "Tilføj \"%s\" som et troværdigt domæne", "%s will be updated to version %s." => "%s vil blive opdateret til version %s.", "The following apps will be disabled:" => "Følgende apps bliver deaktiveret:", "The theme %s has been disabled." => "Temaet, %s, er blevet deaktiveret.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Venligst sikrer dig en backup af databasen, config-mappen og data-mappen inden vi fortsætter.", "Start update" => "Begynd opdatering", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "For at undgå tidsudløb med større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:", "This ownCloud instance is currently being updated, which may take a while." => "Opdatere Owncloud, dette kan tage et stykke tid.", "Please reload this page after a short time to continue using ownCloud." => "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud." ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 74f0d4370ac574d2c1e76d923aec6fd1a53f2078..ecb90aa29abb631434dcbb11bee8982e1d2e0ee8 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Audio", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Couldn't send reset email. Please contact your administrator." => "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktiere Deinen Administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden. Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
    Wenn er nicht dort ist, frage Deinen lokalen Administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Sollten Sie keinen Wiederherstellungschlüssel aktiviert haben, gibt es keine Möglichkeit an Ihre Daten zu kommen, wenn das Passwort zurückgesetzt wird.
    Falls Sie sich nicht sicher sind, was Sie tun sollen, kontaktieren Sie bitte Ihren Administrator, bevor Sie fortfahren.
    Wollen Sie wirklich fortfahren?", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php index 87d9611f427f41a35f619a873189954069e1ca3b..cd17ea0bc1664eb7d9e98ca31faace423a5e121d 100644 --- a/core/l10n/de_AT.php +++ b/core/l10n/de_AT.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "November", "December" => "Dezember", "Settings" => "Einstellungen", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Abbrechen", "Continue" => "Weiter", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index bebd3ed1264363d74f19131963bfa1de5568220c..7acfbb8780e53178faf865c0be17a92cbe614159 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -26,16 +26,6 @@ $TRANSLATIONS = array( "File" => "Datei", "Folder" => "Ordner", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Reset password" => "Passwort zurücksetzen", "No" => "Nein", "Yes" => "Ja", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 07ed703c20399395408848f20134d6cabf8709ee..2b65d977ee1ddd2075017be9aa2e5c113037acec 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Audio", "Saving..." => "Speichern...", -"seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), -"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), -"today" => "Heute", -"yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), -"last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", "Couldn't send reset email. Please contact your administrator." => "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktieren Sie Ihren Administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse geschickt worden. Wenn Sie ihn nicht innerhalb einer vernünftigen Zeit empfängen, prüfen Sie Ihre Spam-Verzeichnisse.
    Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde.
    Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren.
    Wollen Sie wirklich fortfahren?", diff --git a/core/l10n/el.php b/core/l10n/el.php index 650c0bb4f1a4029234c48f4a455e8d585e4a4a0a..df55094ae6b67fb49bed08442f7deaa996e0d493 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Εικόνα", "Audio" => "Ήχος", "Saving..." => "Γίνεται αποθήκευση...", -"seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array("%n λεπτό πριν","%n λεπτά πριν"), -"_%n hour ago_::_%n hours ago_" => array("%n ώρα πριν","%n ώρες πριν"), -"today" => "σήμερα", -"yesterday" => "χτες", -"_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), -"last month" => "τελευταίο μήνα", -"_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), -"last year" => "τελευταίο χρόνο", -"years ago" => "χρόνια πριν", "Couldn't send reset email. Please contact your administrator." => "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ επικοινωνήστε με το διαχειριστή σας.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Ο σύνδεσμος για την επαναφορά του κωδικού πρόσβασής σας απεστάλη στο ηλ. ταχυδρομείο σας. Εάν δεν το παραλάβετε μέσα σε ένα εύλογο χρονικό διάστημα, ελέγξτε το φάκελο ανεπιθύμητων μηνυμάτων σας.
    Εάν δεν βρίσκεται εκεί ρωτήστε τον τοπικό διαχειριστή σας.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί επαναφοράς, δεν θα υπάρχει τρόπος να ανακτήσετε τα δεδομένα σας μετά την επαναφορά του κωδικού πρόσβασής σας.
    Εάν δεν είστε σίγουροι για το τι θα θέλατε να κάνετε, παρακαλώ επικοινωνήστε με το διαχειριστή σας πριν συνεχίσετε.
    Θέλετε στ' αλήθεια να συνεχίσετε;", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 461a44dd235a0e42fecfac16c211d3bbf9273ead..44114abbc8de40b2336407a2dc0e76bcfff63356 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Password" => "Passcode" ); diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index e9164deca50c744779f858c5a4708bb33940d1cc..ccfd56d02af5d6ce9168c47a204ff71732f53eae 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Image", "Audio" => "Audio", "Saving..." => "Saving...", -"seconds ago" => "seconds ago", -"_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), -"_%n hour ago_::_%n hours ago_" => array("%n hour ago","%n hours ago"), -"today" => "today", -"yesterday" => "yesterday", -"_%n day ago_::_%n days ago_" => array("%n day ago","%n days ago"), -"last month" => "last month", -"_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), -"last year" => "last year", -"years ago" => "years ago", "Couldn't send reset email. Please contact your administrator." => "Couldn't send reset email. Please contact your administrator.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?", @@ -191,6 +181,8 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Thank you for your patience.", "You are accessing the server from an untrusted domain." => "You are accessing the server from an untrusted domain.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain.", +"Add \"%s\" as trusted domain" => "Add \"%s\" as a trusted domain", "%s will be updated to version %s." => "%s will be updated to version %s.", "The following apps will be disabled:" => "The following apps will be disabled:", "The theme %s has been disabled." => "The theme %s has been disabled.", diff --git a/core/l10n/en_NZ.php b/core/l10n/en_NZ.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/en_NZ.php +++ b/core/l10n/en_NZ.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 64b30edaa9fcaf1e100a8b4a0eafa718cac7dfe3..a17b532c603a1f2f3ac0890ca02a09eb4cb653f1 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -27,16 +27,6 @@ $TRANSLATIONS = array( "Folder" => "Dosierujo", "Image" => "Bildo", "Saving..." => "Konservante...", -"seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array("antaŭ %n minuto","antaŭ %n minutoj"), -"_%n hour ago_::_%n hours ago_" => array("antaŭ %n horo","antaŭ %n horoj"), -"today" => "hodiaŭ", -"yesterday" => "hieraŭ", -"_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), -"last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), -"last year" => "lastajare", -"years ago" => "jaroj antaŭe", "Reset password" => "Rekomenci la pasvorton", "No" => "Ne", "Yes" => "Jes", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8ab9595417f2d5e0fa7366a25110a79a8c468b2a..f4ad2011253ba9fb31a8f7d256ab3f9f1a5ee7e3 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagen", "Audio" => "Audio", "Saving..." => "Guardando...", -"seconds ago" => "hace segundos", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","hace %n meses"), -"last year" => "el año pasado", -"years ago" => "hace años", "Couldn't send reset email. Please contact your administrator." => "La reiniciación de este correo electrónico no pudo ser enviada. Por favor, contacte a su administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Un enlace para reiniciar su contraseña ha sido enviado a su correo electrónico. Si usted no lo recibe en un tiempo razonable, revise su carpeta para spam/chatarra.
    Si no lo encuentra, pregunte a su administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Sus archivos están cifrados. Si no has activado la clave de recuperación, no habrá manera de recuperar los datos despues de que tu contraseña seá restablecida.
    Si no está seguro de lo que debe hacer, por favor contacte a su administrador antes de continuar.
    ¿Realmente desea continuar?", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index f90a300559648e0e2692b4d646cb522b2d24a4ba..d6112e4ef7ad9159216270b0a70c0158bbb1c524 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "Carpeta", "Image" => "Imagen", "Saving..." => "Guardando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"last year" => "el año pasado", -"years ago" => "años atrás", "Reset password" => "Restablecer contraseña", "No" => "No", "Yes" => "Sí", diff --git a/core/l10n/es_BO.php b/core/l10n/es_BO.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_BO.php +++ b/core/l10n/es_BO.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index 0f8f8772395de8d799ff14969a5fa3fa77f45167..68d82086933911fbdbb71bfeb7a98cb1b6e84b2f 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "November" => "Noviembre", "December" => "Diciembre", "Settings" => "Configuración", -"seconds ago" => "segundos antes", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "mes anterior", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "último año", -"years ago" => "años anteriores", "No" => "No", "Yes" => "Si", "Choose" => "Choose", diff --git a/core/l10n/es_CO.php b/core/l10n/es_CO.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_CO.php +++ b/core/l10n/es_CO.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CR.php b/core/l10n/es_CR.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_CR.php +++ b/core/l10n/es_CR.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_EC.php b/core/l10n/es_EC.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_EC.php +++ b/core/l10n/es_EC.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 993852e98264992f1c3473169da31dbb7385e1b0..a143d8abedb503dc454faab4eb731b5393ffe08c 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Archivo", "Folder" => "Carpeta", "Saving..." => "Guardando...", -"seconds ago" => "segundos antes", -"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"), -"today" => "hoy", -"yesterday" => "ayer", -"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), -"last month" => "el mes pasado", -"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"last year" => "el año pasado", -"years ago" => "años antes", "Reset password" => "Restablecer contraseña", "No" => "No", "Yes" => "Sí", diff --git a/core/l10n/es_PE.php b/core/l10n/es_PE.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_PE.php +++ b/core/l10n/es_PE.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_PY.php b/core/l10n/es_PY.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_PY.php +++ b/core/l10n/es_PY.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_US.php b/core/l10n/es_US.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_US.php +++ b/core/l10n/es_US.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_UY.php b/core/l10n/es_UY.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/es_UY.php +++ b/core/l10n/es_UY.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index bca3ca8a945c1783305bb7a37db422b55ebf70e6..d941c7d2bea68d158354aeceb1d03cd070be1d54 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Pilt", "Audio" => "Helid", "Saving..." => "Salvestamine...", -"seconds ago" => "sekundit tagasi", -"_%n minute ago_::_%n minutes ago_" => array("%n minut tagasi","%n minutit tagasi"), -"_%n hour ago_::_%n hours ago_" => array("%n tund tagasi","%n tundi tagasi"), -"today" => "täna", -"yesterday" => "eile", -"_%n day ago_::_%n days ago_" => array("%n päev tagasi","%n päeva tagasi"), -"last month" => "viimasel kuul", -"_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"), -"last year" => "viimasel aastal", -"years ago" => "aastat tagasi", "Couldn't send reset email. Please contact your administrator." => "Ei suutnud lähtestada e-maili. Palun kontakteeru süsteemihalduriga.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.
    Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge
    .Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada.
    Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga.
    Oled sa kindel, et sa soovid jätkata?", @@ -189,6 +179,7 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Täname kannatlikkuse eest.", "You are accessing the server from an untrusted domain." => "Sa kasutad serverit usalduseta asukohast", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Palun võta ühendust oma saidi administraatoriga. Kui sa oled ise administraator, siis seadista failis config/config.php sätet \"trusted_domain\". Näidis seadistused leiad failist config/config.sample.php.", +"Add \"%s\" as trusted domain" => "Lisa \"%s\" usaldusväärse domeenina", "%s will be updated to version %s." => "%s uuendatakse versioonile %s.", "The following apps will be disabled:" => "Järgnevad rakendid keelatakse:", "The theme %s has been disabled." => "Teema %s on keelatud.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index a07ec812292f73cdbc8a38c22b1f69697e733c37..b216b0660524723dc245cb3fdf34c919e45741e8 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Irudia", "Audio" => "Audio", "Saving..." => "Gordetzen...", -"seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), -"_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), -"today" => "gaur", -"yesterday" => "atzo", -"_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), -"last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), -"last year" => "joan den urtean", -"years ago" => "urte", "Couldn't send reset email. Please contact your administrator." => "Ezin da berrezartzeko eposta bidali. Mesedez jarri harremetan zure administradorearekin.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
    Ez baduzu arrazoizko denbora epe batean jasotzen begiratu zure zabor-posta karpetan.
    Hor ere ez badago kudeatzailearekin harremanetan jarri.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo.
    Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik.
    Ziur zaude aurrera jarraitu nahi duzula?", diff --git a/core/l10n/eu_ES.php b/core/l10n/eu_ES.php index 3606866bf73d3a2ef7041a33b0f90a0055b8ab67..92e64924b6135002116e9cd018735ebc08009411 100644 --- a/core/l10n/eu_ES.php +++ b/core/l10n/eu_ES.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Ezeztatu", "Delete" => "Ezabatu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index c4122a86428a279042b6a2136a95a68d3be84b9e..95d933c6039bc5ec5aaed73596122b8b8c92b759 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -34,16 +34,6 @@ $TRANSLATIONS = array( "Image" => "تصویر", "Audio" => "صدا", "Saving..." => "در حال ذخیره سازی...", -"seconds ago" => "ثانیه‌ها پیش", -"_%n minute ago_::_%n minutes ago_" => array("%n دقیقه قبل"), -"_%n hour ago_::_%n hours ago_" => array("%n ساعت قبل"), -"today" => "امروز", -"yesterday" => "دیروز", -"_%n day ago_::_%n days ago_" => array("%n روز قبل"), -"last month" => "ماه قبل", -"_%n month ago_::_%n months ago_" => array("%n ماه قبل"), -"last year" => "سال قبل", -"years ago" => "سال‌های قبل", "Couldn't send reset email. Please contact your administrator." => "ارسال ایمیل مجدد با مشکل مواجه شد . لطفا با مدیر سیستم تماس بگیرید .", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
    اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
    در صورت نبودن از مدیر خود بپرسید.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 2969e56af445c09fed4b1417e507408b5bbc8305..cfccf041907227e930344b163da02cf3f8a7d2a7 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -37,16 +37,6 @@ $TRANSLATIONS = array( "Image" => "Kuva", "Audio" => "Ääni", "Saving..." => "Tallennetaan...", -"seconds ago" => "sekuntia sitten", -"_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), -"_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), -"today" => "tänään", -"yesterday" => "eilen", -"_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), -"last month" => "viime kuussa", -"_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), -"last year" => "viime vuonna", -"years ago" => "vuotta sitten", "Couldn't send reset email. Please contact your administrator." => "Palautussähköpostin lähettäminen ei onnistunut. Ota yhteys ylläpitäjään.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Linkki salasanan palauttamista varten on lähetetty sähköpostitse. Jos et saa sähköpostiviestiä kohtuullisessa ajassa, tarkista roskapostikansiot.
    Jos et saa sähköpostiviestiä, ota yhteys paikalliseen ylläpitäjään.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Tiedostosi on salattu. Jos et ole ottanut käyttöön palautusavainta, tietojasi ei ole mahdollista palauttaa salasanan nollaamisen jälkeen.
    Jos et ole varma mitä tehdä, ota yhteys ylläpitäjään.
    Haluatko varmasti jatkaa?", @@ -190,6 +180,7 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Kiitos kärsivällisyydestäsi.", "You are accessing the server from an untrusted domain." => "Olet yhteydessä palvelimeen epäluotettavasta verkko-osoitteesta.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Ota yhteys ylläpitäjään. Jos olet tämän ownCloudin ylläpitäjä, määritä \"trusted_domain\"-asetus tiedostossa config/config.php. Esimerkkimääritys on nähtävillä tiedostossa config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen.", "Add \"%s\" as trusted domain" => "Lisää \"%s\" luotetuksi toimialueeksi", "%s will be updated to version %s." => "%s päivitetään versioon %s.", "The following apps will be disabled:" => "Seuraavat sovellukset poistetaan käytöstä:", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 60f79328b3091b84a1956d538cf92ea268467154..c9a7d023dda0defa28f9c40ced488f9c0315ee36 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Image", "Audio" => "Audio", "Saving..." => "Enregistrement...", -"seconds ago" => "il y a quelques secondes", -"_%n minute ago_::_%n minutes ago_" => array("il y a %n minute","il y a %n minutes"), -"_%n hour ago_::_%n hours ago_" => array("Il y a %n heure","Il y a %n heures"), -"today" => "aujourd'hui", -"yesterday" => "hier", -"_%n day ago_::_%n days ago_" => array("il y a %n jour","il y a %n jours"), -"last month" => "le mois dernier", -"_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"), -"last year" => "l'année dernière", -"years ago" => "il y a plusieurs années", "Couldn't send reset email. Please contact your administrator." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis à votre adresse email.
    Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
    Au besoin, contactez votre administrateur local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?", diff --git a/core/l10n/fr_CA.php b/core/l10n/fr_CA.php index 2cbbaa45ca708af81c9ba205949910e6be3c48d4..e012fb1656e37336d55b280b5a0fe07fce8b4621 100644 --- a/core/l10n/fr_CA.php +++ b/core/l10n/fr_CA.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eee969ea89b7c81b384e48fc0e1521476cd064ed..b5f2c416ece115def877703c08f38a4c97f8b1cb 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Imaxe", "Audio" => "Son", "Saving..." => "Gardando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","vai %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("hai %n hora","vai %n horas"), -"today" => "hoxe", -"yesterday" => "onte", -"_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), -"last month" => "último mes", -"_%n month ago_::_%n months ago_" => array("hai %n mes","vai %n meses"), -"last year" => "último ano", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Non foi posíbel enviar o coreo do restablecemento. Póñase en contacto co administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "A ligazón para restabelecer o seu contrasinal foi enviada ao seu correo. Se non a recibe nun prazo razoábel de tempo, vexa o seu cartafol de correo lixo.
    Se non está ali pregúntelle ao administrador local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Os seus ficheiros están cifrados. Se non activou a chave de recuperación, non haberá maneira de recuperar os datos após o restabelecemento do contrasinal.
    Se non está seguro de que facer, póñase en contacto co administrador antes de continuar.
    Confirma que quere?", diff --git a/core/l10n/he.php b/core/l10n/he.php index ef3161fb29ad95645775fdec7404e2a6f06e232a..e0277c68936f113d867c62203d0cdbdf71057ee3 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "הגדרות", "Folder" => "תיקייה", "Saving..." => "שמירה…", -"seconds ago" => "שניות", -"_%n minute ago_::_%n minutes ago_" => array("לפני %n דקה","לפני %n דקות"), -"_%n hour ago_::_%n hours ago_" => array("לפני %n שעה","לפני %n שעות"), -"today" => "היום", -"yesterday" => "אתמול", -"_%n day ago_::_%n days ago_" => array("לפני %n יום","לפני %n ימים"), -"last month" => "חודש שעבר", -"_%n month ago_::_%n months ago_" => array("לפני %n חודש","לפני %n חודשים"), -"last year" => "שנה שעברה", -"years ago" => "שנים", "Reset password" => "איפוס ססמה", "No" => "לא", "Yes" => "כן", @@ -48,6 +38,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "שגיאה במהלך שינוי ההגדרות", "Shared with you and the group {group} by {owner}" => "שותף אתך ועם הקבוצה {group} שבבעלות {owner}", "Shared with you by {owner}" => "שותף אתך על ידי {owner}", +"Share link" => "קישור לשיתוף", "Password protect" => "הגנה בססמה", "Email link to person" => "שליחת קישור בדוא״ל למשתמש", "Send" => "שליחה", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 65b60029d683269667ad994c9950164ff5c60641..0311dd34ab5f0fa18103ac6e168329e09086e04c 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "रद्द करें ", "Share" => "साझा करें", diff --git a/core/l10n/hi_IN.php b/core/l10n/hi_IN.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/hi_IN.php +++ b/core/l10n/hi_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/hr.php b/core/l10n/hr.php index a6acf8eb35fe091e6ece3836a692184e77db2fbb..ad2d38f2cae87ae43afa243e2b7b71409564744b 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Postavke", "Folder" => "mapa", "Saving..." => "Spremanje...", -"seconds ago" => "sekundi prije", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"today" => "danas", -"yesterday" => "jučer", -"_%n day ago_::_%n days ago_" => array("","",""), -"last month" => "prošli mjesec", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "prošlu godinu", -"years ago" => "godina", "Reset password" => "Poništavanje lozinke", "No" => "Ne", "Yes" => "Da", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index c5fcdc8556de08e6587cb05911d815107c0869cf..3493016282b25f3100930e39aca3aefabb911106 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Kép", "Audio" => "Hang", "Saving..." => "Mentés...", -"seconds ago" => "pár másodperce", -"_%n minute ago_::_%n minutes ago_" => array("%n perccel ezelőtt","%n perccel ezelőtt"), -"_%n hour ago_::_%n hours ago_" => array("%n órával ezelőtt","%n órával ezelőtt"), -"today" => "ma", -"yesterday" => "tegnap", -"_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), -"last month" => "múlt hónapban", -"_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), -"last year" => "tavaly", -"years ago" => "több éve", "Couldn't send reset email. Please contact your administrator." => "Visszaállítási e-mail nem küldhető. Kérjük, lépjen kapcsolatba a rendszergazdával.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "A jelszó felülírásához a linket e-mailben elküldtük. Ha a levél elfogadható időn belül nem érkezik meg, ellenőrizze a spam/levélszemét mappát.
    Ha nincs ott, kérdezze meg a helyi rendszergazdát.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Az Ön állományai titkosítva vannak. Ha nem engedélyezte korábban az adatok visszanyeréséhez szükséges kulcs használatát, akkor a jelszó megváltoztatását követően nem fog hozzáférni az adataihoz. Ha nem biztos abban, hogy mit kellene tennie, akkor kérdezze meg a rendszergazdát, mielőtt továbbmenne. Biztos, hogy folytatni kívánja?", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index 29df048fd945fac15502846eea9cb09d239d02b6..956fe561b5adebcf7e32421aba24b880de98f74a 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -19,10 +19,6 @@ $TRANSLATIONS = array( "October" => "Հոկտեմբեր", "November" => "Նոյեմբեր", "December" => "Դեկտեմբեր", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Delete" => "Ջնջել" ); diff --git a/core/l10n/ia.php b/core/l10n/ia.php index ea87fefdb8bd8bbbf51c85fd6d65811d7357d9d2..2e84854f58691d71ea070f05a64527e2aa1d8b48 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -31,16 +31,6 @@ $TRANSLATIONS = array( "Image" => "Imagine", "Audio" => "Audio", "Saving..." => "Salveguardante...", -"seconds ago" => "secundas passate", -"_%n minute ago_::_%n minutes ago_" => array("%n minuta passate","%n minutas passate"), -"_%n hour ago_::_%n hours ago_" => array("%n hora passate","%n horas passate"), -"today" => "hodie", -"yesterday" => "heri", -"_%n day ago_::_%n days ago_" => array("%n die ante","%n dies ante"), -"last month" => "ultime mense", -"_%n month ago_::_%n months ago_" => array("%n mense ante","%n menses ante"), -"last year" => "ultime anno", -"years ago" => "annos passate", "I know what I'm doing" => "Io sape lo que io es facente", "Reset password" => "Reinitialisar contrasigno", "Password can not be changed. Please contact your administrator." => "Contrasigno non pote esser modificate. Pro favor continge tu administrator.", diff --git a/core/l10n/id.php b/core/l10n/id.php index baf2cfcfc1c71180d534911af8e6fe15276deeb2..3bdbb1dc576ebd1824894538fd65462b5fc3d84c 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "Folder", "Image" => "gambar", "Saving..." => "Menyimpan...", -"seconds ago" => "beberapa detik yang lalu", -"_%n minute ago_::_%n minutes ago_" => array("%n menit yang lalu"), -"_%n hour ago_::_%n hours ago_" => array("%n jam yang lalu"), -"today" => "hari ini", -"yesterday" => "kemarin", -"_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), -"last month" => "bulan kemarin", -"_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), -"last year" => "tahun kemarin", -"years ago" => "beberapa tahun lalu", "Reset password" => "Atur ulang sandi", "No" => "Tidak", "Yes" => "Ya", diff --git a/core/l10n/io.php b/core/l10n/io.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/io.php +++ b/core/l10n/io.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/is.php b/core/l10n/is.php index a3ebb9ea0d80220d6189b6e4b37fee32e193a39d..6c3b1507cf33525459e2d51ad461cda79ff5024c 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Stillingar", "Folder" => "Mappa", "Saving..." => "Er að vista ...", -"seconds ago" => "sek.", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "í dag", -"yesterday" => "í gær", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "síðasta mánuði", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "síðasta ári", -"years ago" => "einhverjum árum", "Reset password" => "Endursetja lykilorð", "No" => "Nei", "Yes" => "Já", diff --git a/core/l10n/it.php b/core/l10n/it.php index 0da74fa961562714da2cc74128568cb5d9c4a2f5..1b85e41c0c5fd0adafc07a806795ed412a288642 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Immagine", "Audio" => "Audio", "Saving..." => "Salvataggio in corso...", -"seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), -"_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), -"today" => "oggi", -"yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), -"last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), -"last year" => "anno scorso", -"years ago" => "anni fa", "Couldn't send reset email. Please contact your administrator." => "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Il collegamento per reimpostare la password è stato inviato al tuo indirizzo di posta. Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
    Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.
    Se non sei sicuro, per favore contatta l'amministratore prima di proseguire.
    Vuoi davvero continuare?", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index d10bf0ade8bb60bf0bab6f95c843be39656fe185..1ede67fb97693ac4746600ad809219d67bb780c7 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "画像", "Audio" => "オーディオ", "Saving..." => "保存中...", -"seconds ago" => "数秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分前"), -"_%n hour ago_::_%n hours ago_" => array("%n 時間前"), -"today" => "今日", -"yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array("%n日前"), -"last month" => "1ヶ月前", -"_%n month ago_::_%n months ago_" => array("%nヶ月前"), -"last year" => "1年前", -"years ago" => "数年前", "Couldn't send reset email. Please contact your administrator." => "リセットメールを送信できませんでした。管理者に問い合わせてください。", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "パスワードをリセットする、このリンクをクリックするとメールを送信します。しばらく経ってもメールが届かなかった場合は、スパム/ジャンクフォルダを確認してください。
    それでも見つからなかった場合は、管理者に問合せてください。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "ファイルが暗号化されています。リカバリーキーが有効でない場合は、パスワードをリセットした後にあなたのデータを元に戻す方法はありません。
    どういうことか分からない場合は、操作を継続する前に管理者に連絡してください。
    続けてよろしいでしょうか?", diff --git a/core/l10n/jv.php b/core/l10n/jv.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/jv.php +++ b/core/l10n/jv.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index ea9da6ff9c2ef3c524dd4b9d523bf7762b12332e..872b81ea9dc8b21ca7a07e84e4eb453117e8f669 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "საქაღალდე", "Image" => "სურათი", "Saving..." => "შენახვა...", -"seconds ago" => "წამის წინ", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "დღეს", -"yesterday" => "გუშინ", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "გასულ თვეში", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "ბოლო წელს", -"years ago" => "წლის წინ", "Reset password" => "პაროლის შეცვლა", "No" => "არა", "Yes" => "კი", diff --git a/core/l10n/km.php b/core/l10n/km.php index 8e7c91ca5a19fe0dc390a333e73f3a75f3f7a4a0..c2da871a113442a2d050df5041d24aa041a5404a 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -24,16 +24,6 @@ $TRANSLATIONS = array( "Settings" => "ការកំណត់", "Folder" => "ថត", "Saving..." => "កំពុង​រក្សាទុក", -"seconds ago" => "វិនាទី​មុន", -"_%n minute ago_::_%n minutes ago_" => array("%n នាទី​មុន"), -"_%n hour ago_::_%n hours ago_" => array("%n ម៉ោង​មុន"), -"today" => "ថ្ងៃនេះ", -"yesterday" => "ម្សិលមិញ", -"_%n day ago_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), -"last month" => "ខែមុន", -"_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), -"last year" => "ឆ្នាំ​មុន", -"years ago" => "ឆ្នាំ​មុន", "Reset password" => "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត", "No" => "ទេ", "Yes" => "ព្រម", diff --git a/core/l10n/kn.php b/core/l10n/kn.php index dbedde7e637fc27c397b763e7b58eeca8338d6d2..1191769faa7803db6d9108d4bf2bd4a7a3d1a0e7 100644 --- a/core/l10n/kn.php +++ b/core/l10n/kn.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index ae9ad7eb78db7969a375f0edcd82843fe78c3ee3..e6ec791939987998bc24bbc834f88f8381682543 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Folder" => "폴더", "Image" => "그림", "Saving..." => "저장 중...", -"seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array("%n분 전 "), -"_%n hour ago_::_%n hours ago_" => array("%n시간 전 "), -"today" => "오늘", -"yesterday" => "어제", -"_%n day ago_::_%n days ago_" => array("%n일 전 "), -"last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array("%n달 전 "), -"last year" => "작년", -"years ago" => "년 전", "Couldn't send reset email. Please contact your administrator." => "재설정 메일을 보낼수 없습니다. 관리자에게 문의하십시오.", "Reset password" => "암호 재설정", "Password can not be changed. Please contact your administrator." => "비밀번호를 변경할수 없습니다. 관리자에게 문의하십시오.", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 49a24012e790dd56c581d8503720fd57511affed..775fdab1f95020773085d2f5891cb46b1dfb48d1 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -3,10 +3,6 @@ $TRANSLATIONS = array( "Settings" => "ده‌ستكاری", "Folder" => "بوخچه", "Saving..." => "پاشکه‌وتده‌کات...", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "Reset password" => "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی", "No" => "نەخێر", "Yes" => "بەڵێ", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index db697beb49333ca590a84adc81ab1e9727df3c7f..d5e38405cea7f15082f13bb9bfa33f2f73e05a5c 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -29,16 +29,6 @@ $TRANSLATIONS = array( "File" => "Fichier", "Folder" => "Dossier", "Saving..." => "Speicheren...", -"seconds ago" => "Sekonnen hir", -"_%n minute ago_::_%n minutes ago_" => array("%n Minutt hir","%n Minutten hir"), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "haut", -"yesterday" => "gëschter", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "leschte Mount", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "Lescht Joer", -"years ago" => "Joren hir", "Reset password" => "Passwuert zréck setzen", "No" => "Nee", "Yes" => "Jo", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index a9880f0246b040cad31ff41c5c36d99e3ee07691..0f86486a63dcf215e6312cfe5bb01c328d13088f 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Failas", "Folder" => "Katalogas", "Saving..." => "Saugoma...", -"seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array(" prieš %n minutę"," prieš %n minučių"," prieš %n minučių"), -"_%n hour ago_::_%n hours ago_" => array("prieš %n valandą","prieš %n valandų","prieš %n valandų"), -"today" => "šiandien", -"yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array("prieš %n dieną","prieš %n dienas","prieš %n dienų"), -"last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), -"last year" => "praeitais metais", -"years ago" => "prieš metus", "Reset password" => "Atkurti slaptažodį", "No" => "Ne", "Yes" => "Taip", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index cd1ec0e08960d6a5362c259c5941752b477651bb..1be63923f4f405b25953cb93028a2cfabdb2f9cb 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Iestatījumi", "Folder" => "Mape", "Saving..." => "Saglabā...", -"seconds ago" => "sekundes atpakaļ", -"_%n minute ago_::_%n minutes ago_" => array("Tagad, %n minūtes","Pirms %n minūtes","Pirms %n minūtēm"), -"_%n hour ago_::_%n hours ago_" => array("Šodien, %n stundas","Pirms %n stundas","Pirms %n stundām"), -"today" => "šodien", -"yesterday" => "vakar", -"_%n day ago_::_%n days ago_" => array("Šodien, %n dienas","Pirms %n dienas","Pirms %n dienām"), -"last month" => "pagājušajā mēnesī", -"_%n month ago_::_%n months ago_" => array("Šomēnes, %n mēneši","Pirms %n mēneša","Pirms %n mēnešiem"), -"last year" => "gājušajā gadā", -"years ago" => "gadus atpakaļ", "Reset password" => "Mainīt paroli", "No" => "Nē", "Yes" => "Jā", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index fa51a5e50cc817d5b6db85cd6120e35106723947..cefcf1e989d1fd7ffa37e527a9078131e7113d10 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -28,16 +28,6 @@ $TRANSLATIONS = array( "Settings" => "Подесувања", "Folder" => "Папка", "Saving..." => "Снимам...", -"seconds ago" => "пред секунди", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "денеска", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "минатиот месец", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "минатата година", -"years ago" => "пред години", "Reset password" => "Ресетирај лозинка", "No" => "Не", "Yes" => "Да", diff --git a/core/l10n/ml.php b/core/l10n/ml.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ml.php +++ b/core/l10n/ml.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ml_IN.php b/core/l10n/ml_IN.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ml_IN.php +++ b/core/l10n/ml_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/mn.php b/core/l10n/mn.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/mn.php +++ b/core/l10n/mn.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 3fe6a776e85d00db1c1b62517d71ec0f3d8b56d1..8eb766614a8a69ebcb7e9636052c4fe90a153c66 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -22,10 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Tetapan", "Folder" => "Folder", "Saving..." => "Simpan...", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "Reset password" => "Penetapan semula kata laluan", "No" => "Tidak", "Yes" => "Ya", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index d731d2fdae6d0543b5922ccc4674f80d9d8dcec0..d6a6632ecfc91a26c6498b0124a38ec86fd231e3 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -12,16 +12,6 @@ $TRANSLATIONS = array( "October" => "အောက်တိုဘာ", "November" => "နိုဝင်ဘာ", "December" => "ဒီဇင်ဘာ", -"seconds ago" => "စက္ကန့်အနည်းငယ်က", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "ယနေ့", -"yesterday" => "မနေ့က", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "ပြီးခဲ့သောလ", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "မနှစ်က", -"years ago" => "နှစ် အရင်က", "No" => "မဟုတ်ဘူး", "Yes" => "ဟုတ်", "Choose" => "ရွေးချယ်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 008c5ee376714e2b1905fd60a3b07c9616fe9811..21cbf739b67796eaf08d3976834f3571c5a35312 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Bilde", "Audio" => "Audio", "Saving..." => "Lagrer...", -"seconds ago" => "for få sekunder siden", -"_%n minute ago_::_%n minutes ago_" => array("for %n minutt siden","for %n minutter siden"), -"_%n hour ago_::_%n hours ago_" => array("for %n time siden","for %n timer siden"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("for %n dag siden","for %n dager siden"), -"last month" => "forrige måned", -"_%n month ago_::_%n months ago_" => array("for %n måned siden","for %n måneder siden"), -"last year" => "i fjor", -"years ago" => "årevis siden", "Couldn't send reset email. Please contact your administrator." => "Klarte ikke å sende e-post for tilbakestilling. Kontakt administratoren.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Lenken for tilbakestilling av passordet ditt er sendt til din e-postadresse. Hvis du ikke mottar den innen rimelig tid, sjekk mappen for søppelpost.
    Hvis du ikke finner den der, kontakt din lokale administrator.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at pasordet ditt er tilbakestilt.
    Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter.
    Vil du virkelig fortsette?", diff --git a/core/l10n/nds.php b/core/l10n/nds.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/nds.php +++ b/core/l10n/nds.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ne.php b/core/l10n/ne.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ne.php +++ b/core/l10n/ne.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 4eb2b8b988efd146516667d85fdd2928f1df46e4..f4ba6ae12f551aeddcbe22831f6643c518e2c66a 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Afbeelding", "Audio" => "Audio", "Saving..." => "Opslaan", -"seconds ago" => "seconden geleden", -"_%n minute ago_::_%n minutes ago_" => array("","%n minuten geleden"), -"_%n hour ago_::_%n hours ago_" => array("","%n uur geleden"), -"today" => "vandaag", -"yesterday" => "gisteren", -"_%n day ago_::_%n days ago_" => array("","%n dagen geleden"), -"last month" => "vorige maand", -"_%n month ago_::_%n months ago_" => array("","%n maanden geleden"), -"last year" => "vorig jaar", -"years ago" => "jaar geleden", "Couldn't send reset email. Please contact your administrator." => "Kon herstel e-mail niet versturen. Neem contact op met uw beheerder.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "De link om uw wachtwoord te herstellen is per e-mail naar u verstuurd. Als u dit bericht niet binnen redelijke tijd hebt ontvangen, controleer dan uw spammap.
    Als het daar niet in zit, neem dan contact op met uw beheerder.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Uw bestanden zijn versleuteld. Als u de herstelsleutel niet hebt geactiveerd, is er geen mogelijk om uw gegevens terug te krijgen nadat uw wachtwoord is hersteld.
    Als u niet weet wat u moet doen, neem dan eerst contact op met uw beheerder.
    Wilt u echt verder gaan?", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 2820bd356c0bafed7ff29167001e73ec731066e6..3c58ea6555e93dc22e2354cf68a04937a1fc7a83 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -31,16 +31,7 @@ $TRANSLATIONS = array( "Settings" => "Innstillingar", "Folder" => "Mappe", "Saving..." => "Lagrar …", -"seconds ago" => "sekund sidan", -"_%n minute ago_::_%n minutes ago_" => array("%n minutt sidan","%n minutt sidan"), -"_%n hour ago_::_%n hours ago_" => array("%n time sidan","%n timar sidan"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag sidan","%n dagar sidan"), -"last month" => "førre månad", -"_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), -"last year" => "i fjor", -"years ago" => "år sidan", +"I know what I'm doing" => "Eg veit kva eg gjer", "Reset password" => "Nullstill passord", "No" => "Nei", "Yes" => "Ja", @@ -57,6 +48,8 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valte)", "({count} selected)" => "({count} valte)", "Error loading file exists template" => "Klarte ikkje å lasta fil-finst-mal", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", "Shared" => "Delt", "Share" => "Del", "Error" => "Feil", @@ -65,7 +58,9 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Feil ved endring av tillatingar", "Shared with you and the group {group} by {owner}" => "Delt med deg og gruppa {group} av {owner}", "Shared with you by {owner}" => "Delt med deg av {owner}", +"Share link" => "Del lenkje", "Password protect" => "Passordvern", +"Choose a password for the public link" => "Vel eit passord for den offentlege lenkja", "Allow Public Upload" => "Tillat offentleg opplasting", "Email link to person" => "Send lenkja over e-post", "Send" => "Send", @@ -75,6 +70,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Vidaredeling er ikkje tillate", "Shared in {item} with {user}" => "Delt i {item} med {brukar}", "Unshare" => "Udel", +"can share" => "kan dela", "can edit" => "kan endra", "access control" => "tilgangskontroll", "create" => "lag", diff --git a/core/l10n/nqo.php b/core/l10n/nqo.php index dbedde7e637fc27c397b763e7b58eeca8338d6d2..1191769faa7803db6d9108d4bf2bd4a7a3d1a0e7 100644 --- a/core/l10n/nqo.php +++ b/core/l10n/nqo.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/oc.php b/core/l10n/oc.php index cba066819e070c1f35c53f5d860584d2835540fe..42ea079ec96ee0ce564d9a9b0803c453041761c0 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Configuracion", "Folder" => "Dorsièr", "Saving..." => "Enregistra...", -"seconds ago" => "segonda a", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "uèi", -"yesterday" => "ièr", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "mes passat", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "an passat", -"years ago" => "ans a", "Reset password" => "Senhal tornat botar", "No" => "Non", "Yes" => "Òc", diff --git a/core/l10n/or_IN.php b/core/l10n/or_IN.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/or_IN.php +++ b/core/l10n/or_IN.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 254684ad2042c64f0ce5ebfa0d6db68424e5e848..820ea0280ebeb3455ff77681b20904ce63ec69e7 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -21,16 +21,6 @@ $TRANSLATIONS = array( "December" => "ਦਸੰਬਰ", "Settings" => "ਸੈਟਿੰਗ", "Saving..." => "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ", -"seconds ago" => "ਸਕਿੰਟ ਪਹਿਲਾਂ", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "ਅੱਜ", -"yesterday" => "ਕੱਲ੍ਹ", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "ਪਿਛਲੇ ਮਹੀਨੇ", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "ਪਿਛਲੇ ਸਾਲ", -"years ago" => "ਸਾਲਾਂ ਪਹਿਲਾਂ", "No" => "ਨਹੀਂ", "Yes" => "ਹਾਂ", "Choose" => "ਚੁਣੋ", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index b112167c2d07dfdadfbfddb277e7c96124bd23b7..bfd2b6da6efbb97426a2280a21a816065a5873a1 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Obraz", "Audio" => "Dźwięk", "Saving..." => "Zapisywanie...", -"seconds ago" => "sekund temu", -"_%n minute ago_::_%n minutes ago_" => array("%n minute temu","%n minut temu","%n minut temu"), -"_%n hour ago_::_%n hours ago_" => array("%n godzine temu","%n godzin temu","%n godzin temu"), -"today" => "dziś", -"yesterday" => "wczoraj", -"_%n day ago_::_%n days ago_" => array("%n dzień temu","%n dni temu","%n dni temu"), -"last month" => "w zeszłym miesiącu", -"_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), -"last year" => "w zeszłym roku", -"years ago" => "lat temu", "Couldn't send reset email. Please contact your administrator." => "Nie mogę wysłać maila resetującego. Skontaktuj się z administratorem.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Link do zresetowanego hasła, został wysłany na twój adres e-mail. Jeśli nie dostałeś wiadomości w rozsądnym czasie, sprawdź folder ze spamem.
    Jeśli nie ma wiadomości w tym folderze, skontaktuj się ze swoim administratorem.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Twoje pliki są zaszyfrowane. Jeśli nie włączyłeś klucza odzyskiwania, nie będzie możliwości odszyfrowania tych plików po zresetowaniu hasła.
    Jeśli nie jesteś pewien co zrobić, skontaktuj się ze swoim administratorem, zanim bedziesz kontynuował.
    Czy chcesz kontynuować?\n ", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 3e6296893037dc8b8fc4c4b1083641feb024d078..79abd1964d630b22093387e57de16beae7c5531c 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagem", "Audio" => "Audio", "Saving..." => "Salvando...", -"seconds ago" => "segundos atrás", -"_%n minute ago_::_%n minutes ago_" => array(" há %n minuto","há %n minutos"), -"_%n hour ago_::_%n hours ago_" => array("há %n hora","há %n horas"), -"today" => "hoje", -"yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array("há %n dia","há %n dias"), -"last month" => "último mês", -"_%n month ago_::_%n months ago_" => array("há %n mês","há %n meses"), -"last year" => "último ano", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Não foi possível enviar e-mail de redefinição. Por favor, contate o administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "O link para redefinir sua senha foi enviada para o seu e-mail. Se você não recebê-lo dentro de um período razoável de tempo, verifique suas pastas de spam/lixo.
    Se ele não estiver lá, pergunte ao administrador do local.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Seus arquivos são criptografados. Se você não ativou a chave de recuperação, não haverá maneira de obter seus dados de volta após a sua senha ser redefinida.
    Se você não tem certeza do que fazer, por favor, contate o administrador antes de continuar.
    Você realmente deseja continuar?", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 687dfce41ce8a30418a549e8eedcd47310b2898e..24f4d0c2f4dccf6df2d17de1a31877739a2740aa 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "Desactivado o modo de manutenção", "Updated database" => "Base de dados actualizada", "Checked database schema update" => "Atualização do esquema da base de dados verificada.", +"Checked database schema update for apps" => "Atualização do esquema da base de dados verificada.", +"Updated \"%s\" to %s" => "Actualizado \"%s\" para %s", "Disabled incompatible apps: %s" => "Apps incompatíveis desativadas: %s", "No image or file provided" => "Não foi selecionado nenhum ficheiro para importar", "Unknown filetype" => "Ficheiro desconhecido", @@ -36,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Imagem", "Audio" => "Audio", "Saving..." => "A guardar...", -"seconds ago" => "Minutos atrás", -"_%n minute ago_::_%n minutes ago_" => array("%n minuto atrás","%n minutos atrás"), -"_%n hour ago_::_%n hours ago_" => array("%n hora atrás","%n horas atrás"), -"today" => "hoje", -"yesterday" => "ontem", -"_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"), -"last month" => "ultímo mês", -"_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"), -"last year" => "ano passado", -"years ago" => "anos atrás", "Couldn't send reset email. Please contact your administrator." => "Ocorreu um problema com o envio do e-mail, por favor contactar o administrador.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "O link para fazer reset à sua password foi enviado para o seu e-mail.
    Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
    Se não o encontrar, por favor contacte o seu administrador.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?", @@ -189,11 +181,14 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Obrigado pela sua paciência.", "You are accessing the server from an untrusted domain." => "Está a aceder ao servidor a partir de um domínio que não é de confiança.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Por favor contacte o seu administrador. Se é um administrador desta instância, configure as definições \"trusted_domain\" em config/config.php. Um exemplo de configuração é fornecido em config/config.sample.php.", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio.", +"Add \"%s\" as trusted domain" => "Adicionar \"%s\" como um domínio de confiança", "%s will be updated to version %s." => "O %s irá ser atualizado para a versão %s.", "The following apps will be disabled:" => "As seguintes apps irão ser desativadas:", "The theme %s has been disabled." => "O tema %s foi desativado.", "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Por favor garanta a cópia de segurança da base de dados e das pastas 'config' e 'data' antes de prosseguir.", "Start update" => "Iniciar atualização", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "Para evitar tempos de espera com instalações maiores, você pode em vez disso, executar o seguinte comando a partir do diretório de instalação:", "This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está a ser actualizada, poderá demorar algum tempo.", "Please reload this page after a short time to continue using ownCloud." => "Por favo recarregue esta página após algum tempo para continuar a usar ownCloud." ); diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 030c0fd0044114e8acf54ce882e0e5ab1a331753..55f67a032d7a0393d1740db6385a0ad2b057e16e 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -33,16 +33,6 @@ $TRANSLATIONS = array( "Image" => "Imagine", "Audio" => "Audio", "Saving..." => "Se salvează...", -"seconds ago" => "secunde în urmă", -"_%n minute ago_::_%n minutes ago_" => array("acum %n minut","acum %n minute","acum %n minute"), -"_%n hour ago_::_%n hours ago_" => array("acum %n oră","acum %n ore","acum %n ore"), -"today" => "astăzi", -"yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array("acum %n zi","acum %n zile","acum %n zile"), -"last month" => "ultima lună", -"_%n month ago_::_%n months ago_" => array("","","%n luni în urmă"), -"last year" => "ultimul an", -"years ago" => "ani în urmă", "I know what I'm doing" => "Eu știu ce fac", "Reset password" => "Resetează parola", "Password can not be changed. Please contact your administrator." => "Parola nu poate fi modificata. Vă rugăm să contactați administratorul dvs.", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 3201dc517f7a8386b0765f1bab01e3692fb5fb53..9cdaced35d5aa042d5cc2c81a04daff1957905d4 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Изображение", "Audio" => "Аудио", "Saving..." => "Сохранение...", -"seconds ago" => "только что", -"_%n minute ago_::_%n minutes ago_" => array("%n минуту назад","%n минуты назад","%n минут назад"), -"_%n hour ago_::_%n hours ago_" => array("%n час назад","%n часа назад","%n часов назад"), -"today" => "сегодня", -"yesterday" => "вчера", -"_%n day ago_::_%n days ago_" => array("%n день назад","%n дня назад","%n дней назад"), -"last month" => "месяц назад", -"_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), -"last year" => "год назад", -"years ago" => "несколько лет назад", "Couldn't send reset email. Please contact your administrator." => "Не удалось отправить письмо для сброса пароля. Пожалуйста, свяжитесь с вашим администратором.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Ссылка для восстановления пароля была отправлена на вашу почту. Если вы не получили её, проверьте папку спама.
    Если там письма со ссылкой нет, то обратитесь к локальному администратору.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Ваши файлы зашифрованы. Если вы не включили ключ восстановления, то ваши данные будут недоступны после сброса пароля.
    Если вы не уверены что делать дальше - обратитесь к локальному администратору.
    Вытдействительно хотите продолжить?", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 37a70088b67356123447dbcc39a20077d88c9385..cad09c5ed1047115c2904c62b3bd6e9b14a853dd 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "ෆෝල්ඩරය", "Image" => "පින්තූරය", "Saving..." => "සුරැකෙමින් පවතී...", -"seconds ago" => "තත්පරයන්ට පෙර", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "අද", -"yesterday" => "ඊයේ", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "පෙර මාසයේ", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "පෙර අවුරුද්දේ", -"years ago" => "අවුරුදු කීපයකට පෙර", "Reset password" => "මුරපදය ප්‍රත්‍යාරම්භ කරන්න", "No" => "එපා", "Yes" => "ඔව්", diff --git a/core/l10n/sk.php b/core/l10n/sk.php index c0a4ae1257bb56e43f88508777509dafa88edd05..74d6a570c09fd878f6684ba373c0a4642dd577ee 100644 --- a/core/l10n/sk.php +++ b/core/l10n/sk.php @@ -20,10 +20,6 @@ $TRANSLATIONS = array( "November" => "November", "December" => "December", "Settings" => "Nastavenia", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"_%n day ago_::_%n days ago_" => array("","",""), -"_%n month ago_::_%n months ago_" => array("","",""), "_{count} file conflict_::_{count} file conflicts_" => array("","",""), "Cancel" => "Zrušiť", "Share" => "Zdieľať", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index b640bd53bdf91be7c39caa2a39ad138fea83d541..847184b3bdbf817fae03ff74f944052ca1429334 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "Obrázok", "Audio" => "Zvuk", "Saving..." => "Ukladám...", -"seconds ago" => "pred sekundami", -"_%n minute ago_::_%n minutes ago_" => array("pred %n minútou","pred %n minútami","pred %n minútami"), -"_%n hour ago_::_%n hours ago_" => array("pred %n hodinou","pred %n hodinami","pred %n hodinami"), -"today" => "dnes", -"yesterday" => "včera", -"_%n day ago_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), -"last month" => "minulý mesiac", -"_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), -"last year" => "minulý rok", -"years ago" => "pred rokmi", "Couldn't send reset email. Please contact your administrator." => "Nemožno poslať email pre obnovu. Kontaktujte prosím vášho administrátora.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Odkaz na obnovu hesla bol odoslaný na váš email. Pokiaľ ho neobdržíte v primeranom čase, skontrolujte spam / priečinok nevyžiadanej pošty.
    Ak tam nie je, kontaktujte svojho administrátora.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Súbory sú zašifrované. Ak ste nepovolili kľúč pre obnovenie, neexistuje žiadny spôsob, ako obnoviť vaše dáta po obnovení vášho hesla.
    Ak si nie ste istí čo urobiť, prosím skôr než budete pokračovať, obráťte sa na administrátora.
    Naozaj chcete pokračovať?", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 77df9870cfc3afd0d0e91f7fd10b9e808afa7304..7212e5a27b3f103ee827694499b6a8dfb90352fa 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Slika", "Audio" => "Zvok", "Saving..." => "Poteka shranjevanje ...", -"seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), -"_%n hour ago_::_%n hours ago_" => array("pred %n uro","pred %n urama","pred %n urami","pred %n urami"), -"today" => "danes", -"yesterday" => "včeraj", -"_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), -"last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), -"last year" => "lansko leto", -"years ago" => "let nazaj", "Couldn't send reset email. Please contact your administrator." => "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Povezava za ponastavitev gesla je bila poslana na naveden elektronski naslov. V kolikor sporočila ne dobite v kratkem, preverite tudi mapo neželene pošte.
    Če sporočila ni niti v tej mapi, stopite v stik s skrbnikom.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili obnovitvenega ključa, po ponastavitvi gesla ne bo mogoč dostop do datotek.
    V primeru, da niste prepričani, kaj storiti, stopite v stik s skrbnikom sistema.
    Ali ste prepričani, da želite nadaljevati?", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 1ce7cc0e007ae95c7e1f44823ab4eb8dcb3eeab5..498bc7362b803978d04afa47f48943f6220491eb 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -25,16 +25,6 @@ $TRANSLATIONS = array( "Settings" => "Parametra", "Folder" => "Dosje", "Saving..." => "Duke ruajtur...", -"seconds ago" => "sekonda më parë", -"_%n minute ago_::_%n minutes ago_" => array("%n minut më parë","%n minuta më parë"), -"_%n hour ago_::_%n hours ago_" => array("%n orë më parë","%n orë më parë"), -"today" => "sot", -"yesterday" => "dje", -"_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"), -"last month" => "muajin e shkuar", -"_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"), -"last year" => "vitin e shkuar", -"years ago" => "vite më parë", "Reset password" => "Rivendos kodin", "No" => "Jo", "Yes" => "Po", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index aa4e11986181a7f727b5b0bcae0be00a10193e3e..27df2546c780f0504e6dc8c9579b1866f12fab87 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "Поставке", "Folder" => "фасцикла", "Saving..." => "Чување у току...", -"seconds ago" => "пре неколико секунди", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), -"today" => "данас", -"yesterday" => "јуче", -"_%n day ago_::_%n days ago_" => array("","",""), -"last month" => "прошлог месеца", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "прошле године", -"years ago" => "година раније", "Reset password" => "Ресетуј лозинку", "No" => "Не", "Yes" => "Да", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 578341697e4d5f5ce18977f9da8d11e4714960d8..459d4d812de48ebbead124f6b8d1783f41edac10 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "File" => "Fajl", "Folder" => "Direktorijum", "Image" => "Slika", -"seconds ago" => "Pre par sekundi", -"_%n minute ago_::_%n minutes ago_" => array("pre %n minuta","pre %n minuta","pre %n minuta"), -"_%n hour ago_::_%n hours ago_" => array("pre %n sat","pre %n sati","pre %n sati"), -"today" => "Danas", -"yesterday" => "juče", -"_%n day ago_::_%n days ago_" => array("Pre %n dan.","Pre %n dana.","Pre %n dana."), -"last month" => "prošlog meseca", -"_%n month ago_::_%n months ago_" => array("","",""), -"last year" => "prošle godine", -"years ago" => "pre nekoliko godina", "I know what I'm doing" => "Znam šta radim", "Reset password" => "Resetuj lozinku", "No" => "Ne", diff --git a/core/l10n/su.php b/core/l10n/su.php index dbedde7e637fc27c397b763e7b58eeca8338d6d2..1191769faa7803db6d9108d4bf2bd4a7a3d1a0e7 100644 --- a/core/l10n/su.php +++ b/core/l10n/su.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 126a214197a2780ac11b2e11b4a5770b2ce129e1..caa6ff5eb2d403628c87a06790d0c97f8825a37a 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -35,16 +35,6 @@ $TRANSLATIONS = array( "Image" => "Bild", "Audio" => "Ljud", "Saving..." => "Sparar...", -"seconds ago" => "sekunder sedan", -"_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), -"_%n hour ago_::_%n hours ago_" => array("%n timme sedan","%n timmar sedan"), -"today" => "i dag", -"yesterday" => "i går", -"_%n day ago_::_%n days ago_" => array("%n dag sedan","%n dagar sedan"), -"last month" => "förra månaden", -"_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), -"last year" => "förra året", -"years ago" => "år sedan", "Couldn't send reset email. Please contact your administrator." => "Kunde inte skicka återställningsmail. Vänligen kontakta din administratör.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Länken för att återställa ditt lösenord har skickats till din e-mail. Om du inte mottar något inom kort, kontrollera spam/skräpkorgen.
    Om det inte finns något där, vänligen kontakta din lokala administratör.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dina filer är krypterade. Om du inte angett någon återställningsnyckel, kommer det att vara omöjligt att få tillbaka dina data efter att lösenordet är återställt..
    Om du är osäker på vad du ska göra, vänligen kontakta din administratör innan du fortsätter.
    Är du verkligen helt säker på att du vill fortsätta?", diff --git a/core/l10n/sw_KE.php b/core/l10n/sw_KE.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/sw_KE.php +++ b/core/l10n/sw_KE.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_IN.php b/core/l10n/ta_IN.php index da1021cd33ea83a0194d61f9b0ea7aed087264f6..f363cf0c9bf9963d05f2a16fd0615dd2bf4a78cf 100644 --- a/core/l10n/ta_IN.php +++ b/core/l10n/ta_IN.php @@ -1,10 +1,6 @@ "அமைப்புகள்", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Send" => "அனுப்பவும்" ); diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 000a1022f4c72dece20e0a409111d801f992ece8..0cd67b00e7d0bd3c2e711ba8d0e2f5dbeadf5598 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -22,16 +22,6 @@ $TRANSLATIONS = array( "Settings" => "அமைப்புகள்", "Folder" => "கோப்புறை", "Saving..." => "சேமிக்கப்படுகிறது...", -"seconds ago" => "செக்கன்களுக்கு முன்", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "இன்று", -"yesterday" => "நேற்று", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "கடந்த மாதம்", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "கடந்த வருடம்", -"years ago" => "வருடங்களுக்கு முன்", "Reset password" => "மீளமைத்த கடவுச்சொல்", "No" => "இல்லை", "Yes" => "ஆம்", diff --git a/core/l10n/te.php b/core/l10n/te.php index 9ca5068bbc18ec18630b9b32837dfc3b5ebc4d1c..c8b742c8c9000073f5e6565c1590de709dc12aef 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -21,16 +21,6 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "Folder" => "సంచయం", -"seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array("%n నిమిషం క్రితం","%n నిమిషాల క్రితం"), -"_%n hour ago_::_%n hours ago_" => array("%n గంట క్రితం","%n గంటల క్రితం"), -"today" => "ఈరోజు", -"yesterday" => "నిన్న", -"_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), -"last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), -"last year" => "పోయిన సంవత్సరం", -"years ago" => "సంవత్సరాల క్రితం", "No" => "కాదు", "Yes" => "అవును", "Ok" => "సరే", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 3f03b3ff8c22374c952e6f3a8b71380a99f93e8a..67a5c34e56994194d3e40003b781d9aace796d14 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -23,16 +23,6 @@ $TRANSLATIONS = array( "Folder" => "แฟ้มเอกสาร", "Image" => "รูปภาพ", "Saving..." => "กำลังบันทึกข้อมูล...", -"seconds ago" => "วินาที ก่อนหน้านี้", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "วันนี้", -"yesterday" => "เมื่อวานนี้", -"_%n day ago_::_%n days ago_" => array(""), -"last month" => "เดือนที่แล้ว", -"_%n month ago_::_%n months ago_" => array(""), -"last year" => "ปีที่แล้ว", -"years ago" => "ปี ที่ผ่านมา", "Reset password" => "เปลี่ยนรหัสผ่าน", "No" => "ไม่ตกลง", "Yes" => "ตกลง", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 30246849a22fa321556a0f5d4301993c4ffbd982..762f3d286a0f2a0f7601fa9d7ce24bff63424bea 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -38,16 +38,6 @@ $TRANSLATIONS = array( "Image" => "Resim", "Audio" => "Ses", "Saving..." => "Kaydediliyor...", -"seconds ago" => "saniyeler önce", -"_%n minute ago_::_%n minutes ago_" => array("%n dakika önce","%n dakika önce"), -"_%n hour ago_::_%n hours ago_" => array("%n saat önce","%n saat önce"), -"today" => "bugün", -"yesterday" => "dün", -"_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), -"last month" => "geçen ay", -"_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"last year" => "geçen yıl", -"years ago" => "yıllar önce", "Couldn't send reset email. Please contact your administrator." => "Sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile iletişime geçin.", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi. Makul bir süre içerisinde almadıysanız spam/gereksiz klasörlerini kontrol ediniz.
    Bu konumlarda da yoksa yerel sistem yöneticinize sorunuz.", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "Dosyalarınız şifrelenmiş. Kurtarma anahtarını etkinleştirmemişseniz, parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak.
    Ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile iletişime geçin.
    Gerçekten devam etmek istiyor musunuz?", diff --git a/core/l10n/tzm.php b/core/l10n/tzm.php index 7f8ce6cb954038ea6c882dded3d81072f27f108a..63fd3b90a53f2e7e5061c7a3df4b1921bc3e1820 100644 --- a/core/l10n/tzm.php +++ b/core/l10n/tzm.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;"; diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 10179c3af48fff7d9dce4d70750da3bed5d04dde..fb52f5483a2c5b295c661dc9125f34e4b4a06ce4 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -22,12 +22,6 @@ $TRANSLATIONS = array( "Settings" => "تەڭشەكلەر", "Folder" => "قىسقۇچ", "Saving..." => "ساقلاۋاتىدۇ…", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"today" => "بۈگۈن", -"yesterday" => "تۈنۈگۈن", -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "No" => "ياق", "Yes" => "ھەئە", "Ok" => "جەزملە", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index be378b6cd6a0c46c1b3e5cf330981c76baa5e346..cce88a159380521fb70c4ac8e4193b39293235c2 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -32,16 +32,6 @@ $TRANSLATIONS = array( "File" => "Файл", "Folder" => "Тека", "Saving..." => "Зберігаю...", -"seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array("%n хвилину тому","%n хвилини тому","%n хвилин тому"), -"_%n hour ago_::_%n hours ago_" => array("%n годину тому","%n години тому","%n годин тому"), -"today" => "сьогодні", -"yesterday" => "вчора", -"_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), -"last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), -"last year" => "минулого року", -"years ago" => "роки тому", "Reset password" => "Скинути пароль", "No" => "Ні", "Yes" => "Так", diff --git a/core/l10n/ur.php b/core/l10n/ur.php index ffcdde48d47cbbe4730b36aec880f7e1642688fb..aff098dff1f8bfc8f7689dcb8eb24dc438306d15 100644 --- a/core/l10n/ur.php +++ b/core/l10n/ur.php @@ -1,9 +1,5 @@ array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), -"_%n day ago_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("",""), "_{count} file conflict_::_{count} file conflicts_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index f603847ddd4c29db981836d0bf532e9619bc7bad..d82210e5629358917e4b42f007df06dec89b7af5 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -28,16 +28,6 @@ $TRANSLATIONS = array( "December" => "دسمبر", "Settings" => "ترتیبات", "Saving..." => "محفوظ ھو رہا ہے ...", -"seconds ago" => "سیکنڈز پہلے", -"_%n minute ago_::_%n minutes ago_" => array("%n منٹس پہلے","%n منٹس پہلے"), -"_%n hour ago_::_%n hours ago_" => array("",""), -"today" => "آج", -"yesterday" => "کل", -"_%n day ago_::_%n days ago_" => array("",""), -"last month" => "پچھلے مہنیے", -"_%n month ago_::_%n months ago_" => array("",""), -"last year" => "پچھلے سال", -"years ago" => "سالوں پہلے", "Reset password" => "ری سیٹ پاسورڈ", "No" => "نہیں", "Yes" => "ہاں", diff --git a/core/l10n/uz.php b/core/l10n/uz.php index dbedde7e637fc27c397b763e7b58eeca8338d6d2..1191769faa7803db6d9108d4bf2bd4a7a3d1a0e7 100644 --- a/core/l10n/uz.php +++ b/core/l10n/uz.php @@ -1,9 +1,5 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), "_{count} file conflict_::_{count} file conflicts_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 1da0fbf194ba590a1815b22ded71101919797065..6ca34d2c8cea5d3cfce08e13145a35840c3f39e3 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -31,16 +31,6 @@ $TRANSLATIONS = array( "Settings" => "Cài đặt", "Folder" => "Thư mục", "Saving..." => "Đang lưu...", -"seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array("%n phút trước"), -"_%n hour ago_::_%n hours ago_" => array("%n giờ trước"), -"today" => "hôm nay", -"yesterday" => "hôm qua", -"_%n day ago_::_%n days ago_" => array("%n ngày trước"), -"last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array("%n tháng trước"), -"last year" => "năm trước", -"years ago" => "năm trước", "Reset password" => "Khôi phục mật khẩu", "No" => "Không", "Yes" => "Có", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 920144db74040c6ebf6e0d63d498dfcc9326b231..7cb94219ad76084b6cf4d510a8b5b4595615d879 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -36,16 +36,6 @@ $TRANSLATIONS = array( "Image" => "图像", "Audio" => "声音", "Saving..." => "保存中", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小时前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array("%n 天前"), -"last month" => "上月", -"_%n month ago_::_%n months ago_" => array("%n 月前"), -"last year" => "去年", -"years ago" => "年前", "Couldn't send reset email. Please contact your administrator." => "未能成功发送重置邮件,请联系管理员。", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "密码重置邮件已经发送到您的电子邮箱中。如果您长时间没能收到邮件,请检查您的垃圾/广告邮件箱。
    如果未能收到邮件请联系管理员。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "您的文件已被加密。如果您没有启用恢复密钥,密码重置后您将无法取回您的文件。
    在继续之前,如果有疑问请联系您的管理员。
    确认继续?", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index c94a18433d6301facd7d51cb65ab043515a93aed..59b7632ee46c3f1d3b8b58445366dc567d9d1b4e 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -25,16 +25,6 @@ $TRANSLATIONS = array( "Image" => "圖片", "Audio" => "聲音", "Saving..." => "儲存中...", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), -"today" => "今日", -"yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array("%n 日前"), -"last month" => "上個月", -"_%n month ago_::_%n months ago_" => array("%n 月前"), -"last year" => "上年", -"years ago" => "年前", "Reset password" => "重設密碼", "No" => "否", "Yes" => "是", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index c3e34a0ad4dd0826a96fd2a0d696b90a0ffcd97f..8c68c240135600dc8d8edb5b6c5080b51d3f289f 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Turned off maintenance mode" => "已停用維護模式", "Updated database" => "已更新資料庫", "Checked database schema update" => "已檢查資料庫格式更新", +"Checked database schema update for apps" => "已檢查應用程式的資料庫格式更新", +"Updated \"%s\" to %s" => "已更新 %s 到 %s", "Disabled incompatible apps: %s" => "停用不相容的應用程式:%s", "No image or file provided" => "未提供圖片或檔案", "Unknown filetype" => "未知的檔案類型", @@ -36,21 +38,12 @@ $TRANSLATIONS = array( "Image" => "圖片", "Audio" => "音訊", "Saving..." => "儲存中...", -"seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array("%n 天前"), -"last month" => "上個月", -"_%n month ago_::_%n months ago_" => array("%n 個月前"), -"last year" => "去年", -"years ago" => "幾年前", "Couldn't send reset email. Please contact your administrator." => "無法寄送重設 email ,請聯絡系統管理員", "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.
    If it is not there ask your local administrator." => "重設密碼的連結已經 email 至你的信箱,如果你在一段時間內沒收到,請檢查垃圾郵件資料夾,如果還是找不到,請聯絡系統管理員。", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.
    If you are not sure what to do, please contact your administrator before you continue.
    Do you really want to continue?" => "您的檔案是加密的,如果您沒有啟用救援金鑰,當您重設密碼之後將無法存取您的資料。
    如果不確定該怎麼做,請聯絡您的系統管理員。
    您確定要繼續嗎?", "I know what I'm doing" => "我知道我在幹嘛", "Reset password" => "重設密碼", +"Password can not be changed. Please contact your administrator." => "無法變更密碼,請聯絡您的系統管理員", "No" => "否", "Yes" => "是", "Choose" => "選擇", @@ -60,6 +53,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} 個檔案衝突"), "One file conflict" => "一個檔案衝突", "New Files" => "新檔案", +"Already existing files" => "已經存在的檔案", "Which files do you want to keep?" => "您要保留哪一個檔案?", "If you select both versions, the copied file will have a number added to its name." => "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號", "Cancel" => "取消", @@ -73,6 +67,7 @@ $TRANSLATIONS = array( "Good password" => "好的密碼", "Strong password" => "很強的密碼", "Shared" => "已分享", +"Shared with {recipients}" => "與 {recipients} 分享", "Share" => "分享", "Error" => "錯誤", "Error while sharing" => "分享時發生錯誤", @@ -83,6 +78,7 @@ $TRANSLATIONS = array( "Share with user or group …" => "與用戶或群組分享", "Share link" => "分享連結", "Password protect" => "密碼保護", +"Choose a password for the public link" => "為公開連結選一個密碼", "Allow Public Upload" => "允許任何人上傳", "Email link to person" => "將連結 email 給別人", "Send" => "寄出", @@ -112,7 +108,13 @@ $TRANSLATIONS = array( "Edit tags" => "編輯標籤", "Error loading dialog template: {error}" => "載入對話樣板出錯:{error}", "No tags selected for deletion." => "沒有選擇要刪除的標籤", +"Updating {productName} to version {version}, this may take a while." => "正在更新 {productName} 到版本 {version} ,請稍候", +"Please reload the page." => "請重新整理頁面", +"The update was unsuccessful." => "更新失敗", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", +"Couldn't reset password because the token is invalid" => "無法重設密碼因為 token 無效", +"Couldn't send reset email. Please make sure your username is correct." => "無法寄送重設 email ,請確認您的帳號輸入正確", +"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員", "%s password reset" => "%s 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到您的電子郵件信箱。", @@ -121,6 +123,9 @@ $TRANSLATIONS = array( "Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。", "Reset" => "重設", "New password" => "新密碼", +"New Password" => "新密碼", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "不支援 Mac OS X 而且 %s 在這個平台上面無法正常運作,請自行衡量風險!", +"For the best results, please consider using a GNU/Linux server instead." => "請考慮使用 GNU/Linux 伺服器以取得最好的效果", "Personal" => "個人", "Users" => "使用者", "Apps" => "應用程式", @@ -129,12 +134,14 @@ $TRANSLATIONS = array( "Error loading tags" => "載入標籤出錯", "Tag already exists" => "標籤已經存在", "Error deleting tag(s)" => "刪除標籤出錯", +"Error tagging" => "貼標籤發生錯誤", "Error untagging" => "移除標籤失敗", "Error favoriting" => "加入最愛時出錯", "Error unfavoriting" => "從最愛移除出錯", "Access forbidden" => "存取被拒", "Cloud not found" => "找不到網頁", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n", +"The share will expire on %s." => "這個分享將會於 %s 過期", "Cheers!" => "太棒了!", "Security Warning" => "安全性警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", @@ -145,24 +152,42 @@ $TRANSLATIONS = array( "For information how to properly configure your server, please see the documentation." => "請參考說明文件以瞭解如何正確設定您的伺服器。", "Create an admin account" => "建立一個管理者帳號", "Password" => "密碼", +"Storage & database" => "儲存空間和資料庫", "Data folder" => "資料儲存位置", "Configure the database" => "設定資料庫", +"Only %s is available." => "剩下 %s 可使用", "Database user" => "資料庫使用者", "Database password" => "資料庫密碼", "Database name" => "資料庫名稱", "Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", +"SQLite will be used as database. For larger installations we recommend to change this." => "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫", "Finish setup" => "完成設定", "Finishing …" => "即將完成…", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "這個應用程式需要啟用 Javascript 才能正常運作,請啟用 Javascript 然後重新載入頁面", "%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。", "Log out" => "登出", "Server side authentication failed!" => "伺服器端認證失敗!", "Please contact your administrator." => "請聯絡系統管理員。", +"Forgot your password? Reset it!" => "忘了密碼?重設它!", "remember" => "記住", "Log in" => "登入", "Alternative Logins" => "其他登入方法", +"Hey there,

    just letting you know that %s shared %s with you.
    View it!

    " => "嗨,

    %s 與你分享了%s
    檢視

    ", +"This ownCloud instance is currently in single user mode." => "這個 ownCloud 伺服器目前運作於單一使用者模式", +"This means only administrators can use the instance." => "這表示只有系統管理員能夠使用", "Contact your system administrator if this message persists or appeared unexpectedly." => "若這個訊息持續出現,請聯絡系統管理員", "Thank you for your patience." => "感謝您的耐心", +"You are accessing the server from an untrusted domain." => "你正在從一個未信任的網域存取伺服器", +"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php", +"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." => "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域", +"Add \"%s\" as trusted domain" => "將 %s 加入到信任的網域", +"%s will be updated to version %s." => "%s 將會被升級到版本 %s", +"The following apps will be disabled:" => "這些應用程式會被停用:", +"The theme %s has been disabled." => "主題 %s 已經被停用", +"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "在繼續之前,請備份資料庫、config 目錄及資料目錄", +"Start update" => "開始升級", +"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" => "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:", "This ownCloud instance is currently being updated, which may take a while." => "ownCloud 正在升級,請稍待一會。", "Please reload this page after a short time to continue using ownCloud." => "請稍後重新載入這個頁面就可以繼續使用 ownCloud" ); diff --git a/core/routes.php b/core/routes.php index ff79c450508a0303a74c02ce40d7596502cbf7e1..28a3680dd91a382db1d8d1b137968049013aa39f 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,13 +6,14 @@ * See the COPYING-README file. */ -use OC\Core\LostPassword\Application; +use OC\Core\Application; $application = new Application(); $application->registerRoutes($this, array('routes' => array( array('name' => 'lost#email', 'url' => '/lostpassword/email', 'verb' => 'POST'), array('name' => 'lost#resetform', 'url' => '/lostpassword/reset/form/{token}/{userId}', 'verb' => 'GET'), array('name' => 'lost#setPassword', 'url' => '/lostpassword/set/{token}/{userId}', 'verb' => 'POST'), + array('name' => 'user#getDisplayNames', 'url' => '/displaynames', 'verb' => 'POST'), ) )); diff --git a/core/setup/controller.php b/core/setup/controller.php index c72f06fc2df4af36bfcc200e0b34519233eaa7d6..5da94e83ccc3cd305d36f707b0c2726100ddd6d5 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -132,7 +132,7 @@ class Controller { } if (\OC_Util::runningOnMac()) { - $l10n = \OC_L10N::get('core'); + $l10n = \OC::$server->getL10N('core'); $themeName = \OC_Util::getTheme(); $theme = new \OC_Defaults(); $errors[] = array( diff --git a/core/strings.php b/core/strings.php index 01ab386608967276f2104bd60070f8d11dcaebdc..ebae63bf92816c40e9a9cc63024bdd40c3e35783 100644 --- a/core/strings.php +++ b/core/strings.php @@ -1,7 +1,7 @@ getL10N('core'); $l->t("Personal"); $l->t("Users"); $l->t("Apps"); diff --git a/core/user/usercontroller.php b/core/user/usercontroller.php new file mode 100644 index 0000000000000000000000000000000000000000..2570e3b5b059bac0130bc764d378ea9473fd2303 --- /dev/null +++ b/core/user/usercontroller.php @@ -0,0 +1,66 @@ + + * Copyright (c) 2014 Lukas Reschke + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\User; + +use \OCP\AppFramework\Controller; +use \OCP\AppFramework\Http\JSONResponse; +use \OCP\IRequest; + +class UserController extends Controller { + /** + * @var \OCP\IUserManager + */ + protected $userManager; + + /** + * @var \OC_Defaults + */ + protected $defaults; + + public function __construct($appName, + IRequest $request, + $userManager, + $defaults + ) { + parent::__construct($appName, $request); + $this->userManager = $userManager; + $this->defaults = $defaults; + } + + /** + * Lookup user display names + * + * @NoAdminRequired + * + * @param array $users + * + * @return JSONResponse + */ + public function getDisplayNames($users) { + $result = array(); + + foreach ($users as $user) { + $userObject = $this->userManager->get($user); + if (is_object($userObject)) { + $result[$user] = $userObject->getDisplayName(); + } else { + $result[$user] = $user; + } + } + + $json = array( + 'users' => $result, + 'status' => 'success' + ); + + return new JSONResponse($json); + + } +} diff --git a/cron.php b/cron.php index f0acd2f04920ad00221403659c2ed9525896430b..c48f17ed095fc6ec4b181d200c01789d25f60b00 100644 --- a/cron.php +++ b/cron.php @@ -56,10 +56,10 @@ try { // load all apps to get all api routes properly setup OC_App::loadApps(); - \OC::$session->close(); + \OC::$server->getSession()->close(); // initialize a dummy memory session - \OC::$session = new \OC\Session\Memory(''); + \OC::$server->setSession(new \OC\Session\Memory('')); $logger = \OC_Log::$object; diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 604f36f1932c6c34c381337f925c42dc5e3a4ac9..8924ece81fdf043194d2ee6b831d8ebba88d878b 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ach/files_external.po b/l10n/ach/files_external.po index 83bde6be5a688cedf92190bf4ef6fcad5a577f92..35e6470b3fa5df2fc1cc1b2097cf163f2bbed96e 100644 --- a/l10n/ach/files_external.po +++ b/l10n/ach/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 3d45bf372126ecf689475c4c224d0e145237df96..100698b8ecd4514a736a41d695368de01fde3524 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 6d848094dacbe5bb5514ff3ca6813204163b6435..bb4fa0d3822b660f362260fbb47bdbbbf0f7f8d1 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po index 89d4007150f97cc1b35915118a91d3a353563621..373989099adb49c4c46ddf52c752d0606945ca4e 100644 --- a/l10n/ady/files_external.po +++ b/l10n/ady/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index bea757c27c831a49165e9fa72bc07dffc118da2b..31b48ace9f79395e9954098d6eb99a24f6f023b5 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index b7e4253f1675e3deb3218eed0ed4415e50424f91..ca77b75c96fada8c480b73fbcf1b48820714001d 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Instellings" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Stoor..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekondes gelede" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute gelede" -msgstr[1] "%n minute gelede" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ure gelde" -msgstr[1] "%n ure gelede" - -#: js/js.js:1281 -msgid "today" -msgstr "vandag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gister" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dae gelede" -msgstr[1] "%n dae gelede" - -#: js/js.js:1284 -msgid "last month" -msgstr "verlede maand" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n maande gelede" -msgstr[1] "%n maande gelede" - -#: js/js.js:1286 -msgid "last year" -msgstr "verlede jaar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jare gelede" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index 9f54a61d4d55d0f286b40d3749c7898e307dc027..446757f34d234ea9bfcf39697c0e9509e60b7c7e 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Gebruikersnaam" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Persoonlik" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Gebruikers" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 916dad9aca358f736d4ab476c8e1a550804c4946..1cfdf756c308dc0d04e43533bb2eef96c1898e59 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index a94c88034f4272366f74423806142db5942c4a42..cf5b55b9a9cc88aa1917fe1156623613ce9fdd03 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +17,33 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 96ea5b49592f0958d8cbb112cdbc67fbcb652b08..1ecbc3d1cff127dc7e79dfb83c94a3c3de9d670e 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Kanseleer" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index b528a9e6fcb7f362bf9be49a6a72cd1d364ebc1b..dd896431984565b584c0e6f8fb85102a4863d20b 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-10 01:54-0400\n" -"PO-Revision-Date: 2014-06-10 05:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Wagwoord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 21aa33789d3cf0ee823d4de757d783407cad7969..b67e47f41340c64dd57a46a13f4de7805fbb1689 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po index 7e430ec00d7fbbd51c50fe91aa3799c57e4cdd87..f7cf06c2908679f625ac49c2c28e44f708cf6e3c 100644 --- a/l10n/ak/files_external.po +++ b/l10n/ak/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index a2b7a186d3a2aa87f07d2c3e27d75c3bdf7c522b..27ba6b3ce23321116855e52f0c9726815e4c6113 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index dfaa2d499c90dde854857cc8502500026e0b302a..d0f12cb58a03a97272aeb973342f2f3acfc79f4e 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po index a09fbe6ebae4e830e4d1e724d986f5bc8b388cc4..96cda7ffa25bd039edc5195bb5873fd0ef63407a 100644 --- a/l10n/am_ET/files_external.po +++ b/l10n/am_ET/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 824a13bee500323455abf35d96ea70381d20c16a..52bbf4fbcb52cf3b287deb39e4327d7380ded9eb 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 52d5c2b585083b99eda5130a64a2f738f9a04722..5f1ff114ec5ebfaa461a3ee5cc8f9339124817a3 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -151,94 +151,30 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "إعدادات" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "ملف" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "مجلد" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "منذ ثواني" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1281 -msgid "today" -msgstr "اليوم" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "يوم أمس" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "الشهر الماضي" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "السنةالماضية" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سنة مضت" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index a748e97c7df20ae38f0bdb185bc6d1b22766b3cf..00962213dbf6eda09908014def8f73478e170a04 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index af84995d48e86fed2dd82a9dd9bd6fd80f9fef19..38fa5c1d07be644096210934960967f0f21b1997 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "المضيف" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "إسم المستخدم" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "شخصي" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "حفظ" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "كل المستخدمين" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "مجموعات" - -#: templates/settings.php:106 -msgid "Users" -msgstr "المستخدمين" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "إلغاء" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 306c701514bef1e42a8441bf87febdc07fecaf6c..9f9c89dc79a94edb19a02b8c5ab1fa24bdd1567f 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 9f41f1b714437699becb0c2aebc9e1f342edee01..b777f4c07f59b7ebb1d239f14d8e9e00ef5f52b4 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 37711763de21b1ab09382e862d90c1f5acd8728e..38d48590e52c47ff9b039f376ec760e890d9cc68 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل ا msgid "Unknown user" msgstr "المستخدم غير معروف" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ادخل اسم المستخدم الخاص بقاعدة البيانات." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ادخل اسم فاعدة البيانات" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." @@ -197,23 +197,23 @@ msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حس msgid "MySQL/MariaDB username and/or password not valid" msgstr "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "حذف هذا المستخدم من MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "لم تنجح محاولة اتصال Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 2fd56e7bd4e17a1ae5af4fe4287f4b7423378cff..af22e72bd7b5071cfba399b0612e9b8855bee7a0 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "التشفير" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "تراجع" @@ -352,27 +352,27 @@ msgstr "إلغاء" msgid "never" msgstr "بتاتا" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "اضافة مجموعة" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "تحذير: المجلد الرئيسي لـ المستخدم \"{user}\" موجود مسبقا" @@ -736,11 +736,11 @@ msgstr "المزيد" msgid "Less" msgstr "أقل" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "إصدار" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "اسمك الكامل" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "رفع الان" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "اختر جديد من الملفات " -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "احذف الصورة " -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "سواء png او jpg. بامكانك قص الصورة " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "صورتك الرمزية يتم توفيرها عن طريق حسابك الاصلي." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "الغاء" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "اختر صورة الملف الشخصي" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "اللغة" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "كلمه سر الدخول" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "فك تشفير جميع الملفات " -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "اسم الدخول" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "الحصة النسبية الإفتراضية" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "غير محدود" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "شيء آخر" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index c68660d30aefff415fe5a59f11b306f335a6c87f..b1879ebe354ed6b98f56ae480c27332031831d5d 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,47 +103,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "إختر مجموعة" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -154,7 +154,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -165,11 +165,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -261,60 +261,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "المضيف" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "المنفذ" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "كلمة المرور" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index e20d29d43a0f8af886192511d30013bada565aa7..a2dd38adbe4f703e1a1cbd530499e1a75bf5c9d0 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -152,78 +152,30 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Axustes" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Ficheru" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imaxe" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audiu" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "hai segundos" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "hai %n minutu" -msgstr[1] "hai %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "hai %n hora" -msgstr[1] "hai %n hores" - -#: js/js.js:1281 -msgid "today" -msgstr "güei" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayeri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "hai %n día" -msgstr[1] "hai %n díes" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes caberu" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "fai %n mes" -msgstr[1] "hai %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "añu caberu" - -#: js/js.js:1287 -msgid "years ago" -msgstr "hai años" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nun pudo unviase'l corréu de reaniciu. Por favor, contauta col alministrador." diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 5626c9b477f390dbd021fa23cdc6d5c845be60c8..214d7456dad06b76905e4f233082010de7882aef 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index d3f253ebbc934dfd927c693d2bf9f01c86a45a53..623777ff9d1631924a3ff9bf3feae2f72840c414 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Iñigo Varela \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secretu" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Depósitu" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Clave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome d'equipu (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Puertu (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Rexón (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "App secreta" msgid "Host" msgstr "Sirvidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome d'usuariu" @@ -149,14 +149,6 @@ msgstr "Veceru secretu" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome d'usuariu (necesariu)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Depósitu (necesariu)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Rexón (opcional pa OpenStack Object Storage)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL d'identidá de puntu final (necesariu pa OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tiempu d'espera de peticiones HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,33 +225,41 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardáu" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "y" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de cURL en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de FTP en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "Disponible pa" msgid "Add storage" msgstr "Amestar almacenamientu" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nengún usuariu o grupu" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tolos usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Desaniciar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamientu esterno d'usuariu" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir a los usuarios montar el siguiente almacenamientu esternu" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificaos raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificáu raíz" diff --git a/l10n/ast/files_sharing.po b/l10n/ast/files_sharing.po index 6e6e8ff93b9b3aae14bbb200bdf58ee0f0fd0acf..2ae04d45bc3dd6af51e2123c08ae1b786cb8c9fc 100644 --- a/l10n/ast/files_sharing.po +++ b/l10n/ast/files_sharing.po @@ -6,13 +6,14 @@ # David López Castañón , 2014 # Iñigo Varela , 2014 # Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Ḷḷumex03 \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,21 +27,21 @@ msgstr "La compartición sirvidor a sirvidor nun ta habilitada nesti sirvidor" #: ajax/external.php:38 msgid "Invalid or untrusted SSL certificate" -msgstr "" +msgstr "Certificáu SSL inválidu o ensín validar" #: ajax/external.php:52 msgid "Couldn't add remote share" msgstr "Nun pudo amestase una compartición remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartíos contigo" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartíos con otros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartíos per enllaz" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 51816052c5e66f35ef83e5adb6becfc2ef16c0b0..3dd2c7edc425325df5e34a9f083b639db5e1249c 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 29cd41a0a5fad25a7787bd006ce0ef8c52b02238..23fc74d89133dd5ec0ee6c6d3cdda21efbaf30f8 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -20,33 +20,33 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "¡Nun pue escribise nel direutoriu \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Davezu esto pue iguase dándo-y al sirvidor web accesu d'escritura al direutoriu de configuración" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Mira %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Davezu esto pue iguase %sdándo-y al sirvidor web accesu d'escritura al direutoriu de configuración%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -168,12 +168,12 @@ msgstr "Token caducáu. Recarga la páxina." msgid "Unknown user" msgstr "Usuariu desconocíu" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introducir l'usuariu de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introducir nome de la base de datos." @@ -189,7 +189,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome d'usuariu o contraseña MS SQL non válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tienes d'inxertar una cuenta esistente o la del alministrador." @@ -198,23 +198,23 @@ msgstr "Tienes d'inxertar una cuenta esistente o la del alministrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome d'usuariu o contraseña MySQL/MariaDB non válidos" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Fallu BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -239,15 +239,15 @@ msgstr "Yá esiste l'usuariu de MySQL/MariaDB '%s'@'%%'" msgid "Drop this user from MySQL/MariaDB." msgstr "Desaniciar esti usuariu de MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nun pudo afitase la conexón d'Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome d'usuariu o contraseña d'Oracle non válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comandu infractor foi: \"%s\", nome: %s, contraseña: %s" @@ -339,68 +339,68 @@ msgstr "Compartir %s falló, porque nun se permite compartir con enllaces" msgid "Share type %s is not valid for %s" msgstr "La triba de compartición %s nun ye válida pa %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Falló dar permisos a %s, porque los permisos son mayores que los otorgaos a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Falló dar permisos a %s, porque l'elementu nun s'atopó" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nun pue afitase la data de caducidá. Ficheros compartíos nun puen caducar dempués de %s de compartise" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nun pue afitase la data d'espiración. La data d'espiración ta nel pasáu" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El motor compartíu %s tien d'implementar la interfaz OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Nun s'alcontró'l botón de compartición %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Nun s'alcontró'l botón de partición pa %s" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartir %s falló, yá que l'usuariu %s ye'l compartidor orixinal" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartir %s falló, porque los permisos perpasen los otorgaos a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartir %s falló, porque nun se permite la re-compartición" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque'l motor compartíu pa %s podría nun atopar el so orixe" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 6cbc6647e9428837a73e59884405a240dc5733cd..b9225b7fc4287e63c01235e95beb047b0c33c7ce 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "Tienes de configurar la direición de corréu-e enantes de poder unviar msgid "Send mode" msgstr "Mou d'unviu" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifráu" @@ -327,7 +327,7 @@ msgstr "Hai d'escribir un nome de grupu válidu" msgid "deleted {groupName}" msgstr "desaniciáu {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfacer" @@ -351,27 +351,27 @@ msgstr "Desaniciar" msgid "never" msgstr "enxamás" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "desaniciáu {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "amestar Grupu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Tien d'apurrise un nome d'usuariu válidu" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fallu al crear usuariu" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Tien d'apurrise una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avisu: el direutoriu d'aniciu pal usuariu \"{user}\" yá esiste." @@ -735,11 +735,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usasti %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Camudóse la contraseña" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nun pudo camudase la contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Contraseña nueva" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Camudar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completu" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Corréu-e" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Direición de corréu-e" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Introducir una direición de corréu-e p'activar la recuperación de contraseñes y recibir notificaciones" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Semeya de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Xubir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Esbillar otra dende Ficheros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Desaniciar imaxe" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ficheru PNG o JPG. Preferiblemente cuadráu, pero vas poder retayalu." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "L'avatar ta proporcionáu pola to cuenta orixinal." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Encaboxar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Esbillar como imaxe de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Llingua" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos nes traducciones" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicación de cifráu yá nun ta activada, descifra tolos ficheros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña d'accesu" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar ficheros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Les claves de cifráu van guardase nuna llocalización segura. D'esta miente, en casu de que daqué saliere mal, vas poder recuperar les claves. Desanicia dafechu les claves de cifráu namái si tas seguru de que los ficheros descifráronse correcho." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar claves de cifráu." -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Desaniciar claves de cifráu" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome d'usuariu" @@ -977,19 +985,19 @@ msgstr "Toos" msgid "Admins" msgstr "Almins" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Non llendáu" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otru" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 57e149401aa5e3dfef1ee9eaf5b6062eabdcea4f..00d56acabe7ada152868ccaafb198b0219ce5f8d 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -5,16 +5,16 @@ # Translators: # David López Castañón , 2014 # Iñigo Varela , 2014 -# Ḷḷumex03 , 2014 -# Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 +# Ḷḷumex03 , 2014 # tebanpb , 2014 # tebanpb , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -55,11 +55,11 @@ msgstr "Nun s'especificó l'aición" msgid "No configuration specified" msgstr "Nun s'especificó la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nun s'especificaron los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nun pudo afitase la configuración %s" @@ -108,65 +108,65 @@ msgstr "Nun pudo determinase un DN base" msgid "Please specify the port" msgstr "Especifica'l puertu" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración correuta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorreuta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Esbillar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleicionar la clas d'oxetu" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Esbillar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test de conexón esitosu" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Falló'l test de conexón" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Daveres que quies desaniciar la configuración actual del sirvidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar desaniciu" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupu alcontráu" msgstr[1] "%s grupos alcontraos" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s usuariu alcontráu" msgstr[1] "%s usuarios alcontraos" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nun pudo alcontrase la carauterística deseyada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválidu" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define'l filtru a aplicar cuando s'intenta identificar. %%uid va trocar al nome d'usuariu nel procesu d'identificación. Por exemplu: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Sirvidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Sirvidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Amestar configuración del sirvidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Desaniciar configuración" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Equipu" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pues omitir el protocolu, sacantes si necesites SSL. Nesi casu, entama con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puertu" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuariu" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuariu veceru col que va facese l'asociación, p.ex. uid=axente,dc=exemplu,dc=com. P'accesu anónimu, dexa DN y contraseña baleros." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pa un accesu anónimu, dexar el DN y la contraseña baleros." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por llinia" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pues especificar el DN base pa usuarios y grupos na llingüeta Avanzáu" diff --git a/l10n/az/core.po b/l10n/az/core.po index 77c19c077f642356a167fb9f0d040649c2fea0a4..605948849db97572d5e20a2e60c8c4a05cea44fe 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: unixidzero \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Quraşdırmalar" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Qovluq" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Saxlama..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" @@ -326,23 +278,23 @@ msgstr "" #: js/setup.js:96 msgid "Very weak password" -msgstr "" +msgstr "Çox asan şifrə" #: js/setup.js:97 msgid "Weak password" -msgstr "" +msgstr "Asan şifrə" #: js/setup.js:98 msgid "So-so password" -msgstr "" +msgstr "Elə-belə şifrə" #: js/setup.js:99 msgid "Good password" -msgstr "" +msgstr "Yaxşı şifrə" #: js/setup.js:100 msgid "Strong password" -msgstr "" +msgstr "Çətin şifrə" #: js/share.js:129 js/share.js:251 msgid "Shared" @@ -488,7 +440,7 @@ msgstr "Məktub göndərildi" #: js/share.js:1087 msgid "Warning" -msgstr "" +msgstr "Xəbərdarlıq" #: js/tags.js:8 msgid "The object type is not specified." @@ -605,7 +557,7 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: strings.php:6 msgid "Users" @@ -621,7 +573,7 @@ msgstr "İnzibatçı" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Kömək" #: tags/controller.php:22 msgid "Error loading tags" @@ -682,7 +634,7 @@ msgstr "" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Təhlükəsizlik xəbərdarlığı" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" diff --git a/l10n/az/files.po b/l10n/az/files.po index 4536156f147472087aea9f943b97c67f6dad8ccc..30fc1b020fdff3be126767c5ce7067c184f27cad 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index dec4ba57c48b66f10202f1ecb3b36c5cafad4742..65f6fe5c2a7044fb7f23e2d07fcdb3275e6dd6a2 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: unixidzero \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Açar" msgid "Secret" msgstr "Gizli" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Avadanlığın adı(məcburi deyil)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Şəbəkədə ünvan" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "İstifadəçi adı" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -198,7 +190,7 @@ msgstr "" #: appinfo/app.php:151 appinfo/app.php:162 msgid "URL" -msgstr "" +msgstr "URL" #: appinfo/app.php:155 appinfo/app.php:166 msgid "Secure https://" @@ -226,39 +218,47 @@ msgstr "" #: js/mountsfilelist.js:34 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: js/mountsfilelist.js:36 msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Saxlanıldı" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "İstifadəçilər" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Sil" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/az/files_sharing.po b/l10n/az/files_sharing.po index 322fa08474b89968f2fe5a1175022f682a5b9719..df4f05337c2876dfdee72edcb98860604e800539 100644 --- a/l10n/az/files_sharing.po +++ b/l10n/az/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 10:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index b2f18e3550a84b18b49e2ec12b354baca201a7c2..3b163624aab32fcab1bb43cb6cc7106666308958 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 06:40+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "geriqaytarılıb" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Burda heçnə yoxdur. Sizin zibil qutusu boşdur!" #: templates/index.php:18 msgid "Name" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 84522fa5e06ca511ba0220ff33865f5042d29a2f..49be218d5e69d6f309de895c227a6f1f79fe26ee 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 07:40+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Adətən tez həll etmək üçün WEB serverdə yazma yetkisi verilir" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Bax %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "Bu adətən %s config qovluğuna web server üçün yazma yetkisi verdikdə, %s tərəfindən fix edilə bilir. " -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Konfiqurasiya nüsxəsi təyin edildi" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -53,11 +53,11 @@ msgstr "" #: private/app.php:374 msgid "Help" -msgstr "" +msgstr "Kömək" #: private/app.php:387 msgid "Personal" -msgstr "" +msgstr "Şəxsi" #: private/app.php:398 msgid "Settings" @@ -96,12 +96,12 @@ msgstr "" #: private/installer.php:77 msgid "App directory already exists" -msgstr "" +msgstr "Proqram təminatı qovluğu artıq mövcuddur." #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Proqram təminatı qovluğunu yaratmaq mümkün olmadı. Xahiş edilir yetkiləri düzgün təyin edəsiniz. %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -152,7 +152,7 @@ msgstr "" #: private/json.php:29 msgid "Application is not enabled" -msgstr "" +msgstr "Proqram təminatı aktiv edilməyib" #: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" @@ -160,21 +160,21 @@ msgstr "Təyinat metodikası" #: private/json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz." #: private/json.php:74 msgid "Unknown user" -msgstr "" +msgstr "Istifadəçi tanınmır " -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "Verilənlər bazası istifadəçi adını %s daxil et." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "Verilənlər bazası adını %s daxil et." #: private/setup/abstractdatabase.php:32 #, php-format @@ -184,35 +184,35 @@ msgstr "" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL istifadəçi adı və/ya şifrəsi düzgün deyil : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" - -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +msgstr "MySQL/MariaDB istifadəçi adı və/ya şifrəsi düzgün deyil :" + +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB səhvi: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -226,7 +226,7 @@ msgstr "" #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Bu istifadəçini MySQL/MariaDB-dən sil" #: private/setup/mysql.php:91 #, php-format @@ -235,17 +235,17 @@ msgstr "" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Bu istifadəçini MySQL/MariaDB-dən sil." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Oracle qoşulması alınmır" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -256,11 +256,11 @@ msgstr "" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "İnzibatçı istifadəçi adını təyin et." #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "İnzibatçı şifrəsini təyin et." #: private/setup.php:170 msgid "" @@ -277,17 +277,17 @@ msgstr "" #: private/share/mailnotifications.php:142 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s yayımlandı »%s« sizinlə" #: private/share/share.php:494 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil." #: private/share/share.php:501 #, php-format msgid "You are not allowed to share %s" -msgstr "" +msgstr "%s-in yayimlanmasına sizə izin verilmir" #: private/share/share.php:531 #, php-format @@ -335,70 +335,70 @@ msgstr "" #: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Yayımlanma tipi %s etibarlı deyil %s üçün" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -465,11 +465,11 @@ msgstr "" #: private/user/manager.php:249 msgid "A valid username must be provided" -msgstr "" +msgstr "Düzgün istifadəçi adı daxil edilməlidir" #: private/user/manager.php:253 msgid "A valid password must be provided" -msgstr "" +msgstr "Düzgün şifrə daxil edilməlidir" #: private/user/manager.php:258 msgid "The username is already being used" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index 91a1408b978bb6c440c809d99eedc730293bcb9a..721bcc2ec008462eefe9be01548980030b34dcd6 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -46,13 +46,13 @@ msgstr "Məktub göndərildi" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyiin etməlisiniz." #: admin/controller.php:116 templates/admin.php:368 msgid "Send mode" -msgstr "" +msgstr "Göndərmə rejimi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Şifrələnmə" @@ -83,7 +83,7 @@ msgstr "Qrup artıq mövcuddur" #: ajax/creategroup.php:20 msgid "Unable to add group" -msgstr "" +msgstr "Qrupu əlavə etmək olmur" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" @@ -93,55 +93,55 @@ msgstr "Fayllar uğurla deşifrə edildi" msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz." #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "" +msgstr "Şifrələmə açarları həmişəlik silindi" #: ajax/deletekeys.php:16 msgid "" "Couldn't permanently delete your encryption keys, please check your " "owncloud.log or ask your administrator" -msgstr "" +msgstr "Sizin şifrələnmə açarlarınızı həmişəlik silmək mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz." #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." -msgstr "" +msgstr "Proqram təminatını silmək mümkün olmadı." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "Məktub yadda saxlanıldı" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "Yalnış məktub" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Qrupu silmək olmur" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "İstifadəçini silmək olmur" #: ajax/restorekeys.php:14 msgid "Backups restored successfully" -msgstr "" +msgstr "Ehtiyyat nüsxələr uğurla geri qaytarıldı" #: ajax/restorekeys.php:23 msgid "" "Couldn't restore your encryption keys, please check your owncloud.log or ask" " your administrator" -msgstr "" +msgstr "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz." #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "Dil dəyişdirildi" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -149,106 +149,106 @@ msgstr "Səhv müraciət" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "İstifadəçini %s qrupundan silmək mümkün olmadı" #: ajax/updateapp.php:44 msgid "Couldn't update app." -msgstr "" +msgstr "Proqram təminatını yeniləmək mümkün deyil." #: changepassword/controller.php:17 msgid "Wrong password" -msgstr "" +msgstr "Yalnış şifrə" #: changepassword/controller.php:36 msgid "No user supplied" -msgstr "" +msgstr "Heç bir istifadəçiyə mənimsədilmir" #: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək." #: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz." #: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "İnzibatçı mərkəzi şifrə dəyişilməsini dəstəkləmir ancaq, istifadəçi şifrələnmə açarı uğurla yeniləndi." #: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" -msgstr "" +msgstr "Şifrəni dəyişmək olmur" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "İnamlı domainlərə əlavə et" #: js/admin.js:146 msgid "Sending..." -msgstr "" +msgstr "Göndərilir..." #: js/apps.js:45 templates/help.php:7 msgid "User Documentation" -msgstr "" +msgstr "İstifadəçi sənədləri" #: js/apps.js:54 msgid "Admin Documentation" -msgstr "" +msgstr "İnzibatçı sənədləri" #: js/apps.js:82 msgid "Update to {appversion}" -msgstr "" +msgstr "{appversion} -a yenilə" #: js/apps.js:90 msgid "Uninstall App" -msgstr "" +msgstr "Proqram təminatını sil" #: js/apps.js:96 js/apps.js:158 js/apps.js:191 msgid "Disable" -msgstr "" +msgstr "Dayandır" #: js/apps.js:96 js/apps.js:167 js/apps.js:184 js/apps.js:215 msgid "Enable" -msgstr "" +msgstr "İşə sal" #: js/apps.js:147 msgid "Please wait...." -msgstr "" +msgstr "Xahiş olunur gözləyəsiniz." #: js/apps.js:155 js/apps.js:156 js/apps.js:182 msgid "Error while disabling app" -msgstr "" +msgstr "Proqram təminatını dayandırdıqda səhv baş verdi" #: js/apps.js:181 js/apps.js:210 js/apps.js:211 msgid "Error while enabling app" -msgstr "" +msgstr "Proqram təminatını işə saldıqda səhv baş verdi" #: js/apps.js:220 msgid "Updating...." -msgstr "" +msgstr "Yenilənir..." #: js/apps.js:223 msgid "Error while updating app" -msgstr "" +msgstr "Proqram təminatı yeniləndikdə səhv baş verdi" #: js/apps.js:223 js/apps.js:236 msgid "Error" @@ -256,90 +256,90 @@ msgstr "Səhv" #: js/apps.js:224 templates/apps.php:55 msgid "Update" -msgstr "" +msgstr "Yenilənmə" #: js/apps.js:227 msgid "Updated" -msgstr "" +msgstr "Yeniləndi" #: js/apps.js:233 msgid "Uninstalling ...." -msgstr "" +msgstr "Silinir..." #: js/apps.js:236 msgid "Error while uninstalling app" -msgstr "" +msgstr "Proqram təminatını sildikdə səhv baş verdi" #: js/apps.js:237 templates/apps.php:56 msgid "Uninstall" -msgstr "" +msgstr "Sil" #: js/personal.js:256 msgid "Select a profile picture" -msgstr "" +msgstr "Profil üçün şəkli seç" #: js/personal.js:287 msgid "Very weak password" -msgstr "" +msgstr "Çox asan şifrə" #: js/personal.js:288 msgid "Weak password" -msgstr "" +msgstr "Asan şifrə" #: js/personal.js:289 msgid "So-so password" -msgstr "" +msgstr "Elə-belə şifrə" #: js/personal.js:290 msgid "Good password" -msgstr "" +msgstr "Yaxşı şifrə" #: js/personal.js:291 msgid "Strong password" -msgstr "" +msgstr "Çətin şifrə" #: js/personal.js:310 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Fayllar deşifrə edilir... Xahiş olunur gözləyəsiniz, bu biraz vaxt alacaq." #: js/personal.js:324 msgid "Delete encryption keys permanently." -msgstr "" +msgstr "Şifrələnmə açarlarını həmişəlik sil." #: js/personal.js:338 msgid "Restore encryption keys." -msgstr "" +msgstr "Şifrələnmə açarlarını geri qaytar" #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" -msgstr "" +msgstr "{objName} silmək olmur" #: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" -msgstr "" +msgstr "Qrup yaranmasında səhv baş verdi" #: js/users/groups.js:201 msgid "A valid group name must be provided" -msgstr "" +msgstr "Düzgün qrup adı təyin edilməlidir" #: js/users/groups.js:229 msgid "deleted {groupName}" -msgstr "" +msgstr "{groupName} silindi" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" -msgstr "" +msgstr "geriyə" #: js/users/users.js:49 templates/admin.php:323 #: templates/users/part.createuser.php:12 templates/users/part.userlist.php:10 #: templates/users/part.userlist.php:41 msgid "Groups" -msgstr "" +msgstr "Qruplar" #: js/users/users.js:53 templates/users/part.userlist.php:12 #: templates/users/part.userlist.php:57 msgid "Group Admin" -msgstr "" +msgstr "Qrup İnzibatçısı" #: js/users/users.js:75 templates/users/part.grouplist.php:46 #: templates/users/part.userlist.php:108 @@ -348,83 +348,83 @@ msgstr "Sil" #: js/users/users.js:96 templates/users/part.userlist.php:98 msgid "never" -msgstr "" +msgstr "heç vaxt" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" -msgstr "" +msgstr "{userName} silindi" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" -msgstr "" +msgstr "qrupu əlavə et" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" -msgstr "" +msgstr "Düzgün istifadəçi adı daxil edilməlidir" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" -msgstr "" +msgstr "İstifadəçi yaratdıqda səhv baş verdi" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" -msgstr "" +msgstr "Düzgün şifrə daxil edilməlidir" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Xəbərdarlıq: \"{user}\" istfadəçisi üçün ev qovluğu artıq mövcuddur." #: personal.php:50 personal.php:51 msgid "__language_name__" -msgstr "" +msgstr "__AZ_Azerbaijan__" #: templates/admin.php:12 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)" #: templates/admin.php:13 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr" #: templates/admin.php:14 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Xəbərdarlıqlar, səhvlər və ən pis hadisələr" #: templates/admin.php:15 msgid "Errors and fatal issues" -msgstr "" +msgstr "Səhvlər və ən pis hadisələr" #: templates/admin.php:16 msgid "Fatal issues only" -msgstr "" +msgstr "Yalnız ən pis hadisələr" #: templates/admin.php:20 templates/admin.php:27 msgid "None" -msgstr "" +msgstr "Heç bir" #: templates/admin.php:21 msgid "Login" -msgstr "" +msgstr "Giriş" #: templates/admin.php:22 msgid "Plain" -msgstr "" +msgstr "Adi" #: templates/admin.php:23 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:28 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:29 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:51 templates/admin.php:65 msgid "Security Warning" -msgstr "" +msgstr "Təhlükəsizlik xəbərdarlığı" #: templates/admin.php:54 #, php-format @@ -444,7 +444,7 @@ msgstr "" #: templates/admin.php:79 templates/admin.php:94 msgid "Setup Warning" -msgstr "" +msgstr "Quruluş xəbərdarlığı" #: templates/admin.php:82 msgid "" @@ -471,7 +471,7 @@ msgstr "" #: templates/admin.php:109 msgid "Database Performance Info" -msgstr "" +msgstr "Verilənlər bazasının davamiyyəti məlumatı" #: templates/admin.php:112 msgid "" @@ -482,7 +482,7 @@ msgstr "" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "'fileinfo' modulu çatışmır" #: templates/admin.php:126 msgid "" @@ -492,7 +492,7 @@ msgstr "" #: templates/admin.php:137 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Sizin PHP versiyası köhnəlib" #: templates/admin.php:140 msgid "" @@ -503,7 +503,7 @@ msgstr "" #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP simvol tipi UTF-8 deyil" #: templates/admin.php:154 msgid "" @@ -535,7 +535,7 @@ msgstr "" #: templates/admin.php:190 msgid "Internet connection not working" -msgstr "" +msgstr "İnternet qoşulması işləmir" #: templates/admin.php:193 msgid "" @@ -734,11 +734,11 @@ msgstr "Yenə" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Şifrə" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Dayandır" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index b4ab2d3cf4210db13e5cd69095ddbdd6b8b8450f..c061209de13e06fe35d38477a4bccce8f5df60bf 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 10:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: unixidzero \n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Heç bir iş təyin edilməyib" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "%s configi təyin etmək mümkün olmadı" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -191,7 +191,7 @@ msgstr "" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" -msgstr "" +msgstr "Kömək" #: templates/part.wizard-groupfilter.php:4 #, php-format diff --git a/l10n/be/core.po b/l10n/be/core.po index 86a04642b4bf06e1d474bde6d5863dcfff376c37..21afd01ad4518648ce29f8bf574a2d0233e0aba2 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -149,86 +149,30 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Налады" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Секунд таму" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1281 -msgid "today" -msgstr "Сёння" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Ўчора" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "У мінулым месяцы" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "У мінулым годзе" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Гадоў таму" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index cc41ee3256db288adcee02cd36b388484117a2ed..619299c247d51f92b236795eca8ff80b5a4f4be4 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index e101456dbb03abf320593577e718221ac6249768..9fa53127c921c0c1b436cc09cba9d7ad52328161 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 285a20b574ff24c8cf166c09ea7c5da22490a4a7..306e4205d5bf0041679369092b102aa960063fc1 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index e680af33656eccdf68573b511d6baab074232dc6..641b608bf6512338c1cb47f4dec412427e1071be 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,78 +150,30 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Настройки" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Папка" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Изображение" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Аудио" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Записване..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "преди секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "преди %n минута" -msgstr[1] "преди %n минути" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "преди %n час" -msgstr[1] "преди %n часа" - -#: js/js.js:1281 -msgid "today" -msgstr "днес" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "преди %n ден" -msgstr[1] "преди %n дена" - -#: js/js.js:1284 -msgid "last month" -msgstr "последният месец" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "преди %n месец" -msgstr[1] "преди %n месеца" - -#: js/js.js:1286 -msgid "last year" -msgstr "последната година" - -#: js/js.js:1287 -msgid "years ago" -msgstr "последните години" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Неуспешено изпращане на имейл. Моля, свържи се с администратора." diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 1e3b9f71fec25d199f598030429719fc82735e6d..ede19ec4ed5524336c74b5df99f91eb6da69b495 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d38f8f29ae2ee4ebbad34bb07381fa5d8879a61f..fac9eb47cddc95b998cb2157618a6f391905ad20 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Damian Nachev , 2014 # Ivo, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +69,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +86,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Сървър (незадължително)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Порт (незадължително)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Регион (незадължително)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +118,8 @@ msgstr "App secret" msgid "Host" msgstr "Сървър" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Потребителско Име" @@ -148,14 +149,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Потребителско Име (задължително)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (задължително)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Регион (незадължително за OpenStack Object Storage)" @@ -181,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (задължително за OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Максимално време за HTTP заявки в секунди (незадължително)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +225,41 @@ msgstr "Личен" msgid "System" msgstr "Системен" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Всички потребители. Пиши, за да избереш потребител или група." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(група)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Запазено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Бележка: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "и" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Note: PHP подръжката на cURL не е включена или инсталирана. Прикачването на %s не е възможно. Моля, поискай системния администратор да я инсталира." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Note: PHP подръжката на FTP не е включена или инсталирана. Прикачването на %s не е възможно. Моля, поискай системния администратор да я инсталира." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +302,23 @@ msgstr "Достъпно за" msgid "Add storage" msgstr "Добави дисково пространство" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Липсва потребител или група" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Всички Потребители" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Потребители" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Изтрий" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Разреши Потребителско Външно Дисково Пространство" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Разреши на потребителите да прикачват следното външно дисково пространство" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root сертификати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Внасяне на Root Сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 7f3170a8b3eae2656aea23c7dfb4a0961b30d0d7..6740ed821dc049d7653a0f61584a36373312a076 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 20:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "Невалиден или ненадежден SSL сертификат" msgid "Couldn't add remote share" msgstr "Неуспешно добавяне на отдалечена споделена директория." -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Споделено с теб" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Споделено с други" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Споделено с връзка" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 1204311e6cf182136118c11dbe8532bf6b210cf5..a7c0669972a5a38e03f428cc046a3e07249cf19c 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 9a9ea2758d7f29cdcd574fd93f71664c49112ce4..20972fb871d05449b5d3ce5d30a1d99326d89724 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +19,33 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Неуспешен опит за запис в \"config\" папката!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Това може да бъде решено единствено като разрешиш на уеб сървъра да пише в config папката." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Виж %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Това обикновено може да бъде оправено като %s даде разрешение на уеб сървъра да записва в config папката %s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Открита е примерна конфигурация" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Изтекла сесия. Моля, презареди страница msgid "Unknown user" msgstr "Непознат потребител" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s въведи потребителско име за базата данни." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s въведи име на базата данни." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Невалидно MS SQL потребителско име и/или парола: %s." #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да въведеш съществуващ профил или като администратор." @@ -197,23 +197,23 @@ msgstr "Необходимо е да въведеш съществуващ пр msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB потребителското име и/или паролата са невалидни." -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Грешка в базата данни: \"%s\"." -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB потребител '%s'@'%%' вече съществув msgid "Drop this user from MySQL/MariaDB." msgstr "Премахни този потребител от MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle връзка не можа да се осъществи." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Невалидно Oracle потребителско име и/или парола." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Проблемната команда беше: \"%s\", име: %s, парола: %s." @@ -338,68 +338,68 @@ msgstr "Неуспешно споделяне на %s, защото сподел msgid "Share type %s is not valid for %s" msgstr "Споделянето на тип %s не валидно за %s." -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Неуспешна промяна на правата за достъп за %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Неуспешна промяна на правата за достъп за %s, защото съдържанието не е открито." -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Неуспешно задаване на дата на изтичане. Споделни папки или файлове не могат да изтичат по-късно от %s след като са били споделени" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Неуспешно задаване на дата на изтичане. Датата на изтичане е в миналото" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс." -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Споделянето на сървърния %s не е открито." -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Споделянето на сървъра за %s не е открито." -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Споделяне на %s е неуспешно, защото потребител %s е оригиналния собственик." -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Неуспешно споделяне на %s, защото промените надвишават правата на достъп дадени на %s." -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Неуспешно споделяне на %s, защото повторно споделяне не е разрешено." -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Неуспешно споделяне на %s, защото не е открит първоизточникът на %s, за да бъде споделяне по сървъра." -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 6efff02daa391f54887e7f7f840d4c07135f52bf..1bba18641a0a629d78744e2d713a04719afb00d5 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Ivo\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Трябва да зададеш своя имейл преди да м msgid "Send mode" msgstr "Режим на изпращане" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Криптиране" @@ -326,7 +326,7 @@ msgstr "Очаква се валидно име на група" msgid "deleted {groupName}" msgstr "{groupName} изтрит" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "възтановяване" @@ -350,27 +350,27 @@ msgstr "Изтрий" msgid "never" msgstr "никога" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} изтрит" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "нова група" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Валидно потребителско име трябва да бъде зададено." -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при създаване на потребител." -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Валидна парола трябва да бъде зададена." -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: Личната директория на потребителя \"{user}\" вече съществува." @@ -734,11 +734,11 @@ msgstr "Още" msgid "Less" msgstr "По-малко" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версия" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Използвал си %s от наличните %s." -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Парола" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Паролата ти е промена." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Неуспешна промяна на паролата." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Пълно Име" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Имейл" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Твоят имейл адрес" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Въведи имейл, за да включиш функцията за възстановяване на паролата и уведомления." -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Аватар" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Качи нов" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Избери нов от Файловете" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Премахни изображението" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png или jpg. Най-добре в квадратни размери, но ще имаш възможност да го изрежеш." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Твоят аватар е взет от оригиналния ти профил." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Отказ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Избери като аватар" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Език" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помогни с превода" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложението за криптиране вече не е включено, моля разшифрирай всичките си файлове." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Парола за вписване" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Разшифровай всички Файлове" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Криптиращите ти ключове са преместени на резервно място. Ако нещо се случи ще можеш да възстановиш ключовете. Изтрий ги единствено ако си сигурен, че всички файлове са успешно разшифровани." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Възстанови Криптиращи Ключове" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Изтрий Криптиращи Ключове" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Потребителско Име" @@ -976,19 +984,19 @@ msgstr "Всички" msgid "Admins" msgstr "Администратори" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота по подразбиране" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Моля, въведи квота за заделено място (пр. \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Друга..." diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index cedccbadcec5514d82b801f42df943c374f1abf9..e24aed2deea00852fde98e6c174e6f60cb8fe1b1 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-21 01:54-0400\n" -"PO-Revision-Date: 2014-07-20 17:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Не е посочено действие" msgid "No configuration specified" msgstr "Не е посочена конфигурация" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Не са посочени данни" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Неуспешно задаване на конфигруацията %s" @@ -103,65 +103,65 @@ msgstr "Неуспешно установяване на Base DN" msgid "Please specify the port" msgstr "Mоля, посочи портът" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Конфигурацията е ОК" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Конфигурацията е грешна" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Конфигурацията не е завършена" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Избери Групи" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Избери типове обекти" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Избери атрибути" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Успешен тест на връзката." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Неуспешен тест на връзката." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Потвърди Изтриването" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s открита група" msgstr[1] "%s открити групи" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s октрит потребител" msgstr[1] "%s октрити потребители" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Не е открита желанта функция" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Невалиден Сървър" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Заявява филтърът, който да бъде приложен при опит за вписване. %%uid замества потребителското име в полето login action. Пример: \"uid=%%uid\"." -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Сървър" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Сървър:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Добави Сървърна Конфигурация" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Изтрий Конфигурацията" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Протоколът не задължителен освен ако не изискваш SLL. В такъв случай започни с ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Парола" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "За анонимен достъп, остави DN и Парола празни." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "По един Base DN на ред" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни." diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0aa4c392f2db428411902214767cedd8b387d200..2f7844d25c5a0608840596afb6d3b10ef5e5d8dc 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -59,11 +59,11 @@ msgstr "" #: avatar/controller.php:86 msgid "Unknown filetype" -msgstr "" +msgstr "অজানা প্রকৃতির ফাইল" #: avatar/controller.php:90 msgid "Invalid image" -msgstr "" +msgstr "অবৈধ চিত্র" #: avatar/controller.php:120 avatar/controller.php:147 msgid "No temporary profile picture available, try again" @@ -149,78 +149,30 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "ফাইল" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "চিত্র" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "অডিও" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "সেকেন্ড পূর্বে" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "আজ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "গতকাল" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "গত মাস" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "গত বছর" - -#: js/js.js:1287 -msgid "years ago" -msgstr "বছর পূর্বে" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" @@ -288,11 +240,11 @@ msgstr "" #: js/oc-dialogs.js:450 msgid "New Files" -msgstr "" +msgstr "নতুন ফাইল" #: js/oc-dialogs.js:451 msgid "Already existing files" -msgstr "" +msgstr "বিদ্যমান ফাইল" #: js/oc-dialogs.js:453 msgid "Which files do you want to keep?" @@ -306,11 +258,11 @@ msgstr "" #: js/oc-dialogs.js:462 msgid "Cancel" -msgstr "বাতির" +msgstr "বাতিল" #: js/oc-dialogs.js:472 msgid "Continue" -msgstr "" +msgstr "চালিয়ে যাও" #: js/oc-dialogs.js:519 js/oc-dialogs.js:532 msgid "(all selected)" @@ -581,7 +533,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:18 msgid "Reset" -msgstr "" +msgstr "পূণঃনির্ধানণ" #: lostpassword/templates/resetpassword.php:5 msgid "New password" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 13cb57f9f5f97d00c43da2757c3ca165b0f3b229..89b14f1d8a1a73710f4450c8e672d3f531e0609c 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,7 +163,7 @@ msgstr "ফাইল" #: appinfo/app.php:27 msgid "All files" -msgstr "" +msgstr "সব ফাইল" #: js/file-upload.js:269 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 31a5dea6552a64851c57a508a6474775288a9c79..50f03e71d7e4050bd36e969e3e307d23f9b2ee15 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:00+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +36,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "" -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "" @@ -91,7 +92,7 @@ msgid "" " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "" @@ -157,7 +158,7 @@ msgstr "" #: templates/settings-admin.php:59 msgid "Change Password" -msgstr "" +msgstr "কূটশব্দ পরিবর্তন করুন" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 15802b5ea508a4b654e299c3c832909dd35195ae..7998f4bf47e448bd45cd641af032da12c29b8084 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -53,7 +54,7 @@ msgstr "" #: appinfo/app.php:47 msgid "Location" -msgstr "াবস্থান" +msgstr "অবস্থান" #: appinfo/app.php:50 msgid "Amazon S3" @@ -67,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +117,8 @@ msgstr "" msgid "Host" msgstr "হোস্ট" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ব্যবহারকারী" @@ -147,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +224,41 @@ msgstr "ব্যক্তিগত" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 -msgid "Saved" +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" msgstr "" -#: lib/config.php:716 +#: js/settings.js:467 js/settings.js:474 +msgid "Saved" +msgstr "সংরক্ষণ করা হলো" + +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "সমস্ত ব্যবহারকারী" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "গোষ্ঠীসমূহ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ব্যবহারকারী" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "মুছে" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL রুট সনদপত্র" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index ad4c1691615da08097538ce5fe1480d752e7d320..8b41867170605dc51dc38df79582e8097de2093f 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-21 01:54-0400\n" -"PO-Revision-Date: 2014-08-20 18:20+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +68,7 @@ msgstr "" #: js/external.js:76 msgid "Cancel" -msgstr "বাতির" +msgstr "বাতিল" #: js/external.js:77 msgid "Add remote share" @@ -83,7 +84,7 @@ msgstr "" #: js/sharedfilelist.js:128 msgid "Shared by" -msgstr "" +msgstr "যাদের মাঝে ভাগাভাগি করা হয়েছে" #: templates/authenticate.php:4 msgid "This share is password-protected" @@ -99,7 +100,7 @@ msgstr "কূটশব্দ" #: templates/list.php:16 msgid "Name" -msgstr "রাম" +msgstr "নাম" #: templates/list.php:20 msgid "Share time" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index deba9bb22a6574ac87592c1541d81ff6bbbae5c8..a443acde6608eb601accdf44b0dea167b4f709d6 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,20 +21,20 @@ msgstr "" #: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "%s স্থায়ীভাবে মুছে ফেলা গেলনা" #: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s ফেরত আনা গেলনা" #: appinfo/app.php:15 js/filelist.js:34 msgid "Deleted files" -msgstr "" +msgstr "মুছে ফেলা ফাইলসমূহ" #: js/app.js:52 templates/index.php:21 templates/index.php:23 msgid "Restore" -msgstr "" +msgstr "ফিরিয়ে দাও" #: js/filelist.js:119 js/filelist.js:164 js/filelist.js:214 msgid "Error" @@ -41,19 +42,19 @@ msgstr "সমস্যা" #: lib/trashbin.php:903 lib/trashbin.php:905 msgid "restored" -msgstr "" +msgstr "পূণঃসংরক্ষিত" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "এখানে কিছু নেই। আপনার ট্র্যাসবিন শুন্য" #: templates/index.php:18 msgid "Name" -msgstr "রাম" +msgstr "নাম" #: templates/index.php:29 msgid "Deleted" -msgstr "" +msgstr "মুছে ফেলা" #: templates/index.php:32 templates/index.php:33 msgid "Delete" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 2910e627278a6c71363d6430a4f7633a89129373..75f29943f12bd23a65fdec9417497d8e8dbdb3de 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 17:31+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ফিরে যাওয়া গেলনা: %s" -#: js/versions.js:7 +#: js/versions.js:48 msgid "Versions" -msgstr "ভার্সন" +msgstr "সংষ্করন" -#: js/versions.js:53 +#: js/versions.js:70 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।" -#: js/versions.js:79 +#: js/versions.js:97 msgid "More versions..." -msgstr "" +msgstr "আরো সংষ্করণ...." -#: js/versions.js:116 +#: js/versions.js:135 msgid "No other versions available" -msgstr "" +msgstr "আর কোন সংষ্করণ প্রাপ্তব্য নয়" -#: js/versions.js:149 +#: js/versions.js:165 msgid "Restore" -msgstr "" +msgstr "ফিরিয়ে দাও" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 227d606ca38f4b42afed61941d83819b096beded..489121204191d15e231fbf96d29f0f559f451f7a 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,33 +18,33 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" -msgstr "" +msgstr "\"config\" ডিরেক্টরিতে লেখা যায়না!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরিতে লেখার অধিকার দিয়ে এই সমস্যা সমাধান করা যায়" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" -msgstr "" +msgstr "%s দেখ" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরি%sতে লেখার অধিকার দিয়ে%s এই সমস্যা সমাধান করা যায়" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "নমুনা কনফিগারেশন পাওয়া গেছে" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -79,15 +80,15 @@ msgstr "" #: private/app.php:1130 msgid "No app name specified" -msgstr "" +msgstr "কোন অ্যাপ নাম সুনির্দিষ্ট নয়" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "অজানা প্রকৃতির ফাইল" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "অবৈধ চিত্র" #: private/defaults.php:42 msgid "web services under your control" @@ -95,12 +96,12 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম #: private/installer.php:77 msgid "App directory already exists" -msgstr "" +msgstr "এই অ্যাপ ডিরেক্টরিটি পূর্ব থেকেই বিদ্যমান" #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "অ্যাপ ফোল্ডার বানানো হেলনা। অনুমতি নির্ধারণ করুন। %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -165,12 +166,12 @@ msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া ক msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 3b93fda47ec5a2ee683d3c6c0b6deef9c6d18f6f..9d027ce70936830cf2bad193b99519bc01b3ea34 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -24,7 +24,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "সংরক্ষণ করা হলো" #: admin/controller.php:90 msgid "test email settings" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "সংকেতায়ন" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" @@ -349,27 +349,27 @@ msgstr "মুছে" msgid "never" msgstr "কখনোই নয়" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "বেশী" msgid "Less" msgstr "কম" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "বাতির" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "প্রবেশ" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "অসীম" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "অন্যান্য" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 4e8df328c2c283f6d856a35fb0883b59bc5ff770..9f59b236692ce197287fec1bea75679725d42335 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 18:50+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -84,7 +85,7 @@ msgstr "" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "সাফল্য" #: js/settings.js:133 msgid "Error" @@ -102,71 +103,71 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" #: settings.php:52 msgid "Server" -msgstr "" +msgstr "সার্ভার" #: settings.php:53 msgid "User Filter" @@ -326,15 +327,15 @@ msgstr "" #: templates/part.wizardcontrols.php:5 msgid "Back" -msgstr "" +msgstr "পেছনে যাও" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "চালিয়ে যাও" #: templates/settings.php:7 msgid "Expert" -msgstr "" +msgstr "দক্ষ" #: templates/settings.php:8 msgid "Advanced" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index e0a586f70191525754c7f8b3e07dd19d8e638c3a..42dbb2393cd29a472b120ee428a52f0902765e96 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azizul , 2014 # shubhra , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 19:11+0000\n" +"Last-Translator: azizul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:3 msgid "Address:" -msgstr "" +msgstr "ঠিকানা" #: templates/settings.php:5 msgid "Save" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index d05019d6b6752f1f0ef7aaf8fc99d2b3c5453b21..03f1615effa05566bdc56961b437de9a64b1a606 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "সেটিংস" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "ফোল্ডার" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/bn_IN/files.po b/l10n/bn_IN/files.po index 4433197f0400da8b821aa4b6ad3460df9561bc86..32df1b6aad1844bab5df214dadedaf1608ff228a 100644 --- a/l10n/bn_IN/files.po +++ b/l10n/bn_IN/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 559cd742b89ba33b5d64876c3cb93ad8e7a5682b..a06429893613422e6b1ad3bc8a7ca2de78d23eb6 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "হোস্ট" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ইউজারনেম" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "সংরক্ষিত" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "মুছে ফেলা" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bn_IN/files_trashbin.po b/l10n/bn_IN/files_trashbin.po index 7ea1ee2a7887d414910b887c2c6b2ba469cd7985..b60c90e4bf0ffde7c36ce47140b9d9275f7850c7 100644 --- a/l10n/bn_IN/files_trashbin.po +++ b/l10n/bn_IN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: ishita mukherjee \n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/lib.po b/l10n/bn_IN/lib.po index 67b327f6dc0598b6f739cc4a31bbe7889b9cf544..67b0e033143e2206a6ca362d7ac517e54dd21df2 100644 --- a/l10n/bn_IN/lib.po +++ b/l10n/bn_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: bn_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_IN/settings.po b/l10n/bn_IN/settings.po index ecb4e98dfab5bae69df4fd41942cc9a0aa0a524e..45fa395ae0038df48cab07a66efd18b70c0ae556 100644 --- a/l10n/bn_IN/settings.po +++ b/l10n/bn_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "মুছে ফেলা" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "বাতিল করা" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index de41e69c2b936324ff5f1f3389c0b9d19a512c66..6dcbd051a26cc0ee5f6ff64b65eefb976d66bff8 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -148,82 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "Fasikla" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po index 77e440d85723daff0065ca451f47bf4452638981..7b163633009891b26c9c5816a9daddc1fc382b0b 100644 --- a/l10n/bs/files_external.po +++ b/l10n/bs/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-14 01:54-0400\n" -"PO-Revision-Date: 2014-08-13 16:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 96842b3d47046b070c6ddeb106ca28bbb6813b06..d6a69ada764b37822f162912f2fc79581184b77d 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 03ea646c396e647d868ce35c0ce8b9d3281c122a..d5a56e7e621227af19e37be95aea1f0b727ea242 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -151,78 +151,30 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configuració" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fitxer" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imatge" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Desant..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segons enrere" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "fa %n minut" -msgstr[1] "fa %n minuts" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "fa %n hora" -msgstr[1] "fa %n hores" - -#: js/js.js:1281 -msgid "today" -msgstr "avui" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ahir" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "fa %n dies" -msgstr[1] "fa %n dies" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes passat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "fa %n mes" -msgstr[1] "fa %n mesos" - -#: js/js.js:1286 -msgid "last year" -msgstr "l'any passat" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anys enrere" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "No s'ha pogut restablir el correu. Contacteu amb l'administrador." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index b2c54ef98dfc35c7d59fa542c9a96017019c842e..ed6b8be6353f9fb73e9afa279527377948411188 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 13fcbb94bdc77df0102647b092bdb6aef742dc9b..595d214f00e514b3c6d10f850058c9dd09377a54 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -70,7 +70,7 @@ msgstr "Clau" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Cub" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Clau secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nom de l'equip (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regió (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "Secret de l'aplicació" msgid "Host" msgstr "Equip remot" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nom d'usuari" @@ -150,14 +150,6 @@ msgstr "Secret del client" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nom d'usuari (necessari)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Cub (requerit)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regió (opcional per OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL del punt identificador final (requerit per OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Temps d'espera dels requeriments HTTP en segons (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Desat" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "i" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Disponible per" msgid "Add storage" msgstr "Afegeix emmagatzemament" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Sense usuaris o grups" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tots els usuaris" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grups" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuaris" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Esborra" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilita l'emmagatzemament extern d'usuari" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permet als usuaris muntar els dispositius externs següents" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificats SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importa certificat root" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 81d70e50d466d8cd60c8941b385911976c33e718..060a544cbc03fc8c87b13a4a78ab94aa2f9edf56 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "No s'ha pogut afegir una compartició remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartit per vós" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartit amb altres" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartit amb enllaç" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 7ab01b0f69a7e1dfc6937162a3d47a64f1a7c26e..07f8c5b0b255cc13d1a04992d82be0b7c558e7c5 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index af366f88d729cd06accb1dd9c9cd0f9ed909570d..5001df654a4840af354d7a829691423d33cfb77a 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "No es pot escriure a la carpeta \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Això normalment es pot solucionar donant al servidor web permís d'escriptura a la carpeta de configuració" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Comproveu %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Això normalment es pot solucionar donant a %s permís d'escriptura a la carpeta de configuració %s" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." msgid "Unknown user" msgstr "Usuari desconegut" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s escriviu el nom d'usuari de la base de dades." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s escriviu el nom de la base de dades." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." @@ -196,23 +196,23 @@ msgstr "Heu d'escriure un compte existent o el d'administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "El nom d'usuari i/o la contrasenya de MySQL/MariaDB no són vàlids" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "L'usuari MySQL/MariaDB '%s'@'%%' ja existeix" msgid "Drop this user from MySQL/MariaDB." msgstr "Esborreu aquest usuari de MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No s'ha pogut establir la connexió Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" @@ -337,68 +337,68 @@ msgstr "Ha fallat en compartir %s, perquè no es permet compartir amb enllaços" msgid "Share type %s is not valid for %s" msgstr "La compartició tipus %s no és vàlida per %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ha fallat en establir els permisos per %s perquè aquests excedeixen els permesos per a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ha fallat en establir els permisos per %s, perquè no s'ha trobat l'element" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El rerefons de compartició %s ha d'implementar la interfície OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "El rerefons de compartició %s no s'ha trobat" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "El rerefons de compartició per a %s no s'ha trobat" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ha fallat en compartir %s perquè l'usuari %s és qui comparteix inicialment" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ha fallat en compartir %s perquè els permisos excedeixen els permesos per a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ha fallat en compartir %s, perquè no es permet compartir de nou" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ha fallat en compartir %s, perquè el rerefons de compartir per %s no pot trobar la seva font" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 3c5435a7b3ba65fd478b3f9ac2d4d2dea3ab63b2..9cee1c569fb308d743f818c54a4227ddd6cfd538 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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 "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Xifrat" @@ -329,7 +329,7 @@ msgstr "Heu de facilitar un nom de grup vàlid" msgid "deleted {groupName}" msgstr "eliminat {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfés" @@ -353,27 +353,27 @@ msgstr "Esborra" msgid "never" msgstr "mai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "eliminat {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "afegeix grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix" @@ -737,11 +737,11 @@ msgstr "Més" msgid "Less" msgstr "Menys" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versió" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Ompliu una adreça de correu per poder recuperar la contrasenya i rebre notificacions" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Puja'n una de nova" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecciona'n una de nova dels fitxers" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Elimina imatge" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "El vostre compte original proporciona l'avatar." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancel·la" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Selecciona com a imatge de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Les claus d'encriptació s'han mogut a una còpia de seguretat. Si alguna cosa va malament les podreu restablir. Esborreu-les permanentment només si esteu segur que tots els fitxers es desencripten correctament." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restableix les claus d'encriptació" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Esborra les claus d'encriptació" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nom d'accés" @@ -979,19 +987,19 @@ msgstr "Tothom" msgid "Admins" msgstr "Administradors" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota per defecte" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Il·limitat" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Un altre" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index af979bf48c1cf96fd04c1aed3f301bb869c8453c..e6f97ff5c480d6faca6e7d3cfee60f4e5f914da3 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "No heu especificat cap acció" msgid "No configuration specified" msgstr "No heu especificat cap configuració" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No heu especificat cap dada" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No s'ha pogut establir la configuració %s" @@ -106,65 +106,65 @@ msgstr "No s'ha pogut determinar la base DN" msgid "Please specify the port" msgstr "Especifiqueu el port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuració correcte" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuració incorrecte" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuració incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecciona els grups" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccioneu les classes dels objectes" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccioneu els atributs" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prova de connexió ha reeixit" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prova de connexió ha fallat" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Voleu eliminar la configuració actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirma l'eliminació" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "S'ha trobat %s grup" msgstr[1] "S'han trobat %s grups" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "S'ha trobat %s usuari" msgstr[1] "S'han trobat %s usuaris" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "La característica desitjada no s'ha trobat" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ordinador central no vàlid" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Afegeix la configuració del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Esborra la configuració" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Equip remot" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Usuari" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contrasenya" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Una DN Base per línia" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" diff --git a/l10n/ca@valencia/core.po b/l10n/ca@valencia/core.po index 1d3b3c611d966ab8cf48f59d38b27bf6827bde56..71e126a0ff74059c23d6ac84de9433f81ad80ed2 100644 --- a/l10n/ca@valencia/core.po +++ b/l10n/ca@valencia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ca@valencia/files_external.po b/l10n/ca@valencia/files_external.po index b3a512951f8f974ea7e8708f6e1a4b5f55d0936c..944f92f614d176640800d8b2041c6f19fe25349a 100644 --- a/l10n/ca@valencia/files_external.po +++ b/l10n/ca@valencia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ca@valencia/settings.po b/l10n/ca@valencia/settings.po index 42eb24660a29e544639d9b66c9a61e64e8baf3e2..a32132ec33a6d9e5ab108710dc0921287ba361d5 100644 --- a/l10n/ca@valencia/settings.po +++ b/l10n/ca@valencia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/owncloud/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 70327c569872a174d58de3d7fc09a7ee401f83f1..863e4e6f23693245e5f7129f9e548a9bd4b04f95 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -158,82 +158,30 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Nastavení" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Soubor" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Složka" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Obrázek" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "před pár vteřinami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "před %n minutou" -msgstr[1] "před %n minutami" -msgstr[2] "před %n minutami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "před %n hodinou" -msgstr[1] "před %n hodinami" -msgstr[2] "před %n hodinami" - -#: js/js.js:1281 -msgid "today" -msgstr "dnes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včera" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "před %n dnem" -msgstr[1] "před %n dny" -msgstr[2] "před %n dny" - -#: js/js.js:1284 -msgid "last month" -msgstr "minulý měsíc" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "před %n měsícem" -msgstr[1] "před %n měsíci" -msgstr[2] "před %n měsíci" - -#: js/js.js:1286 -msgid "last year" -msgstr "minulý rok" - -#: js/js.js:1287 -msgid "years ago" -msgstr "před lety" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nepodařilo se odeslat email pro změnu hesla. Kontaktujte vašeho administrátora." @@ -872,12 +820,12 @@ msgstr "Kontaktujte prosím správce. Pokud jste správce této instalace, nasta msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "V závislosti na vaší konfiguraci vám může být, jako administrátorovi, umožněno použití tlačítka níže k označení této domény jako důvěryhodné." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Přidat \"%s\" jako důvěryhodnou doménu" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 04fe6bc879ff235b217be8434eccd3895ad2133e..63b7586e77d7430c5998cad7e53f1b8240b03488 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index dcee26b41a8fe23730dfc3c45f7c888b62fddf08..c522bbfdc9bc0a872ea7ade49ddd317ac9c1b1b3 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Petr Šťastný \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -70,9 +70,9 @@ msgstr "Klíč" msgid "Secret" msgstr "Tajemství" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" -msgstr "" +msgstr "Bucket" #: appinfo/app.php:59 msgid "Amazon S3 and compliant" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Tajný klíč" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (nepovinný)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (nepovinný)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (nepovinný)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -104,7 +104,7 @@ msgstr "Povolit SSL" #: appinfo/app.php:69 msgid "Enable Path Style" -msgstr "" +msgstr "Povolit Path Style" #: appinfo/app.php:77 msgid "App key" @@ -119,8 +119,8 @@ msgstr "Tajemství aplikace" msgid "Host" msgstr "Počítač" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uživatelské jméno" @@ -150,14 +150,6 @@ msgstr "Klientské tajemství" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uživatelské jméno (povinné)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (nepovinný pro OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL identity koncového bodu (vyžadováno pro OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Časový limit HTTP požadavků v sekundách (nepovinné)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Osobní" msgid "System" msgstr "Systém" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Všichni uživatelé. Začněte psát pro výběr uživatelů a skupin." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(skupina)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Uloženo" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Poznámka:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "a" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: cURL podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: FTP podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Dostupné pro" msgid "Add storage" msgstr "Přidat úložiště" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Žádný uživatel nebo skupina" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Všichni uživatelé" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupiny" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uživatelé" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Smazat" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Zapnout externí uživatelské úložiště" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Povolit uživatelů připojit následující externí úložiště" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Kořenové certifikáty SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importovat kořenového certifikátu" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 1999484b72faf5cf6a9988db56c665181e6df068..0d0ef65b94e5734ad7ae3dd2cfe985558530ff26 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 14:41+0000\n" -"Last-Translator: Jaroslav Lichtblau \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Petr Šťastný \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,15 +34,15 @@ msgstr "Neplatný nebo nedůvěryhodný SSL certifikát" msgid "Couldn't add remote share" msgstr "Nelze přidat vzdálené úložiště" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sdíleno s vámi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Sdíleno s ostatními" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Sdíleno pomocí odkazu" @@ -56,7 +56,7 @@ msgstr "Zatím jste nesdíleli žádné soubory." #: js/app.js:73 msgid "You haven't shared any files by link yet." -msgstr "Zatím jste nesdíleli pomocí odkazu žádný soubor." +msgstr "Zatím jste nesdíleli pomocí odkazu žádné soubory." #: js/external.js:48 js/external.js:59 msgid "Do you want to add the remote share {name} from {owner}@{remote}?" @@ -80,7 +80,7 @@ msgstr "Přidat vzdálené úložiště" #: js/public.js:204 msgid "No ownCloud installation found at {remote}" -msgstr "Nebyla nalezen žádný funkční ownCloud na {remote}" +msgstr "Nebyla nalezena instalace ownCloud na {remote}" #: js/public.js:205 msgid "Invalid ownCloud url" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index be9386d460a9392f35d5c56eac8de3cc04d47bfb..1499646f284722587a86d41911d7505910567fc5 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 768022deb9916a9288fec0aefef6b594eee74b69..9cdd5f7ef2d27cbec672d0a8062b23ffb3db88aa 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 17:40+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -24,33 +24,33 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nelze zapisovat do adresáře \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře." +msgstr "To lze obvykle vyřešit povolením zápisu webovému serveru do konfiguračního adresáře" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Viz %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s." +msgstr "To lze obvykle vyřešit %spovolením zápisu webovému serveru do konfiguračního adresáře%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Byla detekována vzorová konfigurace" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -172,12 +172,12 @@ msgstr "Token vypršel. Obnovte prosím stránku." msgid "Unknown user" msgstr "Neznámý uživatel" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadejte uživatelské jméno %s databáze." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadejte název databáze pro %s databáze." @@ -193,7 +193,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet či správce." @@ -202,23 +202,23 @@ msgstr "Musíte zadat existující účet či správce." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB uživatelské jméno a/nebo heslo je neplatné" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -243,15 +243,15 @@ msgstr "MySQL/MariaDB uživatel '%s'@'%%' již existuje" msgid "Drop this user from MySQL/MariaDB." msgstr "Smazat tohoto uživatele z MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Spojení s Oracle nemohlo být navázáno" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Uživatelské jméno či heslo Oracle není platné" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" @@ -343,72 +343,72 @@ msgstr "Sdílení položky %s selhalo, protože sdílení pomocí linků není p msgid "Share type %s is not valid for %s" msgstr "Sdílení typu %s není korektní pro %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavení práv pro %s selhalo, protože položka nebyla nalezena" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění." +msgstr "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti." +msgstr "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend" +msgstr "Úložiště pro sdílení %s musí implementovat rozhraní OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" -msgstr "Podpůrná vrstva sdílení %s nenalezena" +msgstr "Úložiště sdílení %s nenalezeno" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" -msgstr "Podpůrná vrstva sdílení pro %s nenalezena" +msgstr "Úložiště sdílení pro %s nenalezeno" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první." +msgstr "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla %s povolena." -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "Sdílení položky %s selhalo, protože sdílení dále není povoleno" +msgstr "Sdílení položky %s selhalo, protože znovu-sdílení není povoleno" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s" +msgstr "Sdílení položky %s selhalo, protože úložiště sdílení %s nenalezla zdroj" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "Sdílení položky %s selhalo, protože soubor nebyl nalezen v dočasném úložišti" +msgstr "Sdílení položky %s selhalo, protože soubor nebyl nalezen ve vyrovnávací paměti" #: private/tags.php:183 #, php-format @@ -494,7 +494,7 @@ msgstr "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql). msgid "" "Permissions can usually be fixed by %sgiving the webserver write access to " "the root directory%s." -msgstr "Oprávnění bývají obvykle napravena, když %s povolí webovému serveru zápis do kořenového adresáře %s." +msgstr "Oprávnění lze obvykle napravit %spovolením zápisu webovému serveru do kořenového adresáře%s." #: private/util.php:441 msgid "Cannot write into \"config\" directory" @@ -509,19 +509,19 @@ msgstr "Nelze zapisovat do adresáře \"apps\"" msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do apps adresáře%s nebo vypnutím položky appstore v konfiguračním souboru." +msgstr "To lze obvykle vyřešit %spovolením zápisu webovému serveru do adresáře apps%s nebo zakázáním appstore v konfiguračním souboru." #: private/util.php:470 #, php-format msgid "Cannot create \"data\" directory (%s)" -msgstr "Nelze vytvořit \"data\" adresář (%s)" +msgstr "Nelze vytvořit adresář \"data\" (%s)" #: private/util.php:471 #, php-format msgid "" "This can usually be fixed by giving the " "webserver write access to the root directory." -msgstr "To bývá obvykle vyřešeno, když povolí webovému serveru zápis do kořenového adresáře." +msgstr "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře." #: private/util.php:487 #, php-format @@ -536,7 +536,7 @@ msgstr "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému #: private/util.php:494 msgid "Please ask your server administrator to install the module." -msgstr "Požádejte svého administrátora, ať nainstaluje příslušný modul." +msgstr "Požádejte svého administrátora o instalaci tohoto modulu." #: private/util.php:498 private/util.php:505 private/util.php:512 #: private/util.php:526 private/util.php:533 private/util.php:540 @@ -555,7 +555,7 @@ msgstr "Je vyžadováno PHP %s nebo vyšší." msgid "" "Please ask your server administrator to update PHP to the latest version. " "Your PHP version is no longer supported by ownCloud and the PHP community." -msgstr "Požádejte svého administrátora, aby provedl aktualizaci PHP na nejvyšší verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP." +msgstr "Požádejte svého administrátora o aktualizaci PHP na nejnovější verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP." #: private/util.php:587 msgid "" @@ -568,7 +568,7 @@ msgid "" "PHP Safe Mode is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "PHP Safe Mode je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru." +msgstr "PHP Safe Mode je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru." #: private/util.php:595 msgid "" @@ -581,19 +581,19 @@ msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "Magic Quotes je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru." +msgstr "Magic Quotes je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru." #: private/util.php:610 msgid "PHP modules have been installed, but they are still listed as missing?" -msgstr "PHP moduly jsou nainstalovány, ale stále vykázány jako chybějící?" +msgstr "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?" #: private/util.php:611 msgid "Please ask your server administrator to restart the web server." -msgstr "Požádejte svého administrátora, ať restartuje webový server." +msgstr "Požádejte svého administrátora o restart webového serveru." #: private/util.php:641 msgid "PostgreSQL >= 9 required" -msgstr "Je třeba PostgreSQL >= 9" +msgstr "Je vyžadováno PostgreSQL >= 9" #: private/util.php:642 msgid "Please upgrade your database version" @@ -607,23 +607,23 @@ msgstr "Při zjišťování verze PostgreSQL došlo k chybě" msgid "" "Please make sure you have PostgreSQL >= 9 or check the logs for more " "information about the error" -msgstr "Zajistěte prosím PostgreSQL >=9 nebo zkontrolujte logy pro více informací o chybě." +msgstr "Ujistěte se, že máte PostgreSQL >= 9, a zkontrolujte logy pro více informací o chybě." #: private/util.php:715 msgid "" "Please change the permissions to 0770 so that the directory cannot be listed" " by other users." -msgstr "Změntě prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli." +msgstr "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli." #: private/util.php:724 #, php-format msgid "Data directory (%s) is readable by other users" -msgstr "Data adresář (%s) je čitelný i ostatními uživateli" +msgstr "Datový adresář (%s) je čitelný i ostatními uživateli" #: private/util.php:745 #, php-format msgid "Data directory (%s) is invalid" -msgstr "Data adresář (%s) je neplatný" +msgstr "Datový adresář (%s) je neplatný" #: private/util.php:746 msgid "" @@ -634,4 +634,4 @@ msgstr "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocd #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "Nelze zjistit typ zámku %d na \"%s\"." +msgstr "Nelze získat zámek typu %d na \"%s\"." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c50b1e2b2c3b3f5636239054675a352a39ac7e50..12d27a295d03a7f13b2ea1b5a3a937fe976eec98 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 19:00+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -60,7 +60,7 @@ msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit s msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrování" @@ -109,7 +109,7 @@ msgstr "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znov #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "Šifrovací klíče trvale smazány" +msgstr "Šifrovací klíče trvale smazány" #: ajax/deletekeys.php:16 msgid "" @@ -119,7 +119,7 @@ msgstr "Nebylo možno trvale smazat vaše šifrovací klíče, zkontrolujte pros #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." -msgstr "Nepodařilo se odstranit aplikaci." +msgstr "Nepodařilo se odebrat aplikaci." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -204,11 +204,11 @@ msgstr "Změna hesla se nezdařila" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Přidat důvěryhodnou doménu" #: js/admin.js:146 msgid "Sending..." @@ -312,11 +312,11 @@ msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace mů #: js/personal.js:324 msgid "Delete encryption keys permanently." -msgstr "Trvale smazat šifrovací klíče" +msgstr "Trvale smazat šifrovací klíče." #: js/personal.js:338 msgid "Restore encryption keys." -msgstr "Obnovit šifrovací klíče" +msgstr "Obnovit šifrovací klíče." #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" @@ -334,7 +334,7 @@ msgstr "Musíte zadat platný název skupiny" msgid "deleted {groupName}" msgstr "smazána {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrátit zpět" @@ -358,27 +358,27 @@ msgstr "Smazat" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "smazán {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "přidat skupinu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varování: Osobní složka uživatele \"{user}\" již existuje." @@ -469,7 +469,7 @@ msgstr "Zkontrolujte prosím znovu instalační příručku." msgid "" "PHP is apparently setup to strip inline doc blocks. This will make several " "core apps inaccessible." -msgstr "PHP je patrně nastaveno tak, aby odstraňovalo vnitřní části dokumentů. Toto bude mít za následek množsví nedostupných hlavních aplikací." +msgstr "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací." #: templates/admin.php:98 msgid "" @@ -486,7 +486,7 @@ msgid "" "SQLite is used as database. For larger installations we recommend to change " "this. To migrate to another database use the command line tool: 'occ db" ":convert-type'" -msgstr "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít příkaz: 'occ db:convert-type'" +msgstr "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" @@ -518,7 +518,7 @@ msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "Znaková sada PHP není nastavena na UTF-8. Toto může způsobit závažné problémy ve jménech souborů se znaky neobsaženými v ASCII. Doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'." +msgstr "Znaková sada PHP není nastavena na UTF-8. To může způsobit závažné problémy se jmény souborů se znaky neobsaženými v ASCII. Důrazně doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'." #: templates/admin.php:165 msgid "Locale not working" @@ -565,7 +565,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění chyb v rozpoznání specifikujte prosím správnou cestu ve svém config.php souboru pod hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")" +msgstr "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -599,7 +599,7 @@ msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za #: templates/admin.php:260 msgid "Use system's cron service to call the cron.php file every 15 minutes." -msgstr "Použít systémovou službu cron pro spuštění souboru cron.php každých 15 minut." +msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." #: templates/admin.php:265 msgid "Sharing" @@ -742,11 +742,11 @@ msgstr "Více" msgid "Less" msgstr "Méně" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verze" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Heslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Změna vašeho hesla se nezdařila" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Celé jméno" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilový obrázek" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Nahrát nový" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vyberte nový ze souborů" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Odebrat obrázek" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je poskytován Vaším původním účtem." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušit" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vybrat jako profilový obrázek" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." -msgstr "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány." +msgstr "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazí, můžete je obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnovit šifrovací klíče" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Smazat šifrovací klíče" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Zobrazit umístění úložiště" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Zobrazit poslední přihlášení" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Přihlašovací jméno" @@ -984,19 +992,19 @@ msgstr "Všichni" msgid "Admins" msgstr "Administrátoři" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Výchozí kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neomezeně" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Jiný" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index c4238a09b9928abdba5c408c77e96d5b6e489caa..4a060340f8a3af77cf0e965a3073e7e10905f853 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-19 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 09:41+0000\n" -"Last-Translator: Jaroslav Lichtblau \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 19:00+0000\n" +"Last-Translator: Petr Šťastný \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" @@ -57,11 +57,11 @@ msgstr "Neurčena žádná akce" msgid "No configuration specified" msgstr "Neurčena žádná konfigurace" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Neurčena žádná data" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nelze nastavit konfiguraci %s" @@ -100,57 +100,57 @@ msgstr "Chyba" #: js/settings.js:244 msgid "Please specify a Base DN" -msgstr "Uveď prosím základní DN" +msgstr "Uveďte prosím Base DN" #: js/settings.js:245 msgid "Could not determine Base DN" -msgstr "Nelze určit základní DN" +msgstr "Nelze určit Base DN" #: js/settings.js:276 msgid "Please specify the port" -msgstr "Prosím zadej port" +msgstr "Prosím zadejte port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurace v pořádku" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nesprávná konfigurace" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nekompletní konfigurace" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vyberte skupiny" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vyberte objektové třídy" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vyberte atributy" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potvrdit smazání" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -158,7 +158,7 @@ msgstr[0] "nalezena %s skupina" msgstr[1] "nalezeny %s skupiny" msgstr[2] "nalezeno %s skupin" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -166,11 +166,11 @@ msgstr[0] "nalezen %s uživatel" msgstr[1] "nalezeni %s uživatelé" msgstr[2] "nalezeno %s uživatelů" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neplatný hostitel" @@ -262,60 +262,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Určuje použitý filtr při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení. Příklad: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Přidat nastavení serveru" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Odstranit konfiguraci" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Počítač" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uživatelské DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN klientského uživatele, ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte DN a heslo prázdné." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Heslo" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pro anonymní přístup ponechte údaje DN and heslo prázdné." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Jedna základní DN na řádku" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" @@ -484,14 +484,14 @@ msgstr "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skup #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Velikost bloku stránkování" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Velikost bloku použitá pro stránkování vyhledávání v LDAP, které může vracet objemné výsledky jako třeba výčet uživatelů či skupin. (Nastavení na 0 zakáže stránkovaná vyhledávání pro tyto situace.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index fc112977f282844baae178439ac2fe12809cee07..5c13053d25e448037d397c93f680a391b9fc86cf 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:12+0000\n" -"Last-Translator: Josef Moravec \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 18:44+0000\n" +"Last-Translator: Petr Šťastný \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" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 7ead4f2e9070edb2fe264409f4d7df41d4c7a335..499136fadee56ddd38295053182e32b5da392189 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -149,86 +149,30 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Plygell" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "eiliad yn ôl" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1281 -msgid "today" -msgstr "heddiw" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ddoe" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mis diwethaf" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "y llynedd" - -#: js/js.js:1287 -msgid "years ago" -msgstr "blwyddyn yn ôl" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 983d41497d45eb42db2fa8c3e4c550e81cf405a2..ed4bcfcd125d9b606f3d6e8fbb3b583f1ecd6ef0 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3e618c88f22ed6335d6aa55cdb1bbdd47754130e..4dfe7e7bb3280f5b6217a23a3580b57125c522af 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Enw defnyddiwr" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personol" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grwpiau" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Defnyddwyr" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Dileu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index a2bcfcf8915d3a17e2255d8b096791bfe646291f..847a988a6696bbc6022f91013ac9f7e917d99036 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index da84474f0594373c8945e6c93c6e995734f9b8d7..923541ee6bae775d4907cfab454b8b1e03b3ad3c 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 91ec5d49208d2d0ee5f9dc2a04c8c0ed7356177d..767e69bc2a7492200d465f7021bfc3605d8d546c 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s rhowch enw defnyddiwr y gronfa ddata." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s rhowch enw'r gronfa ddata." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." @@ -195,23 +195,23 @@ msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Gwall DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Enw a/neu gyfrinair Oracle annilys" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 339f738c1cb241701fbfba25e14fdb9058afc0ef..84d4e434431d1891b5383685ccba4d69f0e69119 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Amgryptiad" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "dadwneud" @@ -349,27 +349,27 @@ msgstr "Dileu" msgid "never" msgstr "byth" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-bost" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Diddymu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Mewngofnodi" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Arall" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 896da5a86bd0fe539d4ac889c5864ef55d564aac..c4c1095a39dab14abf5c98bdaceb1ff587fc43ef 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -151,7 +151,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -160,11 +160,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Cyfrinair" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index f75a7f1809e475aa1fc59890fd74e34ddfa45f83..b98d95bcf1c030991f5bd530a21d875c772f516e 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,12 +52,12 @@ msgstr "Tjekket database schema opdatering" #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "Tjekkede databaseskemaets opdatering for apps" #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "Opdaterede \"%s\" til %s" #: ajax/update.php:33 #, php-format @@ -160,78 +160,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Billede" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Lyd" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekunder siden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut siden" -msgstr[1] "%n minutter siden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n time siden" -msgstr[1] "%n timer siden" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag siden" -msgstr[1] "%n dage siden" - -#: js/js.js:1284 -msgid "last month" -msgstr "sidste måned" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n måned siden" -msgstr[1] "%n måneder siden" - -#: js/js.js:1286 -msgid "last year" -msgstr "sidste år" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år siden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Der opstod et problem under afsending af reset-emailen. Kontakt venligst systemadministratoren." @@ -869,12 +821,12 @@ msgstr "Kontakt venligst din administrator. Hvis du er administrator, konfigurer msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Tilføj \"%s\" som et troværdigt domæne" #: templates/update.admin.php:3 #, php-format @@ -904,7 +856,7 @@ msgstr "Begynd opdatering" msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "For at undgå tidsudløb med større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/da/files.po b/l10n/da/files.po index 55f37ccf719368e0d239c3bedd45a154f5e9e07e..58d82c7a4b89d8c155884e4899b86541632c9762 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 366b7265b7645fd407a7c356060358588647eeaf..32c3a56b7b9e33170cfac5b04d0d9ddce7f67687 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-28 01:54-0400\n" +"PO-Revision-Date: 2014-08-27 11:56+0000\n" +"Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,11 +40,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "Kodeordet blev ændret succesfuldt" -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt." @@ -96,7 +96,7 @@ msgid "" " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" @@ -166,11 +166,11 @@ msgstr "Skift Kodeord" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." -msgstr "" +msgstr "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord." #: templates/settings-personal.php:15 msgid "Set your old private key password to your current log-in password:" -msgstr "" +msgstr "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. " #: templates/settings-personal.php:17 msgid "" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 1ae0afdc6e18ff84d18ab9587fb5258e652e9fa2..cdf1f3e6b8a6fc4714b76a48d09ae0e23de3bd15 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -70,7 +70,7 @@ msgstr "Nøgle" msgid "Secret" msgstr "Hemmelighed" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Hemmelig Nøgle " #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Værtsnavn (valgfri)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (valgfri)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (valgfri)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App-hemmelighed" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brugernavn" @@ -150,14 +150,6 @@ msgstr "Klient hemmelighed" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Brugernavn (påkrævet)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (påkrævet)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (valgfri for OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL på slutpunkt for identitet (påkrævet for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout på HTTP forespørgsler i sekunder (valgfri)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gemt" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Note: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "og" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Bemærk: cURL understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Bemærk: FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Tilgængelig for" msgid "Add storage" msgstr "Tilføj lager" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen bruger eller gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle brugere" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brugere" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slet" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktiver ekstern opbevaring for brugere" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillad brugere at montere følgende som eksternt lager" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-rodcertifikater" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer rodcertifikat" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index aaf5293460d9e4490a05da245f7c6dbbb11a2793..b9420111ff08ad2fab33da336f787d0a5e797cf0 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 04:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 02bb18bfc99b6c758db3ed721b91810a8ba8ce68..ebfb2dabd0c9145700e31e3e0d102d0c2425f486 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 0f5cfaa29f1c6ab86d0516c4d57a11e9e6e472de..25c1fafcea7eebf5ce44baac9a98602836ebde20 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Aputsiaĸ Niels Janussen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,38 +25,38 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan ikke skrive til mappen \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til config-mappen%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Eksempel for konfiguration registreret" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Der er registreret at eksempel for konfiguration er blevet kopieret. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php" #: private/app.php:374 msgid "Help" @@ -173,12 +173,12 @@ msgstr "Adgang er udløbet. Genindlæs siden." msgid "Unknown user" msgstr "Ukendt bruger" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s indtast database brugernavnet." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s indtast database navnet." @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." @@ -203,23 +203,23 @@ msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administ msgid "MySQL/MariaDB username and/or password not valid" msgstr "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord " -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede" msgid "Drop this user from MySQL/MariaDB." msgstr "Drop denne bruger fra MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle forbindelsen kunne ikke etableres" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" @@ -344,68 +344,68 @@ msgstr "Der skete en fejl ved deling af %s, det er ikke tilladt at dele links" msgid "Share type %s is not valid for %s" msgstr "Delingstypen %s er ikke gyldig for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Angivelse af tilladelser for %s mislykkedes, fordi tilladelserne overskred de som var tildelt %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fundet" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "" +msgstr "Kan ikke angive udløbsdato. Delinger kan ikke udløbe senere end %s efter at de er blevet delt" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Kan ikke angive udløbsdato. Udløbsdato er allerede passeret" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delingsbackend'en %s blev ikke fundet" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delingsbackend'en for %s blev ikke fundet" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling af %s mislykkedes, fordi brugeren %s er den som delte oprindeligt" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling af %s mislykkedes, fordi tilladelserne overskred de tillaldelser som %s var tildelt" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling af %s mislykkedes, fordi videredeling ikke er tilladt" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling af %s mislykkedes, fordi back-enden ikke kunne finde kilden til %s" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -506,7 +506,7 @@ msgstr "Kan ikke skrive til mappen \"apps\"" msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "" +msgstr "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til apps-mappen%s eller slå appstore fra i config-filen." #: private/util.php:470 #, php-format @@ -529,7 +529,7 @@ msgstr "Angivelse af %s for lokalitet mislykkedes" msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver." #: private/util.php:494 msgid "Please ask your server administrator to install the module." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 478c0d450f5ae2bb810cd87e41cedaa17c7c9ecc..9f50bd82524d0db5a8337019b27d3434a13b70fa 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Aputsiaĸ Niels Janussen \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Du skal angive din bruger-email før der kan sendes test-email." msgid "Send mode" msgstr "Tilstand for afsendelse" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -331,7 +331,7 @@ msgstr "Et gyldigt gruppenavn skal angives " msgid "deleted {groupName}" msgstr "slettede {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "fortryd" @@ -355,27 +355,27 @@ msgstr "Slet" msgid "never" msgstr "aldrig" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "slettede {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Tilføj gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" @@ -739,11 +739,11 @@ msgstr "Mere" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Fulde navn" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Angiv en emailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbillede" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload nyt" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vælg nyt fra Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern billede" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Din avatar kommer fra din oprindelige konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuller" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vælg som profilbillede" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprog" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Din krypteringsmøgler er flyttet til en backup lokation . hvis noget gik galt kan du genskabe nøglerne. Slet kun nøgler permanent hvis du er sikker på at alle filer er dekrypteret korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Genopret Krypteringsnøgler" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Slet Krypteringsnøgler" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginnavn" @@ -981,19 +989,19 @@ msgstr "Alle" msgid "Admins" msgstr "Administratore" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard kvote" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrænset" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andet" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 432f92fda19cea6c7620e059725963c7ac71e163..466763e83a740e662b741272b4ce2e24804904ee 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-13 01:54-0400\n" -"PO-Revision-Date: 2014-07-12 10:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vælg grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Forbindelsestest lykkedes" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Forbindelsestest mislykkedes" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekræft Sletning" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Tilføj Server Konfiguration" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Bruger DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Kodeord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym adgang, skal du lade DN og Adgangskode tomme." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "You can specify Base DN for users and groups in the Advanced tab" diff --git a/l10n/de/core.po b/l10n/de/core.po index 11f5b55490d9a93ee7187957013cafaa3d27cf8d..6bf8fdffd928e45fc663b9e8992a4c179f1cc538 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,78 +159,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktiere Deinen Administrator." diff --git a/l10n/de/files.po b/l10n/de/files.po index 265170693f3d2f6bfb28421a7be83bdfa967e686..f9e78a475b010418258fa3e1eb01f3aa5448e6c3 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 5767e8cc2f8e88fd047bc43916995254c8b708b5..b075f64a95186202642900458e6e0b36121ee91b 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -71,7 +71,7 @@ msgstr "Schlüssel" msgid "Secret" msgstr "Geheime Zeichenkette" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "Sicherheitssschlüssel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Host-Name (Optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (Optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (Optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "Geheime Zeichenkette der App" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -151,14 +151,6 @@ msgstr "Geheime Zeichenkette des Client" msgid "OpenStack Object Storage" msgstr "Openstack-Objektspeicher" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Benutzername (Erforderlich)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (Erforderlich)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (Optional für Openstack-Objektspeicher)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,33 +227,41 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Hinweis: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "und" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an Deinen Systemadministrator." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich sich zur Installation an Deinen Systemadministrator." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -304,39 +304,23 @@ msgstr "Verfügbar für" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kein Nutzer oder Gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Erlaube es Benutzern, den folgenden externen Speicher einzubinden" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index f65ef70d6f86e86388044ad9011c27aedb42edd6..a2a85c52400eaa6afd1c8839da733d3733b02be3 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 20:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -35,15 +35,15 @@ msgstr "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat" msgid "Couldn't add remote share" msgstr "Entfernte Freigabe kann nicht hinzu gefügt werden" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Mit Dir geteilt" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Von Dir geteilt" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Geteilt über einen Link" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index acbb2ab29e5d852d65339700c0e590bfaae0a278..badbc9cd4977a50114793698af616875c4567627 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index bbf332e05e6bc6fcb4988373aa7d4fb0b2a4d159..8cb76cb1a3e92eaecd3f27c6998ca573cb07c82e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token abgelaufen. Bitte lade die Seite neu." msgid "Unknown user" msgstr "Unbekannter Benutzer" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s gib den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s gib den Datenbank-Namen an." @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Password ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -201,23 +201,23 @@ msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administrator msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB Benutzer '%s'@'%%' existiert bereits" msgid "Drop this user from MySQL/MariaDB." msgstr "Lösche diesen Benutzer von MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -342,68 +342,68 @@ msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht e msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4afdda7fed217edb0e8be3fd6e8a486f41918a5f..a38b7e84e722244076955ab3ae7f0b0182c8de0b 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +61,7 @@ msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -335,7 +335,7 @@ msgstr "Ein gültiger Gruppenname muss angegeben werden" msgid "deleted {groupName}" msgstr "{groupName} gelöscht" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -359,27 +359,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} gelöscht" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" @@ -743,11 +743,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Gib eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Neues aus den Dateien wählen" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Dein Avatar wird von Deinem ursprünglichenKonto verwendet." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Deine Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Lösche diese nur dann dauerhaft, wenn Du dir sicher bist, dass alle Dateien korrekt entschlüsselt wurden." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Verschlüsselungsschlüssel wiederherstellen" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verschlüsselungsschlüssel löschen" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -985,19 +993,19 @@ msgstr "Jeder" msgid "Admins" msgstr "Administratoren" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard-Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index da2c72e0c401a9e3db6f404cf87d240870bd6fba..7d54b0f77c714890f5400056b152d45165b96528 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:10+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "Keine Aktion spezifiziert" msgid "No configuration specified" msgstr "Keine Konfiguration spezifiziert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten spezifiziert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Die Konfiguration %s konnte nicht gesetzt werden" @@ -106,65 +106,65 @@ msgstr "Base-DN konnte nicht festgestellt werden" msgid "Please specify the port" msgstr "Bitte Port spezifizieren" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen aus" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s Gruppe gefunden" msgstr[1] "%s Gruppen gefunden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Konfiguration löschen" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lasse die Felder DN und Passwort für anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 70138c07e1b0558349e77e4de405b10b2ea219b8..e014f41a7ee6549e7eeed34da18c8177efd4ee94 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index b94533507c4a7496216b98450f64dd48d588b00e..d45cc801a288fc935b8b95223d6ee4bc449af1d2 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index 352e1de6fc46905ce94218aece66934b7642cec6..f5a655b70a6ecffbf7258ba502132a3638940798 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 3e81a301ee2ef9d4d8b34924ca0dedbbd022d229..df470b5931febbbf3d91612b2105ab74b6543e01 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 595d82ab27a796b8b7662cdab11764526d7631c4..1891a5b1893ec7e3162bc406f6689073a5853802 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 3354e29d7f0157f401c4493d22d2fcc0c027ca1b..e7176ac249e1e96064c8f34424f3069486c672ed 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 05a2cc02c26ec7acc30b18d89d48041682685206..f319566e57e75fd5a2d5593aa8d61bfc6cfb922c 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -350,27 +350,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anderes" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 2f403e37a057ba72eb4a937592fe5308a3c13cf1..d7497483309d84c97c818b334ac30fb51b67338f 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 00:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Malspherus \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Keine Aktion angegeben" msgid "No configuration specified" msgstr "Keine Konfiguration angegeben" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten angegeben" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Konfiguration %s konnte nicht gespeichert werden" @@ -103,65 +103,65 @@ msgstr "Basis DN konnte nicht festgelegt werden" msgid "Please specify the port" msgstr "Bitte den Port angeben" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration fehlerhaft" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration unvollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Gruppen wählen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen wählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute wählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungsversuch erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungsversuch gescheitert" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Soll die momentane Server-Konfiguration wirklich gelöscht werden?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschen bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Funktion konnte nicht gefunden werden" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 67d89ea8a335d6474b3e691e19084567a77cc3a9..a0f27b02dabf508a07e1d7a0c1ce9b52b7e8ccca 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -158,78 +158,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 7c1fc8ea04bf6f42e900dde15ec6667f8e311c51..da0d3b764b23b605e30996cf7ce77acad7abdabd 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 847d3b81e8564bbe3fbc825d1064b061be455cd3..c5f73ffaf943d8a8e8dbfd87a8ad254105ac1f46 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Persönlich" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 96cdf875c91cb13d5ccf6279fac3e2c3441ffd81..aa382f7df1598a5148de8f8741553fcc1d6aef08 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 3baaea27a66561a08ab0384b001e4e1b9c4c437d..ef6f76160654f34c8b30a053c0ea2383c1bd1e88 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index d8eee0994cf4c2d93676c2570efeab085766daa9..c5699afffe9a074c5f6f0854b68b867ac42aab0a 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -21,33 +21,33 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -199,23 +199,23 @@ msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administra msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -340,68 +340,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index ad17a5a284efa28ddef9f78dda71222e19abc68a..e6dc40ec85582fde1cda215fd2ee9a8d606a4a91 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -60,7 +60,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -334,7 +334,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -358,27 +358,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -742,11 +742,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -984,19 +992,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 0764a7e1c43556a598cfc6859f7833637c5281e0..ac7aa358d920aad927f8f8b6c6ea2188a7804272 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -57,11 +57,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -110,65 +110,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -260,60 +260,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, ausser wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 11e992ce218c46cc0891524c8dd6af88b317082d..7c2bcbca369a889361d9c766b836bc68c1dbfdce 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -159,78 +159,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Datei" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Ordner" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Gerade eben" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Vor %n Minute" -msgstr[1] "Vor %n Minuten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Vor %n Stunde" -msgstr[1] "Vor %n Stunden" - -#: js/js.js:1281 -msgid "today" -msgstr "Heute" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "Gestern" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Vor %n Tag" -msgstr[1] "Vor %n Tagen" - -#: js/js.js:1284 -msgid "last month" -msgstr "Letzten Monat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Vor %n Monat" -msgstr[1] "Vor %n Monaten" - -#: js/js.js:1286 -msgid "last year" -msgstr "Letztes Jahr" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Vor Jahren" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Die E-Mail zum Zurücksetzen konnte nicht versendet werden. Bitte kontaktieren Sie Ihren Administrator." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index a63223ccd36cdf2cb1ca0933c9eff8864c50689e..072bb94c918ec9b228830f463472df536f7a6e87 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 919c1050b4aa3cad6b1ee619c7ecdc00bcca05ea..582b9ea48ff119e93c31ed0fccae7d189dfa5272 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -72,7 +72,7 @@ msgstr "Schlüssel" msgid "Secret" msgstr "Geheime Zeichenkette" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -89,16 +89,16 @@ msgid "Secret Key" msgstr "Sicherheitsschlüssel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Host-Name (Optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (Optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (Optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -121,8 +121,8 @@ msgstr "Geheime Zeichenkette der App" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benutzername" @@ -152,14 +152,6 @@ msgstr "Geheime Zeichenkette des Client" msgid "OpenStack Object Storage" msgstr "Openstack-Objektspeicher" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Benutzername (Erforderlich)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (Erforderlich)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (Optional für Openstack-Objektspeicher)" @@ -185,8 +177,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL des Identitätsendpunktes (Erforderlich für Openstack-Objektspeicher)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Zeitüberschreitung von HTTP-Anfragen in Sekunden (Optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -236,33 +228,41 @@ msgstr "Persönlich" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gespeichert" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Hinweis: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "und" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Hinweis: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Systemadministrator." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -305,39 +305,23 @@ msgstr "Verfügbar für" msgid "Add storage" msgstr "Speicher hinzufügen" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kein Nutzer oder Gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle Benutzer" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benutzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Erlauben Sie Benutzern, folgende externe Speicher einzubinden" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index fe325d461c97147028479e33879749e7b469274e..e5d478c619ff9356de30dfc6a033ef565f529d5a 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 20:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -34,15 +34,15 @@ msgstr "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat" msgid "Couldn't add remote share" msgstr "Entfernte Freigabe kann nicht hinzu gefügt werden" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Mit Ihnen geteilt" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Von Ihnen geteilt" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Geteilt über einen Link" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 2a1324dd605cbabb1e717d5538e86886c526a75e..7887475065138edc1e3e9702762a7785eb7a436c 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 583df78415c88204f813679a8de0709486b5dca8..672465f7772a925ea1386c429a992057b2ee3c99 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Das Schreiben in das \"config\"-Verzeichnis nicht möglich!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dies kann normalerweise repariert werden, indem dem Webserver Schreibzugriff auf das config-Verzeichnis gegeben wird" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Siehe %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dies kann normalerweise repariert werden, indem dem Webserver %s Schreibzugriff auf das config-Verzeichnis %s gegeben wird." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Beispielkonfiguration gefunden" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." msgid "Unknown user" msgstr "Unbekannter Benutzer" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s geben Sie den Datenbank-Benutzernamen an." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s geben Sie den Datenbank-Namen an." @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." @@ -201,23 +201,23 @@ msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administra msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB Benutzername und/oder Passwort sind nicht gültig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fehler: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB Benutzer '%s'@'%%' existiert bereits" msgid "Drop this user from MySQL/MariaDB." msgstr "Löschen Sie diesen Benutzer von MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle Benutzername und/oder Passwort ungültig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" @@ -342,68 +342,68 @@ msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht e msgid "Share type %s is not valid for %s" msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ablaufdatum kann nicht gesetzt werden. Freigaben können nach dem Teilen, nicht länger als %s gültig sein." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ablaufdatum kann nicht gesetzt werden. Ablaufdatum liegt in der Vergangenheit." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 9bafd3f68bc1dd88b5bbf24ccc1fa9b202009328..a1d77127f3ce02460d56606796f218abdbe4d263 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -63,7 +63,7 @@ msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse einstellen, bevor Sie Test-E-Ma msgid "Send mode" msgstr "Sendemodus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Verschlüsselung" @@ -337,7 +337,7 @@ msgstr "Ein gültiger Gruppenname muss angegeben werden" msgid "deleted {groupName}" msgstr "{groupName} gelöscht" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "rückgängig machen" @@ -361,27 +361,27 @@ msgstr "Löschen" msgid "never" msgstr "niemals" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} gelöscht" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" @@ -745,11 +745,11 @@ msgstr "Mehr" msgid "Less" msgstr "Weniger" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwort" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Geben Sie eine E-Mail-Adresse an, um eine Wiederherstellung des Passworts zu ermöglichen und Benachrichtigungen zu empfangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Neues aus Dateien wählen" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Abbrechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprache" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Ihre Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Löschen Sie diese nur dann dauerhaft, wenn Sie sich sicher sind, dass alle Dateien korrekt entschlüsselt wurden." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Verschlüsselungsschlüssel wiederherstellen" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verschlüsselungsschlüssel löschen" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Loginname" @@ -987,19 +995,19 @@ msgstr "Jeder" msgid "Admins" msgstr "Administratoren" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standardkontingent" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Andere" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index a1f27ebd31f22cb5a5a94680ca4d6ab15cf4586b..13b7c24f93bc0e686835613359800561472b4d7d 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -55,11 +55,11 @@ msgstr "Keine Aktion spezifiziert" msgid "No configuration specified" msgstr "Keine Konfiguration spezifiziert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Keine Daten spezifiziert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Die Konfiguration %s konnte nicht gesetzt werden" @@ -108,65 +108,65 @@ msgstr "Base-DN konnte nicht festgestellt werden" msgid "Please specify the port" msgstr "Bitte Port spezifizieren" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Löschung bestätigen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s Gruppe gefunden" msgstr[1] "%s Gruppen gefunden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ungültiger Host" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Serverkonfiguration hinzufügen" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Konfiguration löschen" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Benutzer-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwort" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ein Basis-DN pro Zeile" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" diff --git a/l10n/el/core.po b/l10n/el/core.po index 6185c4b561a6d04c293b318b36a7229bbb7afbcb..dda647c55651e884b3a609b2fd6206135858a1cb 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: evigiannakou \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -160,78 +160,30 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Αρχείο" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Φάκελος" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Εικόνα" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Ήχος" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "δευτερόλεπτα πριν" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n λεπτό πριν" -msgstr[1] "%n λεπτά πριν" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ώρα πριν" -msgstr[1] "%n ώρες πριν" - -#: js/js.js:1281 -msgid "today" -msgstr "σήμερα" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "χτες" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ημέρα πριν" -msgstr[1] "%n ημέρες πριν" - -#: js/js.js:1284 -msgid "last month" -msgstr "τελευταίο μήνα" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n μήνας πριν" -msgstr[1] "%n μήνες πριν" - -#: js/js.js:1286 -msgid "last year" -msgstr "τελευταίο χρόνο" - -#: js/js.js:1287 -msgid "years ago" -msgstr "χρόνια πριν" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ επικοινωνήστε με το διαχειριστή σας." diff --git a/l10n/el/files.po b/l10n/el/files.po index a17980550ba89d954d8c5ed440cb78443f8c402c..1f116a1301202ee031d0bb3e9fdff49305338ee2 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 8eefe71e48500a407fe4ec8ffcafc0b8096b3aab..aa0d6a341f41b888d8f8d485365e3f66a540493e 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2014 # thea_rad , 2014 # ggoniotakis , 2014 # Spyros Melissovas , 2014 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -72,7 +73,7 @@ msgstr "Κλειδί" msgid "Secret" msgstr "Μυστικό" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Κάδος" @@ -89,16 +90,16 @@ msgid "Secret Key" msgstr "Μυστικό κλειδί" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Όνομα μηχανήματος (προαιρετικά)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Πόρτα (προαιρετικά)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Περιοχή (προαιρετικά)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -121,8 +122,8 @@ msgstr "Μυστικό εφαρμογής" msgid "Host" msgstr "Διακομιστής" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Όνομα χρήστη" @@ -152,14 +153,6 @@ msgstr "Μυστικό πελάτη" msgid "OpenStack Object Storage" msgstr "Αποθήκη αντικειμένων OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Όνομα χρήστη (απαιτείται)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Κάδος (απαιτείται)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Περιοχή (προαιρετικά για την αποθήκευση αντικειμένων OpenStack)" @@ -185,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Διεύθυνση URL της ταυτότητας τελικού σημείου (απαιτείται για την αποθήκευση αντικειμένων OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Χρονικό όριο των αιτήσεων HTTP σε δευτερόλεπτα (προαιρετικά)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -236,33 +229,41 @@ msgstr "Προσωπικά" msgid "System" msgstr "Σύστημα" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "(ομάδα)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Αποθηκεύτηκαν" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Σημείωση: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "και" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Σημείωση: Η υποστήριξη cURL στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλώ ζητήστε από τον διαχειριστή συστημάτων σας να την εγκαταστήσει." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Σημείωση: Η υποστήριξη FTP στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Δεν είναι δυνατή η προσάρτηση του %s. Παρακαλώ ζητήστε από τον διαχειριστή συστημάτων σας να την εγκαταστήσει." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -305,39 +306,23 @@ msgstr "Διαθέσιμο για" msgid "Add storage" msgstr "Προσθηκη αποθηκευσης" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Μη διαθέσιμος χρήστης ή ομάδα" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Όλοι οι Χρήστες" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Ομάδες" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Χρήστες" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Διαγραφή" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 7ecc343dcd7914f78a0d4658c5e9748f660601cf..bbee8632642ce37a67927a163cbe598441eb69e2 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-25 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 01:34+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index ab687db60653abfa71b7cf528cc2c327c43d9a9f..8850a49731c1bd0e5949833c2f058090e85f291e 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index bd4bc752f50b776a1d3b8a6b0494eb41251c7c6d..603d5f43e1f07fa3d505b0c0f340e508eabc8849 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: evigiannakou \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,33 +25,33 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Αδυναμία εγγραφής στον κατάλογο \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Αυτό μπορεί συνήθως να διορθωθεί παρέχοντας δικαιώματα εγγραφής για το φάκελο config στο διακομιστή δικτύου" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Δείτε %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Αυτό μπορεί συνήθως να διορθωθεί %sπαρέχοντας δικαιώματα εγγραφής για το φάκελο config στο διακομιστή δικτύου%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Ανιχνεύθηκε δείγμα εγκατάστασης" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -173,12 +173,12 @@ msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώ msgid "Unknown user" msgstr "Άγνωστος χρήστης" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s εισάγετε το όνομα της βάσης δεδομένων." @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." @@ -203,23 +203,23 @@ msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχ msgid "MySQL/MariaDB username and/or password not valid" msgstr "Μη έγκυρο όνομα χρήστη ή/και συνθηματικό της MySQL/MariaDB" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "Υπάρχει ήδη ο χρήστης '%s'@'%%' της MySQL/MariaDB" msgid "Drop this user from MySQL/MariaDB." msgstr "Κατάργηση του χρήστη από MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Αδυναμία σύνδεσης Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" @@ -344,68 +344,68 @@ msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν msgid "Share type %s is not valid for %s" msgstr "Ο τύπος διαμοιρασμού %s δεν είναι έγκυρος για το %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, γιατί τα δικαιώματα υπερτερούν αυτά που είναι ορισμένα για το %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ο ορισμός δικαιωμάτων για το %s απέτυχε, γιατί το αντικείμενο δεν βρέθηκε" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Δεν μπορεί να οριστεί ημερομηνία λήξης. Οι κοινοποιήσεις δεν μπορεί να λήγουν αργότερα από %s αφού έχουν διαμοιραστεί." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Δεν μπορεί να οριστεί ημερομηνία λήξης. Η ημερομηνία λήξης είναι στο παρελθόν" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Το σύστημα διαμοιρασμού %s δεν βρέθηκε" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο αρχικά από τον χρήστη %s" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί τα δικαιώματα υπερτερούν αυτά που είναι ορισμένα για το %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν επιτρέπεται ο επαναδιαμοιρασμός" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν ήταν δυνατό να εντοπίσει την πηγή το σύστημα διαμοιρασμού για το %s " -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d5622fe93a9d9176c7c10cf36af9063787647982..27001817f965a936afe21eee8e4551b0c0314dd5 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: evigiannakou \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,7 +62,7 @@ msgstr "Πρέπει να ορίσετε το email του χρήστη πριν msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Κρυπτογράφηση" @@ -336,7 +336,7 @@ msgstr "Πρέπει να δοθεί ένα έγκυρο όνομα ομάδας msgid "deleted {groupName}" msgstr "διαγραφή {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "αναίρεση" @@ -360,27 +360,27 @@ msgstr "Διαγραφή" msgid "never" msgstr "ποτέ" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "διαγραφή {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" @@ -744,11 +744,11 @@ msgstr "Περισσότερα" msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Χρησιμοποιήσατε %s από τα %s διαθέσιμα" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Πλήρες όνομα" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Ηλεκτρονικό ταχυδρομείο" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Η διεύθυνση ηλ. ταχυδρομείου σας" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Συμπληρώστε μια διεύθυνση email για να ενεργοποιήσετε την επαναφορά συνθηματικού και να λαμβάνετε ειδοποιήσεις" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Φωτογραφία προφίλ" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Μεταφόρτωση νέου" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Επιλογή νέου από τα Αρχεία" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Αφαίρεση εικόνας" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Άκυρο" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Επιλογή εικόνας προφίλ" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Αποκρυπτογράφηση όλων των Αρχείων" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Τα κλειδιά κρυπτογράφησής σας μεταφέρονται σε θέση αντιγράφου ασφαλείας. Αν κάτι πάει στραβά, μπορείτε να τα επαναφέρετε. Διαγράψτε τα οριστικά μόνο αν είστε βέβαιοι ότι όλα τα αρχεία αποκρυπτογραφήθηκαν σωστά." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Επαναφορά κλειδιών κρυπτογράφησης" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Διαγραφή κλειδιών κρυπτογράφησης" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Εμφάνιση τελευταίας εισόδου" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Όνομα Σύνδεσης" @@ -986,19 +994,19 @@ msgstr "Όλοι" msgid "Admins" msgstr "Διαχειριστές" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Προεπιλεγμένο Όριο" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Απεριόριστο" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Άλλο" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 542fc42e11efc92243ee931198920c75be73713f..3a6dc67605e36cedc7acc3f89772e35c167fb3c8 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Vassilis Kehayas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "Καμμία εντολή δεν προσδιορίστηκε" msgid "No configuration specified" msgstr "Καμμία διαμόρφωση δεν προσδιορίστηκε" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Δεν προσδιορίστηκαν δεδομένα" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Αδυναμία ρύθμισης %s" @@ -106,65 +106,65 @@ msgstr "Δεν ήταν δυνατό να καθοριστεί το βασικό msgid "Please specify the port" msgstr "Παρακαλώ ορίστε την θύρα" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Η διαμόρφωση είναι εντάξει" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Η διαμόρφωση είναι λανθασμένη" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Η διαμόρφωση είναι ελλιπής" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Επιλέξτε ομάδες" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Επιλογή κλάσης αντικειμένων" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Επιλογή χαρακτηριστικών" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s ομάδα βρέθηκε" msgstr[1] "%s ομάδες βρέθηκαν" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s χρήστης βρέθηκε" msgstr[1] "%s χρήστες βρέθηκαν" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Άκυρος εξυπηρετητής" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Ορίζει το φίλτρο που θα εφαρμοστεί, όταν επιχειριθεί σύνδεση. Το %%uid αντικαθιστά το όνομα χρήστη κατά τη σύνδεση. Παράδειγμα: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Διακομιστής" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Διακομιστής:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Προσθήκη Ρυθμίσεων Διακομιστή" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Απαλοιφή ρυθμίσεων" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Διακομιστής" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Θύρα" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Συνθηματικό" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ένα DN Βάσης ανά γραμμή " -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 796bce7c936fac613e3e34e5e013faa719973848..54689a74a605571431a90fa20c51956b1a50ce26 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po index 7d45b2fdbde412a03c6a863a7ea1d60ab5c61e4f..1575b31f133b0569d04c87ed47d7f18bc03814b2 100644 --- a/l10n/en@pirate/files_external.po +++ b/l10n/en@pirate/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4537f96a9b2bf705ec725238204d0a717cffcc68..f8a6e63b1f533171aefcacb9217b21725abcefcd 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index ce6e6c40e09b1b1324f7ba0c8138e3c0c653162c..b24ecce9cafeab454240142fb552e871a4ab3b19 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passcode" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 8b7e4ebaf62a025017dca2f7902814d5d46f5cde..55e571bb209997c6516fa2c3ef68814f37f8711a 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-04 01:54-0400\n" -"PO-Revision-Date: 2014-06-04 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passcode" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index dab8210ad665355065914dfe2a2b7112b0d9b46e..0245c6929baa33b96884df4e597e6f1d121826b7 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Settings" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Image" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Saving..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "seconds ago" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute ago" -msgstr[1] "%n minutes ago" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hour ago" -msgstr[1] "%n hours ago" - -#: js/js.js:1281 -msgid "today" -msgstr "today" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "yesterday" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n day ago" -msgstr[1] "%n days ago" - -#: js/js.js:1284 -msgid "last month" -msgstr "last month" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n month ago" -msgstr[1] "%n months ago" - -#: js/js.js:1286 -msgid "last year" -msgstr "last year" - -#: js/js.js:1287 -msgid "years ago" -msgstr "years ago" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Couldn't send reset email. Please contact your administrator." @@ -858,12 +810,12 @@ msgstr "Please contact your administrator. If you are an administrator of this i msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Add \"%s\" as a trusted domain" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 916468c09c7c1651026a2e1fc5adab2438f8c716..be3928e70f65a9bca26e02306063e88402574520 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 476ee140e2ebfd90b164eea7a7ec3fc20fe5f532..bbb4d5194172a6c9ac77a41e9f2965da14fe9829 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (optional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (optional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "App secret" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Username" @@ -148,14 +148,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Username (required)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (required)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (optional for OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (required for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Personal" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "All users. Type to select user or group." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(group)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Saved" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Note: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr " and " -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Available for" msgid "Add storage" msgstr "Add storage" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "No user or group" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "All Users" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groups" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Users" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Delete" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Enable User External Storage" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Allow users to mount the following external storage" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root certificates" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Import Root Certificate" diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index cb95ead46436f5a12c0e523afdc8d7b2e8aaf3ae..df6a9eae9c4901d91b73771e3294f2b8f886414f 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 11:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "Invalid or untrusted SSL certificate" msgid "Couldn't add remote share" msgstr "Couldn't add remote share" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Shared with you" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Shared with others" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Shared by link" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 0f9e3d680b1b329962f94a6fc4a95b3eff6d691d..54e27cc801d6fce3413132c6c8e3e345ffbbd066 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 80508121d3f3442fcb87e11e582b7b8971f9b646..61595f3e955259c1143e213a4feec66ff3703726 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Cannot write into \"config\" directory!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "This can usually be fixed by giving the webserver write access to the config directory" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "See %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "This can usually be fixed by %sgiving the webserver write access to the config directory%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Sample configuration detected" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Token expired. Please reload page." msgid "Unknown user" msgstr "Unknown user" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enter the database username." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enter the database name." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL username and/or password not valid: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "You need to enter either an existing account or the administrator." @@ -196,23 +196,23 @@ msgstr "You need to enter either an existing account or the administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB username and/or password not valid" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Error: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "MySQL/MariaDB user '%s'@'%%' already exists" msgid "Drop this user from MySQL/MariaDB." msgstr "Drop this user from MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle connection could not be established" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle username and/or password not valid" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending command was: \"%s\", name: %s, password: %s" @@ -337,68 +337,68 @@ msgstr "Sharing %s failed, because sharing with links is not allowed" msgid "Share type %s is not valid for %s" msgstr "Share type %s is not valid for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting permissions for %s failed, because the item was not found" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Cannot set expiry date. Shares cannot expire later than %s after they have been shared" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Cannot set expiry date. Expiry date is in the past" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Sharing backend %s must implement the interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Sharing backend %s not found" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Sharing backend for %s not found" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Sharing %s failed, because the user %s is the original sharer" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Sharing %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Sharing %s failed, because resharing is not allowed" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Sharing %s failed, because the sharing backend for %s could not find its source" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 8fa360c5bf087172d71183765f31e394c728679e..94d362665990f320bcd782349c1103cd845e1e2f 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "You need to set your user email before being able to send test emails." msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encryption" @@ -196,11 +196,11 @@ msgstr "Unable to change password" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Are you really sure you want add \"{domain}\" as a trusted domain?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Add trusted domain" #: js/admin.js:146 msgid "Sending..." @@ -326,7 +326,7 @@ msgstr "A valid group name must be provided" msgid "deleted {groupName}" msgstr "deleted {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "undo" @@ -350,27 +350,27 @@ msgstr "Delete" msgid "never" msgstr "never" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "deleted {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "add group" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error creating user" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warning: Home directory for user \"{user}\" already exists" @@ -734,11 +734,11 @@ msgstr "More" msgid "Less" msgstr "Less" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "You have used %s of the available %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Your password was changed" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Unable to change your password" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Current password" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "New password" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Change password" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Full Name" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Your email address" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Fill in an email address to enable password recovery and receive notifications" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profile picture" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload new" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Select new from Files" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remove image" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Either png or jpg. Ideally square but you will be able to crop it." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Your avatar is provided by your original account." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancel" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Choose as profile image" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Language" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Help translate" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "The encryption app is no longer enabled, please decrypt all your files" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decrypt all Files" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restore Encryption Keys" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Delete Encryption Keys" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Show storage location" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Show last log in" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login Name" @@ -976,19 +984,19 @@ msgstr "Everyone" msgid "Admins" msgstr "Admins" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Default Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Unlimited" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Other" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 8fd3ad71f1fbd6acf75c6933a262c6214adf0a8a..629f9f800da535c0fb6b6f82cae88415f2d15e26 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Darren Richardson \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "No action specified" msgid "No configuration specified" msgstr "No configuration specified" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No data specified" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr " Could not set configuration %s" @@ -103,65 +103,65 @@ msgstr "Could not determine Base DN" msgid "Please specify the port" msgstr "Please specify the port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuration incorrect" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuration incomplete" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Select groups" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Select object classes" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Select attributes" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Connection test succeeded" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Connection test failed" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Do you really want to delete the current Server Configuration?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirm Deletion" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s group found" msgstr[1] "%s groups found" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s user found" msgstr[1] "%s users found" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Could not find the desired feature" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Invalid Host" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Add Server Configuration" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Delete Configuration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "You can omit the protocol, except you require SSL. Then start with ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "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." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonymous access, leave DN and Password empty." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "One Base DN per line" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "You can specify Base DN for users and groups in the Advanced tab" diff --git a/l10n/en_NZ/core.po b/l10n/en_NZ/core.po index f4643ddfa966313ea03dedbf170fbc02dadf8f37..7782b9b75f83a06622de4072a7aee9ff14e23ecb 100644 --- a/l10n/en_NZ/core.po +++ b/l10n/en_NZ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/en_NZ/files_external.po b/l10n/en_NZ/files_external.po index 11f28d242a86fd4fb473796e27300cad5d6d54a9..9165e77f635c19eb67db8eb889824063cb4d502f 100644 --- a/l10n/en_NZ/files_external.po +++ b/l10n/en_NZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/en_NZ/settings.po b/l10n/en_NZ/settings.po index 0cb5bfe31ece97881f8f6640e5fab786e50a451d..a9ca5678a385a2461de137ecc119be2d60ae5492 100644 --- a/l10n/en_NZ/settings.po +++ b/l10n/en_NZ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/owncloud/language/en_NZ/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 9364e6d5938fbe09f4bd61f5f17e216434206739..bb64e29a89eff70199e58d5d80e818bb5387b617 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Agordo" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Dosiero" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dosierujo" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Bildo" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundoj antaŭe" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "antaŭ %n minuto" -msgstr[1] "antaŭ %n minutoj" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "antaŭ %n horo" -msgstr[1] "antaŭ %n horoj" - -#: js/js.js:1281 -msgid "today" -msgstr "hodiaŭ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hieraŭ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "antaŭ %n tago" -msgstr[1] "antaŭ %n tagoj" - -#: js/js.js:1284 -msgid "last month" -msgstr "lastamonate" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "antaŭ %n monato" -msgstr[1] "antaŭ %n monatoj" - -#: js/js.js:1286 -msgid "last year" -msgstr "lastajare" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jaroj antaŭe" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 81893ef10406f72c67a1e659ecd6fa2a9fd6ffd8..085ad3b79e79167173c6606c0d3204efb8e593e7 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index e88586093f344e284548b896111d009f17627c02..921b43bec0abfd927224fbc13128a3c5120677bf 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "Klavo" msgid "Secret" msgstr "Sekreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Sekretoklavo" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Gastigonomo (malnepra)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Pordo (malnepra)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regiono (malnepra)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Aplikaĵosekreto" msgid "Host" msgstr "Gastigo" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uzantonomo" @@ -148,14 +148,6 @@ msgstr "Klientosekreto" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uzantonomo (nepra)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regiono (malnepra por OpenStack Object Storage)" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Persona" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Konservita" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Noto:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "kaj" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Disponebla por" msgid "Add storage" msgstr "Aldoni memorilon" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Neniu uzanto aŭ grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Ĉiuj uzantoj" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupoj" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uzantoj" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Forigi" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kapabligi malenan memorilon de uzanto" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permesi uzantojn munti la jenajn malenajn memorilojn" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Radikaj SSL-atestoj" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Enporti radikan ateston" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e6e1c36d6fafc246c4eccb0664de567dd933724c..30b7ab15d2d375e943c69482782335799edf0512 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Kunhavata kun vi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Kunhavata kun aliaj" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Kunhavata per ligilo" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9ba340f10efb5a41ccf19ed5dfdcae8f6a9f90fd..62956b310ea41a55795b4db40026d30eda6ad449 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index c7679455ae810f86eb2522a54ec3bada46ad811b..c33df7418eba41f9dc6c1cf66d53914c6c43893f 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." msgid "Unknown user" msgstr "Nekonata uzanto" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s enigu la uzantonomon de la datumbazo." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s enigu la nomon de la datumbazo." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "La MySQL/MariaDB-uzantonomo kajaŭ pasvorto ne validas." -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Datumbaza eraro: “%s”" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "La MySQL/MariaDB-uzanto '%s'@'%%' jam ekzistas" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Konekto al Oracle ne povas stariĝi" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "La uzantonomo de Oracle aŭ la pasvorto ne validas" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b5c0b7aae08acb3123d628c8976349daebeade37..c8304cd8696eb0ab2413193398982b76f4ddc97e 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Sendi pli" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Ĉifrado" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "{groupName} foriĝis" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "malfari" @@ -350,27 +350,27 @@ msgstr "Forigi" msgid "never" msgstr "neniam" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} foriĝis" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "aldoni grupon" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Valida uzantonomo devas proviziĝi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Eraris kreo de uzanto" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Valida pasvorto devas proviziĝi" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Averto: hejmdosierujo por la uzanto “{user”} jam ekzistas" @@ -734,11 +734,11 @@ msgstr "Pli" msgid "Less" msgstr "Malpli" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Eldono" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vi uzas %s el la disponeblaj %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Plena nomo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profila bildo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Alŝuti novan" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Elekti novan el dosieroj" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Forigi bildon" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Aŭ PNG aŭ JPG. Prefere ĝi kvadratu, sed vi povos stuci ĝin." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Nuligi" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Elekti kiel profilan bildon" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Ensaluta pasvorto" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Malĉifri ĉiujn dosierojn" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Viaj ĉifroklavoj moviĝis al savokopia loko. Se io malsukcesas, vi povas restaŭri la klavojn. Nur forigu ilin porĉiame se vi certas, ke ĉiuj dosieroj malĉifriĝis korekte." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaŭri ĉifroklavojn" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Forigi ĉifroklavojn" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ensaluti" @@ -976,19 +984,19 @@ msgstr "Ĉiuj" msgid "Admins" msgstr "Administrantoj" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Defaŭlta kvoto" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Senlima" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Alia" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c243195d29690671f26ba9648126f4db2a5e14af..802ee1a8a5d4fd72965f22e16a51c046ad482725 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "La agordaro ĝustas" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "La agordaro malĝustas" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "La agordaro neplenas" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Elekti grupojn" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Elekti objektoklasojn" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Elekti atribuojn" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Provo de konekto sukcesis" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Provo de konekto malsukcesis" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmi forigon" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo troviĝis" msgstr[1] "%s grupoj troviĝis" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s uzanto troviĝis" msgstr[1] "%s uzanto troviĝis" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Nevalida gastigo" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servilo" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servilo:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Aldoni agordon de servilo" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Forigi agordaron" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gastigo" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze, komencu per ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Pordo" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uzanto-DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Pasvorto" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Por sennoman aliron, lasu DN-on kaj Pasvorton malplenaj." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index cef9baccfce9d70baf5447d9eca0ab6a47b256a9..db43215615cb49d9364d93c180f8e96d5c590e9d 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Artopal \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,78 +174,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ajustes" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagen" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "hace segundos" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "hace años" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "La reiniciación de este correo electrónico no pudo ser enviada. Por favor, contacte a su administrador." diff --git a/l10n/es/files.po b/l10n/es/files.po index 3eae55d768226d0d1659e0dbc7001790ae6978d1..012d43438e6b4bc3d98586576936c5b25eb8e95f 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index d666bdb13d5fb7b65a2b4d71bfab25498ae7a791..22f72bbf3e6ef027bfc1d9bf3f4b74066820166f 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -4,6 +4,7 @@ # # Translators: # Artopal , 2014 +# Artopal , 2014 # joses , 2014 # Miguel Reyes Canales , 2014 # Raul Fernandez Garcia , 2014 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: victormce \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,7 +73,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Depósito" @@ -89,16 +90,16 @@ msgid "Secret Key" msgstr "Clave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nombre de Equipo (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Puerto (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Región (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -121,8 +122,8 @@ msgstr "App secreta" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -152,14 +153,6 @@ msgstr "Cliente secreto" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nombre de Usuario (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Depósito (requerido)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Región (opcional para OpenStack Object Storage)" @@ -185,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL de identidad de punto final (requerido para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tiempo de espera de peticiones HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -236,33 +229,41 @@ msgstr "Personal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Todos los usuarios. Teclee para seleccionar un usuario o grupo." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(grupo)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "y" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: El soporte de FTP en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador de sistema que lo instale." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -305,39 +306,23 @@ msgstr "Disponible para" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ningún usuario o grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir a los usuarios montar el siguiente almacenamiento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 1f7674ef6b0bc12c1da8f5f0a25756742399aed8..d99960a912af878675216e2cb0ad1000a7dd44b3 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 07:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -39,15 +39,15 @@ msgstr "Certificado SSL inválido o no confiable" msgid "Couldn't add remote share" msgstr "No se puede añadir un compartido remoto" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartido contigo" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartido con otros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartido por medio de enlaces" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 493cbc6a62cb664dc71468ca08b3b5ef728228e1..4a2a89fc3ab4e1629901dbd947deb5da21a8c2b4 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index fc3b5eb52a1a8ad87351d6c1a040e68e292e6716..f3d21e035fce089d4d7b7998d0fa58980c95b68c 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -31,33 +31,33 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "¡No se puede escribir en el directorio de Configuración!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Esto puede ser facilmente solucionado, dando permisos de escritura al directorio de configuración en el servidor Web" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Mirar %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Esto puede ser facilmente solucionado, %sdando permisos de escritura al directorio de configuración en el servidor Web%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Ejemplo de configuración detectado" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -179,12 +179,12 @@ msgstr "Token expirado. Por favor, recarga la página." msgid "Unknown user" msgstr "Usuario desconocido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" @@ -200,7 +200,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -209,23 +209,23 @@ msgstr "Tiene que ingresar una cuenta existente o la del administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nombre de usuario y/o contraseña de MySQL/MariaDB inválidos" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -250,15 +250,15 @@ msgstr "El usuario de MySQL/MariaDB '%s'@'%%' ya existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este usuario de MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" @@ -350,68 +350,68 @@ msgstr "Compartiendo %s ha fallado, ya que compartir con enlaces no está permit msgid "Share type %s is not valid for %s" msgstr "Compartir tipo %s no es válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "No se puede fijar fecha de caducidad. Archivos compartidos no pueden caducar luego de %s de ser compartidos" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "No se puede fijar la fecha de caducidad. La fecha de caducidad está en el pasado." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "El motor compartido %s debe implementar la interfaz OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "El motor compartido %s no se ha encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Motor compartido para %s no encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartiendo %s ha fallado, ya que volver a compartir no está permitido" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartir %s falló porque el motor compartido para %s podría no encontrar su origen" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f4388bc1e10014e665923e259127efbc0ab33605..fc6e084db38232052aee8112cfdca08a21740958 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 18:20+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -69,7 +69,7 @@ msgstr "Tiene que configurar su dirección de correo electrónico antes de poder msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -343,7 +343,7 @@ msgstr "Se debe dar un nombre válido para el grupo " msgid "deleted {groupName}" msgstr "borrado {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -367,27 +367,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "borrado {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "añadir Grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." @@ -574,7 +574,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -751,11 +751,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Introducir una dirección de correo electrónico para activar la recuperación de contraseñas y recibir notificaciones" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Sus claves de cifrado se archivarán en una localización segura. Así en caso de que algo fuese mal podrá recuperan sus claves. Borre sus claves de cifrado permanentemente solamente si esta seguro de que sus archivos han sido descifrados correctamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar claves de cifrado" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar claves de cifrado" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Mostrar la ubicación del almacenamiento" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Mostrar el último inicio de sesión" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de usuario" @@ -993,19 +1001,19 @@ msgstr "Todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otro" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index f19969be2809fa7764f63520330c6b610cb89922..592694aaa37a5c348aa16217ce348d95df79daa2 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Artopal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -61,11 +61,11 @@ msgstr "No se ha especificado la acción" msgid "No configuration specified" msgstr "No se ha especificado la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se han especificado los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo establecer la configuración %s" @@ -114,65 +114,65 @@ msgstr "No se pudo determinar un DN base" msgid "Please specify the port" msgstr "Especifique el puerto" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración Correcta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Grupo %s encontrado" msgstr[1] "Grupos %s encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -264,60 +264,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Borrar Configuración" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f82a3368569c6d249f5e396cf50d6bb7c179919f..d158e965e52be920e447369e2bdb21a6ae7b6837 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configuración" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagen" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "Hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "Hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "Hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "Hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 9afcab0c7231b3172cb70621c26ff5125616e43e..fcdd2cdfb011c98eedbb8c2644f4866bcc9ac249 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index e6e93fdb8072b4affe4921432fdd7df336bf2e8d..071683eddb65b8c556d06005478ee9d2bf7dce1c 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Borrar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento de usuario externo" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "certificados SSL raíz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 1c030ce6a67454188ccdeef0bb70fdf7a9c075af..3940ea8dca177e5b0d230671ac5795375f4e5d88 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 06bd3a68e5adbe12cce1dbe180a9554df26d1d05..726872b32389331c1583d17c42c1ff0e4b6a1761 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index ce9dc28282d434aef6d1d43286dbeeab0a902525..6b41a05c0a2001f976a4718e859e6181d138f870 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirado. Por favor, recargá la página." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s Entrá el usuario de la base de datos" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s Entrá el nombre de la base de datos." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tenés que ingresar una cuenta existente o el administrador." @@ -197,23 +197,23 @@ msgstr "Tenés que ingresar una cuenta existente o el administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No fue posible establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "El nombre de usuario y/o contraseña no son válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 20c7ff0360f2fa876665b8a0b92cebea5a49547c..c4f6c6d68cd0db671dd235f228c8699925a5a278 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -55,7 +55,7 @@ msgstr "Necesita especificar el usuario de correo electrónico antes de poder en msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encriptación" @@ -329,7 +329,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -353,27 +353,27 @@ msgstr "Borrar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "agregar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advertencia: El directorio Home del usuario \"{user}\" ya existe" @@ -737,11 +737,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "e-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. " -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imágen de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir nuevo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar nuevo desde archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sólo png o jpg. Lo ideal que sea cuadrada sino luego podrás recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proveído por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Elegir como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de Usuario" @@ -979,19 +987,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cuota predeterminada" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otros" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 2b0e5be9f9118f37dd4cea84fa604bc167541fff..59c02016f92df67c037f4006b86d5c24bb75a98f 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,11 +52,11 @@ msgstr "No se ha especificado una acción" msgid "No configuration specified" msgstr "No se ha especificado una configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se ha especificado datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo asignar la configuración %s" @@ -105,65 +105,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración válida" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar las clases de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar borrado" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo encontrado" msgstr[1] "%s grupos encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s usuario encontrado" msgstr[1] "%s usuarios encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se pudo encontrar la característica deseada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Añadir Configuración del Servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, dejá DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Una DN base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"" diff --git a/l10n/es_BO/core.po b/l10n/es_BO/core.po index 3cab62ed1a1a641a2812633e3637b08ce3d53315..3800ac86a4918971f3b81c819d33b4cc8759ba5c 100644 --- a/l10n/es_BO/core.po +++ b/l10n/es_BO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_BO/files_external.po b/l10n/es_BO/files_external.po index b1c7926822b0f8238f916ef0db926cef4250a24a..1b40b8eb5c3597181cadb20c21fb2c817d76f151 100644 --- a/l10n/es_BO/files_external.po +++ b/l10n/es_BO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_BO/settings.po b/l10n/es_BO/settings.po index 022caebdf1ab792359ba804b138f6c5658f03e86..339046744bd7c296a7c39d318a8b61216623f966 100644 --- a/l10n/es_BO/settings.po +++ b/l10n/es_BO/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Bolivia) (http://www.transifex.com/projects/p/owncloud/language/es_BO/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 91d9dce596610a213d6b70f07b709769bb6c8fe9..f456c19fb6de141225e1389ce5678fd0091c4c00 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configuración" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos antes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes anterior" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "último año" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años anteriores" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index c9fd7daa92f80b8bfd2aa56be12bb702cdd9e3e0..bf7b93bf303458295b2b56c64541dc47a6ae1271 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 21:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Usuario" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po index b8768a1ccec95abbab3dc342272b2c429d418861..fe7989fa927e5881b9e8c05d9027ed503fb635c6 100644 --- a/l10n/es_CL/files_sharing.po +++ b/l10n/es_CL/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 9bd3b1de8ccfa4360c514e5647b48b5d7aa017d5..b872f2748a0ea67acbef1a7ca8774b771da7106d 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "No se puede escribir en el directorio \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Generalmente esto se puede resolver otorgando permisos de escritura al servidor web en la carpeta configurada" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Generalmente esto se puede resolver %s otorgando permisos de escritura al servidor web en la carpeta configurada %s" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 7a00cfbf09199595985d6464c09bf6b2227c3df9..acbe15244d14e185987be4ef6267e78d6406dbc8 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Clave" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index eacb455bf67168c37d985d85b363f059a90da5ce..8ecf85fb5e69a57bcb1de1ab4039f41e5eaea8cf 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-31 01:54-0400\n" -"PO-Revision-Date: 2014-07-30 21:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Clave" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/es_CO/core.po b/l10n/es_CO/core.po index 21d7e9d92596ca4be9781c9b4e7d1dbb1855eb09..b9691cfec3d8478bd63ed2e760967b79256d7ca3 100644 --- a/l10n/es_CO/core.po +++ b/l10n/es_CO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CO/files_external.po b/l10n/es_CO/files_external.po index fd596681aaf5963c676c110a408ea6addafef985..7da7e52d07674529d07e1e3441a70723c09ea6b7 100644 --- a/l10n/es_CO/files_external.po +++ b/l10n/es_CO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CO/settings.po b/l10n/es_CO/settings.po index e1eb75afd3b89647ddd1cbcbb4b2e93993e9d9f9..eacd85d479abc4d80e60470473ed1dce174a6d90 100644 --- a/l10n/es_CO/settings.po +++ b/l10n/es_CO/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/projects/p/owncloud/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_CR/core.po b/l10n/es_CR/core.po index b7356c342cff75ad4b941aa9c78d8949f247d52e..a9a8f39e0450e27b9486234eabaa8c1f5b09709c 100644 --- a/l10n/es_CR/core.po +++ b/l10n/es_CR/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po index dd46911c1a113e492155319a94b58f28eb62cb79..3db319b217f6289463abaefe1d728666618f1298 100644 --- a/l10n/es_CR/files_external.po +++ b/l10n/es_CR/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po index b859d6dfc63a6b9aa65a83989dac3f9b52a4f22d..abec3dcc10e7c7c1e1e640c95a6bcb027c38611e 100644 --- a/l10n/es_CR/settings.po +++ b/l10n/es_CR/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_EC/core.po b/l10n/es_EC/core.po index 5754c8a14bafc02bd87687b2c9f7b84a3382b3b3..ee6b07bcc732ecc48176ea4393544d3342a7b80c 100644 --- a/l10n/es_EC/core.po +++ b/l10n/es_EC/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_EC/files_external.po b/l10n/es_EC/files_external.po index f6e87773e4ed5bb677eafc00ce86409bbb088ea3..930105a8b1901b1dc351a7f7e773786b0c1418c0 100644 --- a/l10n/es_EC/files_external.po +++ b/l10n/es_EC/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_EC/settings.po b/l10n/es_EC/settings.po index 1b555d86eae888fc466fb071006e49fb91f5e815..2d268217969de40ac29cf456bd129cce157a737e 100644 --- a/l10n/es_EC/settings.po +++ b/l10n/es_EC/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/owncloud/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 4cc11e0c999d3fb824b2ddec033fbea8a635ee54..6779fe2257fd395c10779a39e2304988b2e15a10 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ajustes" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Archivo" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Carpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos antes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Hace %n minuto" -msgstr[1] "Hace %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Hace %n hora" -msgstr[1] "Hace %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoy" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ayer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Hace %n día" -msgstr[1] "Hace %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "el mes pasado" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Hace %n mes" -msgstr[1] "Hace %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "el año pasado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "años antes" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 3bc43ae113cfc1a212277a71699fb6d8d738cc60..050dd539daad4dc3de0babecba114de68c714b5a 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index b42fd4108760de9a5c98f81bb78f6ef481e33426..dc4f75f3377f53e0e8e4ed0c44e37528f2d381d7 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nombre de usuario" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "Añadir almacenamiento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos los usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index f2b6e60e29da8bf494f8c928d6e8eac6df6c7ebd..875f91a0eec81c22befd2dcacfa7516bd2d833d2 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 9e66945120de41686935018f2251695c16e0f274..031cfdb4d89c469d208cb40dfa99d146c3825018 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index d98f69731f480625c662cebc2155a7ec744450d7..0dba13e7afd439b090438086ff903bcec2d35835 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token expirado. Por favor, recarga la página." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ingresar el usuario de la base de datos." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ingresar el nombre de la base de datos" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Usuario y/o contraseña de MS SQL no válidos: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." @@ -195,23 +195,23 @@ msgstr "Tiene que ingresar una cuenta existente o la del administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "No se pudo establecer la conexión a Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Usuario y/o contraseña de Oracle no válidos" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 148a7af414a02af2d31a648f9b212f36aad0af53..88f5984a5f1504c2d5be669dc4732bd5ff587f08 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "deshacer" @@ -349,27 +349,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "añadir Grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." @@ -733,11 +733,11 @@ msgstr "Más" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nombre de usuario" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Otro" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index e9946619829f298267cbd28938a4a803ae81b005..ae41a082bcea5fb0c7dd95739ae9027a4185fd8e 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "No se ha especificado la acción" msgid "No configuration specified" msgstr "No se ha especificado la configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "No se han especificado los datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "No se pudo establecer la configuración %s" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Grupo %s encontrado" msgstr[1] "Grupos %s encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host inválido" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define el filtro a aplicar cuando se intenta identificar. %%uid remplazará al nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Agregar configuracion del servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Servidor" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Puerto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN usuario" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "El DN del usuario cliente con el que se hará la asociación, p.ej. uid=agente,dc=ejemplo,dc=com. Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contraseña" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acceso anónimo, deje DN y contraseña vacíos." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN Base por línea" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado" diff --git a/l10n/es_PE/core.po b/l10n/es_PE/core.po index 29b9d936b7bfcd930bc5107dc839d907afbc4148..a4032e94649fec33b7a4bd1540b6bb58bc79c4cd 100644 --- a/l10n/es_PE/core.po +++ b/l10n/es_PE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_PE/files_external.po b/l10n/es_PE/files_external.po index bb6b167f23466a75cc16c85a1f6013a13e07ac23..3fbe3a06f92dc4d59fb163a58c1cba1872569d6a 100644 --- a/l10n/es_PE/files_external.po +++ b/l10n/es_PE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_PE/settings.po b/l10n/es_PE/settings.po index dc0ef817d7ce7ad5003a0081c3dcd29304b76231..a6f1bfac5eacb16fe79336f1ba995ae18bb705b8 100644 --- a/l10n/es_PE/settings.po +++ b/l10n/es_PE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/owncloud/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_PY/core.po b/l10n/es_PY/core.po index e9472ecd5dfc268ef7b0e4156f97c24c49f62942..d8916d960fecedac6574ef8f3bfbab12512e7e10 100644 --- a/l10n/es_PY/core.po +++ b/l10n/es_PY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_PY/files_external.po b/l10n/es_PY/files_external.po index b7869ac80cd65a4a325213846f63bc74af334086..89c96197d1f41e70363c20901cff9fba220840d7 100644 --- a/l10n/es_PY/files_external.po +++ b/l10n/es_PY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_PY/settings.po b/l10n/es_PY/settings.po index 5d8c96e48048c6e626c5fa171162e3e16ea3de91..afe99bcd798b8303645562ba18a90b0f8b23a6dd 100644 --- a/l10n/es_PY/settings.po +++ b/l10n/es_PY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Paraguay) (http://www.transifex.com/projects/p/owncloud/language/es_PY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_US/core.po b/l10n/es_US/core.po index ef268f6f26c5c22e79801bfdda309eba12e18645..7599c67c21afcac69e2624acc0a9e01b25c0b44c 100644 --- a/l10n/es_US/core.po +++ b/l10n/es_US/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_US/files_external.po b/l10n/es_US/files_external.po index 85e434013a7f75516fce56e9fc337cd1c75f4891..7b0277a8c2b915400c4828cd8c8fc64a6b8ed4b2 100644 --- a/l10n/es_US/files_external.po +++ b/l10n/es_US/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_US/settings.po b/l10n/es_US/settings.po index e1e8f0ec5de2a5091cbc93743b713d11e7e986ea..479428ffee4b65309946898811e8baeb0533df12 100644 --- a/l10n/es_US/settings.po +++ b/l10n/es_US/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (United States) (http://www.transifex.com/projects/p/owncloud/language/es_US/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/es_UY/core.po b/l10n/es_UY/core.po index 06fcbf3e44f2218329ec51789fb1391ae9f552ff..673349982350f6c93c8db8e33d8fe707e4ed03b8 100644 --- a/l10n/es_UY/core.po +++ b/l10n/es_UY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/es_UY/files_external.po b/l10n/es_UY/files_external.po index 055921fa5856e1e3c48079e642dbdee2f7c3b5e4..7e439465f4fbaf0e4a9bac37adc000e7c6025db5 100644 --- a/l10n/es_UY/files_external.po +++ b/l10n/es_UY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_UY/settings.po b/l10n/es_UY/settings.po index 7cb33bbbaed5f154b9a6baba22c009dcd8fd01ea..0ad54de72b35b3d32c6e142b7a498f42d9620d8f 100644 --- a/l10n/es_UY/settings.po +++ b/l10n/es_UY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Uruguay) (http://www.transifex.com/projects/p/owncloud/language/es_UY/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 9055d0f149921d6d79af81095a46469656346009..ca166d42154c9b0f683105501f6606609355134f 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Seaded" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fail" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Kaust" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Pilt" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Helid" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundit tagasi" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut tagasi" -msgstr[1] "%n minutit tagasi" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n tund tagasi" -msgstr[1] "%n tundi tagasi" - -#: js/js.js:1281 -msgid "today" -msgstr "täna" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "eile" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n päev tagasi" -msgstr[1] "%n päeva tagasi" - -#: js/js.js:1284 -msgid "last month" -msgstr "viimasel kuul" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n kuu tagasi" -msgstr[1] "%n kuud tagasi" - -#: js/js.js:1286 -msgid "last year" -msgstr "viimasel aastal" - -#: js/js.js:1287 -msgid "years ago" -msgstr "aastat tagasi" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ei suutnud lähtestada e-maili. Palun kontakteeru süsteemihalduriga." @@ -864,7 +816,7 @@ msgstr "" #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Lisa \"%s\" usaldusväärse domeenina" #: templates/update.admin.php:3 #, php-format diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 5c86e1e980edce15164c3d5a5bb496c4f8bb957f..e8fe2319f4cdb92d21be77d91a2796b01fbd26b8 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,7 +328,7 @@ msgstr "{dirs} ja {files}" #: lib/app.php:80 #, php-format msgid "%s could not be renamed as it has been deleted" -msgstr "" +msgstr "%s ei saa ümber nimetada, kuna see on kustutatud" #: lib/app.php:113 #, php-format diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index 3259fe23b2dd82c955d9590fcf58a0579f88c8cb..e72cd6fc6ebbad5b304497efa0eeda6eabfa83c2 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-12 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 09:30+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +37,11 @@ msgid "" "Could not disable recovery key. Please check your recovery key password!" msgstr "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!" -#: ajax/changeRecoveryPassword.php:49 +#: ajax/changeRecoveryPassword.php:50 msgid "Password successfully changed." msgstr "Parool edukalt vahetatud." -#: ajax/changeRecoveryPassword.php:51 +#: ajax/changeRecoveryPassword.php:52 msgid "Could not change the password. Maybe the old password was not correct." msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud." @@ -93,7 +93,7 @@ msgid "" " the encryption app has been disabled." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:293 +#: hooks/hooks.php:298 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" @@ -163,7 +163,7 @@ msgstr "Muuda parooli" #: templates/settings-personal.php:12 msgid "Your private key password no longer matches your log-in password." -msgstr "" +msgstr "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga." #: templates/settings-personal.php:15 msgid "Set your old private key password to your current log-in password:" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 8365986b82c07f790faa653b8596094bbf32fd42..f0c1a141b710da1cb196d38919903224e153f98e 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -69,7 +69,7 @@ msgstr "Võti" msgid "Secret" msgstr "Salasõna" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Korv" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Salavõti" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostinimi (valikuline)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Post (valikuline)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regioon (valikuline)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "Rakenduse salasõna" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Kasutajanimi" @@ -149,14 +149,6 @@ msgstr "Kliendi salasõna" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Kasutajanimi (kohustuslik)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Korv (kohustuslik)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regioon (valikuline OpenStack Object Storage puhul)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Tuvastuse URL lõpp-punkt (vajalik OpenStack Object Storage puhul)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP päringu aegumine sekundites (valikuline)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,33 +225,41 @@ msgstr "Isiklik" msgid "System" msgstr "Süsteem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Kõik kasutajad. Kirjuta, et valida kasutaja või grupp." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(grupp)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Märkus:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ja" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "Saadaval" msgid "Add storage" msgstr "Lisa andmehoidla" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ühtki kasutajat või gruppi" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Kõik kasutajad" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupid" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Kasutajad" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Kustuta" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Luba kasutajatele väline salvestamine" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Võimalda kasutajatel ühendada järgmist välist andmehoidlat" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root sertifikaadid" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Impordi root sertifikaadid" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 15fbafc166f0cea0ba12fc3b30c37cb9ff06e5a1..f36d7843a66a6c4b31c5577aaeef7fa01768b67a 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,21 +25,21 @@ msgstr "Serverist serverisse jagamine pole antud serveris lubatud" #: ajax/external.php:38 msgid "Invalid or untrusted SSL certificate" -msgstr "" +msgstr "Vigane või tundmatu SSL sertifikaat" #: ajax/external.php:52 msgid "Couldn't add remote share" msgstr "Ei suutnud lisada kaugjagamist" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sinuga jagatud" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Teistega jagatud" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Jagatud lingiga" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 125e954dce8dceb3cb78c8508bedb68aa37c59c7..02bf57ef6ca7f767da4ce40c8a534005126d5dcd 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 162d1f1b1d0c0a588b7a315fb60f8db1eaa94ade..832be4633f1807f6c4c0d3521f18c51c35bea8bd 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +19,33 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Ei saa kirjutada \"config\" kataloogi!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Tavaliselt saab selle lahendada andes veebiserverile seatete kataloogile \"config\" kirjutusõigused" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vaata %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Tuvastati näidisseaded" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Kontrollkood aegus. Paelun lae leht uuesti." msgid "Unknown user" msgstr "Tundmatu kasutaja" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sisesta andmebaasi kasutajatunnus." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sisesta andmebaasi nimi." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Sisesta kas juba olemasolev konto või administrator." @@ -197,23 +197,23 @@ msgstr "Sisesta kas juba olemasolev konto või administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB kasutajatunnus ja/või parool pole õiged" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Andmebaasi viga: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB user '%s'@'%%' on juba olemas" msgid "Drop this user from MySQL/MariaDB." msgstr "Kustuta see MySQL/MariaDB kasutaja." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Ei suuda luua ühendust Oracle baasiga" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle kasutajatunnus ja/või parool pole õiged" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" @@ -338,68 +338,68 @@ msgstr "%s jagamine ebaõnnestus, kuna linkidega jagamine pole lubatud" msgid "Share type %s is not valid for %s" msgstr "Jagamise tüüp %s ei ole õige %s jaoks" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "" +msgstr "Aegumiskuupäeva ei saa määrata. Aegumise kuupäev on minevikus" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Jagamise tagarakendit %s ei leitud" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s jagamine ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 409c435c27a6ebb6d4ea611f872030ad8e8ce407..8d88e1728aa4f02aa097d341cb790193f06d34f4 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -4,13 +4,13 @@ # # Translators: # Pisike Sipelgas , 2013-2014 -# Rivo Zängov , 2013 +# Rivo Zängov , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -53,7 +53,7 @@ msgstr "Pead seadistama oma e-postienne kui on võimalik saata test-kirju." msgid "Send mode" msgstr "Saatmise viis" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Krüpteerimine" @@ -197,11 +197,11 @@ msgstr "Ei suuda parooli muuta" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Lis ausaldusväärne domeen" #: js/admin.js:146 msgid "Sending..." @@ -327,7 +327,7 @@ msgstr "Sisesta nõuetele vastav grupi nimi" msgid "deleted {groupName}" msgstr "kustutatud {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "tagasi" @@ -351,27 +351,27 @@ msgstr "Kustuta" msgid "never" msgstr "mitte kunagi" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "kustutatud {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lisa grupp" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas" @@ -504,7 +504,7 @@ msgstr "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3 #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP märgistik pole UTF-8" #: templates/admin.php:154 msgid "" @@ -549,7 +549,7 @@ msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funkt #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "URL-ide loomine teavituskirjades" #: templates/admin.php:206 #, php-format @@ -735,11 +735,11 @@ msgstr "Rohkem" msgid "Less" msgstr "Vähem" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versioon" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parool" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Täispikk nimi" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Täida e-posti aadress võimaldamaks parooli taastamist ning teadete saamist." -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profiili pilt" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Laadi uus üles" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vali failidest uus" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Eemalda pilt" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Sinu avatari pakub sinu algne konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Loobu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vali profiilipildiks" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Keel" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Sisselogimise parool" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrüpteeri kõik failid" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Sinu krüpteerimisvõtmed on tõstetud varukoopiasse. Kui midagi läheb valesti, siis saad võtmed taastada. Kustuta lõplikult ainult juhul kui oled kindel, et failid on dekrüteeritud korrektselt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Taasta krüpteerimisvõtmed" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Kustuta krüpteerimisvõtmed" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Kasutajanimi" @@ -977,19 +985,19 @@ msgstr "Igaüks" msgid "Admins" msgstr "Haldurid" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Vaikimisi kvoot" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Piiramatult" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Muu" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 8c044180661df4894d5b9928a020ac4fc39234f3..b5bdf3eba82e7b2471c415b853c534d0e9ab1701 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Pisike Sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Tegevusi pole määratletud" msgid "No configuration specified" msgstr "Seadistust pole määratletud" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Andmeid pole määratletud" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ei suutnud seadistada %s" @@ -104,65 +104,65 @@ msgstr "Baas DN-i tuvastamine ebaõnnestus" msgid "Please specify the port" msgstr "Palun määra post" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupp leitud" msgstr[1] "%s gruppi leitud" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s kasutaja leitud" msgstr[1] "%s kasutajat leitud" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Vigane server" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lisa serveri seadistus" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Kustuta seadistused" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Kasutaja DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parool" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonüümseks ligipääsuks jäta DN ja parool tühjaks." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Üks baas-DN rea kohta" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index e111fa2e0fe16ff8112b09580d91a6d24f347501..40cf1f7bf21f71040752e27c17b52694cedb7438 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Alexander Gabilondo \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fitxategia" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Karpeta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Irudia" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "orain dela minutu %n" -msgstr[1] "orain dela %n minutu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "orain dela ordu %n" -msgstr[1] "orain dela %n ordu" - -#: js/js.js:1281 -msgid "today" -msgstr "gaur" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "atzo" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "orain dela egun %n" -msgstr[1] "orain dela %n egun" - -#: js/js.js:1284 -msgid "last month" -msgstr "joan den hilabetean" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "orain dela hilabete %n" -msgstr[1] "orain dela %n hilabete" - -#: js/js.js:1286 -msgid "last year" -msgstr "joan den urtean" - -#: js/js.js:1287 -msgid "years ago" -msgstr "urte" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ezin da berrezartzeko eposta bidali. Mesedez jarri harremetan zure administradorearekin." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index db98adcd384148d2765d5292e2636836349026a6..9bd357e282d9796dff2934948b0d5846adc88baa 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index b75324283c5266528717f1bfee77e3c0be9a1ab9..86e9ebb45b4fe092a190c1937aaa19cfefb6a4c2 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -70,7 +70,7 @@ msgstr "Gakoa" msgid "Secret" msgstr "Sekretua" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Giltza Sekretua" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostalari izena (hautazkoa)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Portua (hautazkoa)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Eskualdea (hautazkoa)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App sekretua" msgid "Host" msgstr "Ostalaria" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Erabiltzaile izena" @@ -150,14 +150,6 @@ msgstr "Bezeroaren Sekretua" msgid "OpenStack Object Storage" msgstr "OpenStack Objektu Biltegiratzea" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Erabiltzaile izena (beharrezkoa)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Eskualdea (hautazkoa OpenStack Objektu Biltegiratzerako)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Nortasun amaierako puntuaren URLa (beharrezkoa OpenStack Objektu Biltegiratzerako)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP eskarien gehienezko denbora segundutan (hautazkoa)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Pertsonala" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gordeta" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Oharra:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "eta" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Oharra: :PHPko cURL euskarria ez dago instalatuta edo gaitua. Ezinezko da %s muntatzea. Mesedez eskatu sistema administratzaleari instala dezan. " -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Oharra: :PHPko FTP euskarria ez dago instalatuta edo gaitua. Ezinezko da %s muntatzea. Mesedez eskatu sistema administratzaleari instala dezan. " -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Hauentzat eskuragarri" msgid "Add storage" msgstr "Gehitu biltegiratzea" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Talde edo erabiltzailerik ez" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Erabiltzaile guztiak" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Taldeak" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Erabiltzaileak" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ezabatu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Gaitu erabiltzaileentzako kanpo biltegiratzea" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Baimendu erabiltzaileak hurrengo kanpo biltegiratzeak muntatzen" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL erro ziurtagiriak" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Inportatu erro ziurtagiria" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a6ca8fb29b6c7a74db955554d3b9d8ca6d11d7bc..31014b330723bd6e4197a1fb4ca120bdba077b7a 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "Ezin izan da hurruneko elkarbanaketa gehitu" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Zurekin elkarbanatuta" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Beste batzuekin elkarbanatuta" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Lotura bidez elkarbanatuta" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 94c4ac373649a0d9ff681d9798b0cb1df04e57e2..f55fc7db1b23fdbb6748bdb357fc4b1c814e1092 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d4f36f87e428971e70e27787f5cbf2a0349604e3..0740fc2733a1e7e072b3471b64c14780b7b1159b 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +21,33 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Ezin da idatzi \"config\" karpetan!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Hau normalean konpondu daitekesweb zerbitzarira config karpetan idazteko baimenak emanez" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ikusi %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Hau normalean konpondu daiteke %sweb zerbitzarira config karpetan idazteko baimenak emanez%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Adibide-ezarpena detektatua" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Tokena iraungitu da. Mesedez birkargatu orria." msgid "Unknown user" msgstr "Erabiltzaile ezezaguna" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s sartu datu basearen erabiltzaile izena." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s sartu datu basearen izena." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." @@ -199,23 +199,23 @@ msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB erabiltzaile edota pasahitza ez dira egokiak" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB errorea: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "MySQL/MariaDB '%s'@'%%' erabiltzailea dagoeneko existitzen da" msgid "Drop this user from MySQL/MariaDB." msgstr "Ezabatu erabiltzaile hau MySQL/MariaDBtik." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Ezin da Oracle konexioa sortu" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle erabiltzaile edota pasahitza ez dira egokiak." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" @@ -340,68 +340,68 @@ msgstr "%s elkarbanatzeak huts egin du, lotura bidezko elkarbanatzea baimendua e msgid "Share type %s is not valid for %s" msgstr "%s elkarbanaketa mota ez da %srentzako egokia" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%srentzako baimenak ezartzea huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%srentzako baimenak ezartzea huts egin du, aurkitu ez delako" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Ezin izan da jarri iraungitze data. Konpartitzea ezin da iraungi konpartitu eta %s ondoren." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Ezin da jarri iraungitze data. Iraungitze data iragan da." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du " -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Ez da %s elkarbanaketa motorra aurkitu" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Ez da %srako elkarbanaketa motorrik aurkitu" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s elkarbanatzeak huts egin du, %s erabiltzailea jatorrizko elkarbanatzailea delako" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s elkarbanatzeak huts egin du, baimenak %sri emandakoak baino gehiago direlako" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s elkarbanatzeak huts egin du, ber-elkarbanatzea baimenduta ez dagoelako" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s elkarbanatzeak huts egin du, %sren elkarbanaketa motorrak bere iturria aurkitu ezin duelako" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c4881c7ae05844e2824d35cfead728d6db6ee27e..cfc7483e575696ba9030d91bc1ae07c477769dcb 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Alexander Gabilondo \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,7 @@ msgstr "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurreti msgid "Send mode" msgstr "Bidaltzeko modua" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Enkriptazioa" @@ -330,7 +330,7 @@ msgstr "Baliozko talde izena eman behar da" msgid "deleted {groupName}" msgstr "{groupName} ezbatuta" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desegin" @@ -354,27 +354,27 @@ msgstr "Ezabatu" msgid "never" msgstr "inoiz" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} ezabatuta" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "gehitu taldea" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da" @@ -738,11 +738,11 @@ msgstr "Gehiago" msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Zure pasahitza aldatu da" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Izena" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Bete ezazu eposta helbide bat pasahitza berreskuratzeko eta jakinarazpenak jasotzeko" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilaren irudia" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Igo berria" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Hautatu berria Fitxategietatik" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Irudia ezabatu" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png edo jpg. Hobe karratua baina mozteko aukera izango duzu." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Zure jatorrizko kontuak ezarri du zure avatar." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Profil irudi bezala aukeratu" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Saioa hasteko pasahitza" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desenkripattu fitxategi guztiak" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Zure enkriptatze gakoak babeskopiara eraman dira. Zerbait gaizki ateratzen bada berreskura ditzakezu giltzak. Behin betirako ezabatu bakarrik ziur bazaude fitxategi guztiak ongi deskodetu badira." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Lehenera itzazu enkriptatze gakoak." -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Ezabatu enkriptatze gakoak" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Sarrera Izena" @@ -980,19 +988,19 @@ msgstr "Edonor" msgid "Admins" msgstr "Administratzaileak" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota lehentsia" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Mugarik gabe" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Bestelakoa" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index c7c275941f7ed5c90b724c0c3a6cef940dd43fc6..8865938175cd874027f92e4143ece65fa18e8791 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-28 01:54-0400\n" -"PO-Revision-Date: 2014-07-27 07:51+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Alexander Gabilondo \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Ez da ekintzarik zehaztu" msgid "No configuration specified" msgstr "Ez da konfiguraziorik zehaztu" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ez da daturik zehaztu" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ezin izan da %s konfigurazioa ezarri" @@ -104,65 +104,65 @@ msgstr "Ezin izan da zehaztu Base DN" msgid "Please specify the port" msgstr "Mesdez zehaztu portua" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurazioa ongi dago" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfigurazioa ez dago ongi" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurazioa osatu gabe dago" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Hautatu taldeak" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Hautatu objektu klaseak" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Hautatu atributuak" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Konexio froga ongi burutu da" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Konexio frogak huts egin du" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Baieztatu Ezabatzea" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Talde %s aurkitu da" msgstr[1] "%s talde aurkitu dira" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Erabiltzaile %s aurkitu da" msgstr[1] "%s erabiltzaile aurkitu dira" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Ezin izan da nahi zen ezaugarria aurkitu" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Baliogabeko hostalaria" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definitu aplikatu beharreko iragazkia sartzen saiatzean. %%uid erabiltzailearen izena ordezten du sartzeko ekintzan. Adibidez: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Zerbitzaria" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Zerbitzaria:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Gehitu Zerbitzariaren Konfigurazioa" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Ezabatu Konfigurazioa" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Hostalaria" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portua" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Erabiltzaile DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Pasahitza" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "DN Oinarri bat lerroko" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index e519f22d6c3f23108d904b28af45c7f69b4d6085..a4efaee05d0e1ad5cbf2aaffd033b705660cf084 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index de4575d300f841bdd8d590580709d4cb4104bb6a..5015cf3d2b535482388d25fdba661c79a3dede52 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 7f664ba6eb4c9ffb61a8c11b4a0940aad40dbf01..ab7b60975773e6a6a5febc68d90c254c746c3ae8 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Pertsonala" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ezabatu" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/eu_ES/files_trashbin.po b/l10n/eu_ES/files_trashbin.po index 818729e19d1b8ed5b99f026d44237b423970f83e..a6bb8031911c232b3935a610901ffd59e490f88a 100644 --- a/l10n/eu_ES/files_trashbin.po +++ b/l10n/eu_ES/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index c477acaaf77773883e95d17a5d6a4a20586ec2a9..be4a6fb6d079a16ef6b6c095bb6b24bcac933f87 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Ezabatu" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ezeztatu" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Bestea" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 86f4fd0e97e57bbdedb5d48b0bbb8aa32547afba..5ff9bac9357d12c5d845b78d042dcdd2bfe1962c 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -153,74 +153,30 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "فایل" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "پوشه" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "تصویر" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "صدا" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "ثانیه‌ها پیش" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n دقیقه قبل" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ساعت قبل" - -#: js/js.js:1281 -msgid "today" -msgstr "امروز" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "دیروز" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n روز قبل" - -#: js/js.js:1284 -msgid "last month" -msgstr "ماه قبل" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ماه قبل" - -#: js/js.js:1286 -msgid "last year" -msgstr "سال قبل" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سال‌های قبل" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "ارسال ایمیل مجدد با مشکل مواجه شد . لطفا با مدیر سیستم تماس بگیرید ." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 8fba1e279a3cfaa257c5b30b808a513c2f422087..57454bb3fb2d7b6de55f73e5be42febf7b875514 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 5883aafc32522ab7c1b7a6741a874703fba14f02..2f08b7b2779a8f8414d6a6165c58f94cb8854794 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "میزبانی" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "نام کاربری" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "ذخیره شد" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "اضافه کردن حافظه" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "تمام کاربران" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "گروه ها" - -#: templates/settings.php:106 -msgid "Users" -msgstr "کاربران" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "حذف" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "فعال سازی حافظه خارجی کاربر" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "گواهی های اصلی SSL " -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "وارد کردن گواهی اصلی" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 2112032a5a71e6dcad847d564e29269f7981df2c..b6d4909db46e704aff1b63d7d18c99c5173a5794 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: hamidm70 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,15 +35,15 @@ msgstr "گواهینامه SSL غیر قابل اعتماد یا غیر معتب msgid "Couldn't add remote share" msgstr "امکان افزودن اشتراک گذاری از راه دور وجود ندارد" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "موارد به اشتراک گذاشته شده با شما" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "موارد به اشتراک گذاشته شده با دیگران" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "اشتراک گذاشته شده از طریق پیوند" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 13a46e9d4f0de0cedeb987d9019625d51ee88fb2..04b20a2154bbb7d36959ce7c40108f4321aab99e 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index fa766108666a80ca2f27d70ec285c1c136f0afbc..c8ef5c480796eed905a5d79a4e9c3c64f0c234cb 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -18,33 +18,33 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "رمز منقضی شده است. لطفا دوباره صفحه را ب msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s نام کاربری پایگاه داده را وارد نمایید." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s نام پایگاه داده را وارد نمایید." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." @@ -196,23 +196,23 @@ msgstr "شما نیاز به وارد کردن یک حساب کاربری موج msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطای پایگاه داده: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "ارتباط اراکل نمیتواند برقرار باشد." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index dce70d0b1a137df2b2e2721ca53d6b8efd78b759..983303c6c6991c53225e95f405985ef5c644c89f 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -55,7 +55,7 @@ msgstr "" msgid "Send mode" msgstr "حالت ارسال" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "رمزگذاری" @@ -329,7 +329,7 @@ msgstr "نام کاربری معتبر می بایست وارد شود" msgid "deleted {groupName}" msgstr "گروه {groupName} حذف شد" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "بازگشت" @@ -353,27 +353,27 @@ msgstr "حذف" msgid "never" msgstr "هرگز" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "کاربر {userName} حذف شد" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "افزودن گروه" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "اخطار: پوشه‌ی خانه برای کاربر \"{user}\" در حال حاضر وجود دارد" @@ -737,11 +737,11 @@ msgstr "بیش‌تر" msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "نسخه" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "نام کامل" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "تصویر پروفایل" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "بارگذاری جدید" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "انتخاب جدید از میان فایل ها" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "تصویر پاک شود" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "هردوی jpg و png ها مربع گونه می‌باشند. با این حال شما می‌توانید آنها را برش بزنید." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "منصرف شدن" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "یک تصویر پروفایل انتخاب کنید" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "زبان" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "رمز ورود" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "تمام فایلها رمزگشایی شود" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "بازیابی کلید های رمزگذاری" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "حذف کلید های رمزگذاری" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "نام کاربری" @@ -979,19 +987,19 @@ msgstr "همه" msgid "Admins" msgstr "مدیران" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "سهم پیش فرض" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "نامحدود" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "دیگر" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 691206eb16f85ebd2dad48aab52be75a88e330bc..684fa1031530ddea7b9d1666e5382493f664b082 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-13 01:54-0400\n" -"PO-Revision-Date: 2014-08-12 11:06+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Mohammad \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "فعالیتی مشخص نشده است" msgid "No configuration specified" msgstr "هیچ پیکربندی مشخص نشده است" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "داده ای مشخص نشده است" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "امکان تشخیص نام دامنه (DN) پایه وجود ندار msgid "Please specify the port" msgstr "لطفا پورت مورد نظر را مشخص کنید." -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "پیکربندی صحیح است" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "پیکربندی نادرست است" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "پیکربندی کامل نیست" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "انتخاب گروه ها" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "انتخاب کلاس های اشیا" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "انتخاب مشخصه ها" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "تست اتصال با موفقیت انجام گردید" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "تست اتصال ناموفق بود" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "تایید حذف" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s گروه بافت شد" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s کاربر بافت شد" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "هاست نامعتبر است" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index e59047eb705ea49016064ce1661f1f24291a961e..54ff1e1784ee41aa035ee0eb0240665a4a09ac21 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: ioxo \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,78 +151,30 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Asetukset" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Tiedosto" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Kansio" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Kuva" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Ääni" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekuntia sitten" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuutti sitten" -msgstr[1] "%n minuuttia sitten" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n tunti sitten" -msgstr[1] "%n tuntia sitten" - -#: js/js.js:1281 -msgid "today" -msgstr "tänään" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "eilen" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n päivä sitten" -msgstr[1] "%n päivää sitten" - -#: js/js.js:1284 -msgid "last month" -msgstr "viime kuussa" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n kuukausi sitten" -msgstr[1] "%n kuukautta sitten" - -#: js/js.js:1286 -msgid "last year" -msgstr "viime vuonna" - -#: js/js.js:1287 -msgid "years ago" -msgstr "vuotta sitten" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Palautussähköpostin lähettäminen ei onnistunut. Ota yhteys ylläpitäjään." @@ -860,7 +812,7 @@ msgstr "Ota yhteys ylläpitäjään. Jos olet tämän ownCloudin ylläpitäjä, msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen." #: templates/untrustedDomain.php:14 #, php-format diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b888f23acab853cd3197c0c12f52f22966ec57d8..736c57ee4bd958352e029be00a7a6b384870ebfe 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index eaed682d910e4b0d56daa03f7eb150bf54fb5ce2..2a54437901a25f95bba5e5f0e543f1d7671379dd 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "Avain" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Verkkonimi (valinnainen)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Portti (valinnainen)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Alue (valinnainen)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Isäntä" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Käyttäjätunnus" @@ -134,7 +134,7 @@ msgstr "" #: appinfo/app.php:92 msgid "Secure ftps://" -msgstr "" +msgstr "Salattu ftps://" #: appinfo/app.php:100 msgid "Client ID" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Käyttäjätunnus (vaaditaan)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP-pyyntöjen aikakatkaisu sekunneissa (valinnainen)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Henkilökohtainen" msgid "System" msgstr "Järjestelmä" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Kaikki käyttäjät. Kirjoita valitaksesi käyttäjän tai ryhmän." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(ryhmä)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Tallennettu" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Huomio: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ja" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Huomio: PHP:n cURL-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan cURL-tuki käyttöön." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Huomio: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Saatavuus" msgid "Add storage" msgstr "Lisää tallennustila" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ei käyttäjää tai ryhmää" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Kaikki käyttäjät" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Ryhmät" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Käyttäjät" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Poista" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL-juurivarmenteet" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Tuo juurivarmenne" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index c8ce3b61c17b643a8fda74c898681973393c49b9..ba1444c99f582c46e367b67b372e62e9c2bb0143 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-17 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 09:00+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "Virheellinen tai ei-luotettu SSL-varmenne" msgid "Couldn't add remote share" msgstr "Etäjaon liittäminen epäonnistui" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Jaettu kanssasi" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Jaettu muiden kanssa" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Jaettu linkin kautta" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index c4628a9da2ef0ecbfe23d674e097eff1433a5e91..ce78e46bbd5e5a19da82581feda427c5328ead2b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 5d986184b19a1fabfbabf51bb5b965d73f61936f..e28401479fbf64e23aa58f681ba624037d4785da 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Hakemistoon \"config\" kirjoittaminen ei onnistu!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Valtuutus vanheni. Lataa sivu uudelleen." msgid "Unknown user" msgstr "Tuntematon käyttäjä" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s anna tietokannan käyttäjätunnus." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s anna tietokannan nimi." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB-käyttäjätunnus ja/tai salasana on virheellinen" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Tietokantavirhe: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "MySQL/MariaDB-käyttäjä '%s'@'%%' on jo olemassa" msgid "Drop this user from MySQL/MariaDB." msgstr "Pudota tämä käyttäjä MySQL/MariaDB:stä." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle-yhteyttä ei voitu muodostaa" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s" @@ -337,68 +337,68 @@ msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Vanhentumispäivää ei voi asettaa. Vanhentumispäivä on jo mennyt" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Jakamisen taustaosaa %s ei löytynyt" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Jakamisen taustaosaa kohteelle %s ei löytynyt" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c2c8ea3d218fa6e00bc48192af299304e1e71096..95ab250f4ad57e49da998b66d38c577204c9f0b5 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +52,7 @@ msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Salaus" @@ -196,11 +196,11 @@ msgstr "Salasanan vaihto ei onnistunut" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Lisää luotettu toimialue" #: js/admin.js:146 msgid "Sending..." @@ -326,7 +326,7 @@ msgstr "Anna kelvollinen ryhmän nimi" msgid "deleted {groupName}" msgstr "poistettu {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "kumoa" @@ -350,27 +350,27 @@ msgstr "Poista" msgid "never" msgstr "ei koskaan" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "poistettu {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lisää ryhmä" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio" @@ -548,7 +548,7 @@ msgstr "Tällä palvelimella ei ole toimivaa internetyhteyttä. Sen seurauksena #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "Verkko-osoitteiden luominen sähköposti-ilmoituksissa" #: templates/admin.php:206 #, php-format @@ -734,11 +734,11 @@ msgstr "Enemmän" msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versio" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Salasana" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Koko nimi" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa ja voit vastaanottaa ilmoituksia" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profiilikuva" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Lähetä uusi" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Valitse uusi tiedostoista" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Poista kuva" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Joko png- tai jpg-kuva. Mieluiten neliö, voit kuitenkin rajata kuvaa." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Peru" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Valitse profiilikuvaksi" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Kieli" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Kirjautumissalasana" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Palauta salausavaimet" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Poista salausavaimet" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Näytä tallennustilan sijainti" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Näytä viimeisin sisäänkirjautuminen" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Kirjautumisnimi" @@ -976,19 +984,19 @@ msgstr "Kaikki" msgid "Admins" msgstr "Ylläpitäjät" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Oletuskiintiö" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Rajoittamaton" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Muu" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 8e1678ea4f9496073326284e7551f63e7e9b0175..de00dc054637c62ff491f6b34647b8249fe08ad1 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "Määritä portti" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Määritykset OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Määritykset väärin" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Määritykset puutteelliset" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Valitse ryhmät" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Yhteystesti onnistui" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Yhteystesti epäonnistui" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Haluatko varmasti poistaa nykyisen palvelinmäärityksen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Vahvista poisto" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s ryhmä löytynyt" msgstr[1] "%s ryhmää löytynyt" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s käyttäjä löytynyt" msgstr[1] "%s käyttäjää löytynyt" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Palvelin" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Palvelin:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lisää palvelinmääritys" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Poista määritys" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Isäntä" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ää. Aloita silloin ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portti" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Käyttäjän DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Asiakasohjelman DN, jolla yhdistäminen tehdään, ts. uid=agent,dc=example,dc=com. Mahdollistaaksesi anonyymin yhteyden, jätä DN ja salasana tyhjäksi." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Salasana" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Jos haluat mahdollistaa anonyymin pääsyn, jätä DN ja Salasana tyhjäksi " -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä " diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 981e0daaa9d35300c4abcc17e241172e87f7eda2..a46476b7c081717c5c209c8b8d6404f5335bf1c0 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -160,78 +160,30 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Paramètres" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fichier" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Image" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "il y a quelques secondes" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "il y a %n minute" -msgstr[1] "il y a %n minutes" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Il y a %n heure" -msgstr[1] "Il y a %n heures" - -#: js/js.js:1281 -msgid "today" -msgstr "aujourd'hui" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hier" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "il y a %n jour" -msgstr[1] "il y a %n jours" - -#: js/js.js:1284 -msgid "last month" -msgstr "le mois dernier" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Il y a %n mois" -msgstr[1] "Il y a %n mois" - -#: js/js.js:1286 -msgid "last year" -msgstr "l'année dernière" - -#: js/js.js:1287 -msgid "years ago" -msgstr "il y a plusieurs années" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index ca15d9b75cd198a20dff7eebe7b96d950169c0b5..aaa1a1d639336bbdaa260f448417501dacb7f70d 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index bce8367a1d524259f454191ae5ff973a0a06767c..961130e3f7c1ac9c2f5b0ae42b3da6d408d65e4d 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -75,7 +75,7 @@ msgstr "Clé" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Seau" @@ -92,16 +92,16 @@ msgid "Secret Key" msgstr "Clé secrète" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nom machine (optionnel)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (optionnel)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Région (facultatif)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -124,8 +124,8 @@ msgstr "Secret de l'application" msgid "Host" msgstr "Hôte" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nom d'utilisateur" @@ -155,14 +155,6 @@ msgstr "Secret client" msgid "OpenStack Object Storage" msgstr "Object de Stockage OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nom d'utilisation (requis)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (requis)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (optionnel pour Object de Stockage OpenStack)" @@ -188,8 +180,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL du point d'accès d'identité (requis pour le stockage OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Temps maximal de requête HTTP en seconde (facultatif)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -239,33 +231,41 @@ msgstr "Personnel" msgid "System" msgstr "Système" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Sauvegarder" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Attention :" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "et" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Attention : Le support de cURL de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -308,39 +308,23 @@ msgstr "Disponible pour" msgid "Add storage" msgstr "Ajouter un support de stockage" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Aucun utilisateur ou groupe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tous les utilisateurs" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groupes" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilisateurs" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Supprimer" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activer le stockage externe pour les utilisateurs" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Autorise les utilisateurs à monter les stockage externes suivants" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificats racine SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer un certificat racine" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 2d175c3f7ab7fa2cbe6457756f76a10ec03d5498..c62c02f8270532fd7290f216ab9779194d327bcf 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 13:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Ogre Sympathique\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -38,15 +38,15 @@ msgstr "Certificat SSL invalide ou non-fiable" msgid "Couldn't add remote share" msgstr "Impossible d'ajouter un partage distant" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Partagés avec vous" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Partagés avec d'autres" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Partagés par lien" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 1b79f570f910782537a769bc8310859c03a9b090..473e144116e101271251aeb05104e105fc0e9034 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index c1a2bc78954047e000e9f749dba7c2166e8a8a3f..93a9a632ab84936982dfb90de8ef2359c668c7be 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -27,33 +27,33 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Impossible d’écrire dans le répertoire \"config\" !" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ce problème est généralement résolu en donnant au serveur web un accès en écriture à ce répertoire" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Voir %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ce problème est généralement résolu %sen donnant au serveur web un accès en écriture au répertoire de configuration%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -175,12 +175,12 @@ msgstr "La session a expiré. Veuillez recharger la page." msgid "Unknown user" msgstr "Utilisateur inconnu" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s entrez le nom d'utilisateur de la base de données." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s entrez le nom de la base de données." @@ -196,7 +196,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." @@ -205,23 +205,23 @@ msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l' msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe MySQL/MariaDB invalide" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -246,15 +246,15 @@ msgstr "L'utilisateur MySQL/MariaDB '%s'@'%%' existe déjà" msgid "Drop this user from MySQL/MariaDB." msgstr "Retirer cet utilisateur de la base MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "La connexion Oracle ne peut pas être établie" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" @@ -346,68 +346,68 @@ msgstr "Le partage de %s a échoué car un partage de lien n'est pas permis" msgid "Share type %s is not valid for %s" msgstr "Le type de partage %s n'est pas valide pour %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Impossible de configurer la date d'expiration. Un partage ne peut expirer plus de %s après sa date de début." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Impossible de configurer la date d'expiration. La date d'expiration est dans le passé." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "L'emplacement du partage %s doit implémenter l'interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Emplacement de partage %s introuvable" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "L'emplacement du partage %s est introuvable" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage." -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Le partage de %s a échoué car le repartage n'est pas autorisé" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Le partage %s a échoué parce que la source n'a été trouvée pour le partage %s." -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index d12e561a5da8dac7efb068b08440f98a3ffa3cb6..ca90a67a5687870adca9d5a86d3960a934cfcf87 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -67,7 +67,7 @@ msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoye msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Chiffrement" @@ -341,7 +341,7 @@ msgstr "Vous devez spécifier un nom de groupe valide" msgid "deleted {groupName}" msgstr "{groupName} supprimé" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "annuler" @@ -365,27 +365,27 @@ msgstr "Supprimer" msgid "never" msgstr "jamais" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} supprimé" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ajouter un groupe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" @@ -749,11 +749,11 @@ msgstr "Plus" msgid "Less" msgstr "Moins" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Saisir une adresse e-mail pour permettre la réinitialisation du mot de passe et la réception des notifications" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Photo de profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Télécharger nouveau" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Sélectionner un nouveau depuis les documents" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Supprimer l'image" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Soit png ou jpg. Idéalement carrée mais vous pourrez la recadrer." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Votre avatar est fourni par votre compte original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuler" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Choisir en temps que photo de profil " -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Langue" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Vos clés de chiffrement ont été déplacées dans l'emplacement de backup. Si quelque chose devait mal se passer, vous pouvez restaurer les clés. Choisissez la suppression permanente seulement si vous êtes sûr que tous les fichiers ont été déchiffrés correctement." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurer les clés de chiffrement" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Supprimer les clés de chiffrement" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nom d'utilisateur" @@ -991,19 +999,19 @@ msgstr "Tout le monde" msgid "Admins" msgstr "Administrateurs" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota par défaut" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Illimité" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Autre" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index a8dee73333feac364d2ecb8f47b6acdba96a83e1..ee1522c0dd99436e1157c71181f575170de92cc4 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: themen \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -56,11 +56,11 @@ msgstr "Aucune action spécifiée" msgid "No configuration specified" msgstr "Aucune configuration spécifiée" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Aucune donnée spécifiée" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Impossible de spécifier la configuration %s" @@ -109,65 +109,65 @@ msgstr "Impossible de déterminer la Base DN" msgid "Please specify the port" msgstr "Veuillez indiquer le port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuration incorrecte" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuration incomplète" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Sélectionnez les groupes" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Sélectionner les classes d'objet" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Sélectionner les attributs" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test de connexion réussi" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test de connexion échoué" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmer la suppression" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s groupe trouvé" msgstr[1] "%s groupes trouvés" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utilisateur trouvé" msgstr[1] "%s utilisateurs trouvés" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Impossible de trouver la fonction souhaitée" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Hôte invalide" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Définit le filtre à appliquer lors d'une tentative de connexion. %%uid remplace le nom d'utilisateur lors de la connexion. Exemple : \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Serveur" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Serveur:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Ajouter une configuration du serveur" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Suppression de la configuration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Hôte" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Utilisateur (Autorisé à consulter l'annuaire)" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN de l'utilisateur client pour lequel la liaison doit se faire, par exemple uid=agent,dc=example,dc=com. Pour un accès anonyme, laisser le DN et le mot de passe vides." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Mot de passe" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pour un accès anonyme, laisser le DN utilisateur et le mot de passe vides." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN racine par ligne" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index 430fc8070a3fdbef0d3f509c1722183a933c400e..86fb4d362468bd1e520e2946b2cf6a368aa2c489 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/fr_CA/files_external.po b/l10n/fr_CA/files_external.po index e98964088555c5aa1742a69b9b24cdefeb2b3678..ce8bf7a2c35aee3209d8ac1f540b4ce35ea92aed 100644 --- a/l10n/fr_CA/files_external.po +++ b/l10n/fr_CA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 52e2c98e0a03611cabd3f0ca95ffb0efee9d1ddb..e1ed2e8fcb0c9bd9859b1e6bef2334f7d4722bb0 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 61de74774f4fe6c7d7b00101edc532a9636407c4..dfdf59747cd42cfa01c6cd349ca2113ec1e60719 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Axustes" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Ficheiro" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Cartafol" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imaxe" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Son" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "hai %n minuto" -msgstr[1] "vai %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "hai %n hora" -msgstr[1] "vai %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoxe" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "onte" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "hai %n día" -msgstr[1] "vai %n días" - -#: js/js.js:1284 -msgid "last month" -msgstr "último mes" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "hai %n mes" -msgstr[1] "vai %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "último ano" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Non foi posíbel enviar o coreo do restablecemento. Póñase en contacto co administrador." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9e2637a567ca88d22bd714716bd16b2faa624c7d..cbb23823c5ebadfdb9a555dc0e98ddd5808cb06f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index cfb1822e3d4d14e989b2c1dd7d2413a5857862ac..2572d6f3aec9e82f4e02484ed580ec8e58c404c0 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Miguel Anxo Bouzada \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Clave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Clave secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome de máquina (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porto (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Rexión (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Secreto da aplicación" msgid "Host" msgstr "Servidor" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de usuario" @@ -148,14 +148,6 @@ msgstr "Secreto do cliente" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome de usuario (obrigatorio)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (obrigatorio)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Rexión (opcional para OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL do punto final da identidade (obrigatorio para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo de espera de peticións HTTP en segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Persoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Gardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: A compatibilidade de cURL en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: A compatibilidade de FTP en PHP non está activada, ou non está instalado. Non é posíbel a montaxe de %s. Consulte co administrador do sistema como instalalo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Dispoñíbel para" msgid "Add storage" msgstr "Engadir almacenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Non hai usuario ou grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os usuarios" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuarios" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activar o almacenamento externo do usuario" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitirlle aos usuarios montar o seguinte almacenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar o certificado raíz" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f0d71adab1cae2cea7bb704a0359a3e55cc5874b..54dba0e48991930d34be976158e33bf732166830 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 08:57+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Certificado SSL incorrecto ou non fiábel" msgid "Couldn't add remote share" msgstr "Non foi posíbel engadir a compartición remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Compartido con vostede" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Compartido con outros" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Compartido por ligazón" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index b837ffaf5350e3a56f41d42476b797ce1161d33c..f8fa423a475747efbcc26ee5bc7ed94db5fe600b 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index e8343e1aa158c8d14c0f9f1c455340f9c464f6ba..6f718c965bb4e61ffc534c4c300d1b3f9c2dc4eb 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +19,33 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Non é posíbel escribir no directorio «config»!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Polo xeral, isto pode ser fixado para permitirlle ao servidor web acceso de escritura ao directorio «config»" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vexa %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Polo xeral, isto pode ser fixado para %spermitirlle ao servidor web acceso de escritura ao directorio «config»%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Testemuña caducada. Recargue a páxina." msgid "Unknown user" msgstr "Usuario descoñecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de usuario da base de datos" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de datos" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Deberá introducir unha conta existente ou o administrador." @@ -197,23 +197,23 @@ msgstr "Deberá introducir unha conta existente ou o administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "O nome e/ou o contrasinal do usuario de MySQL/MariaDB non é correcto" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Produciuse un erro na base de datos: «%s»" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Xa existe o usuario «%s»@«%%» no MySQL/MariaDB" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este usuario do MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Non foi posíbel estabelecer a conexión con Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de Oracle incorrecto" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A orde infractora foi: «%s», nome: %s, contrasinal: %s" @@ -338,68 +338,68 @@ msgstr "Fallou a compartición de %s, non está permitido compartir con ligazón msgid "Share type %s is not valid for %s" msgstr "Non se admite a compartición do tipo %s para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Non é posíbel estabelecer permisos para %s, os permisos superan os permisos concedidos a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Non é posíbel estabelecer permisos para %s, non se atopa o elemento" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Non é posíbel estabelecer a data de caducidade. As comparticións non poden caducar máis aló de %s após de seren compartidas" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Non é posíbel estabelecer a data de caducidade. A data de caducidade está no pasado." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Non se atopou a infraestrutura de compartición %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Non se atopou a infraestrutura de compartición para %s" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Fallou a compartición de %s, a compartición orixinal é do usuario %s" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Fallou a compartición de %s, os permisos superan os permisos concedidos a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Fallou a compartición de %s, non está permitido repetir a compartción" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Fallou a compartición de %s, a infraestrutura de compartición para %s non foi quen de atopar a orixe" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index faf9d64bd439452647531ed8fed5f9b511487ac6..cd696edb8688e99a76cfff4fcce5822770300a22 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "É necesario configurar o correo do usuario antes de poder enviar mensax msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifrado" @@ -327,7 +327,7 @@ msgstr "Debe fornecer un nome de grupo" msgid "deleted {groupName}" msgstr "{groupName} foi eliminado" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfacer" @@ -351,27 +351,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} foi eliminado" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "engadir un grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" @@ -735,11 +735,11 @@ msgstr "Máis" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versión" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Correo" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Escriba un enderezo de correo para permitir a recuperación de contrasinais e recibir notificacións" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imaxe do perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Novo envío" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccione unha nova de ficheiros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Retirar a imaxe" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pola súa conta orixinal." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolla unha imaxe para o perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicación de cifrado non está activada, descifre todos os ficheiros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "As chaves de cifrado foron movidas á copia de seguranza. Se ten algún problema pode restaurar as chaves. Elimineas permanentemente só se está seguro de que é posíbel descifrar correctamente todos os ficheiros." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar as chaves de cifrado" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar as chaves de cifrado" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de acceso" @@ -977,19 +985,19 @@ msgstr "Todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cota por omisión" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Sen límites" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 6721d7bd78a595f73e5439a3f126f89a3ca714fc..6f07d44a91747d59db7f2bcae7dfb54c135bf29e 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-15 01:54-0400\n" -"PO-Revision-Date: 2014-08-14 18:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Non se especificou unha acción" msgid "No configuration specified" msgstr "Non se especificou unha configuración" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Non se especificaron datos" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Non foi posíbel estabelecer a configuración %s" @@ -105,65 +105,65 @@ msgstr "Non se puido determinar o DN base" msgid "Please specify the port" msgstr "Por favor indique un porto" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuración correcta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleccione as clases de obxectos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleccione os atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "A proba de conexión foi satisfactoria" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "A proba de conexión fracasou" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Confirma que quere eliminar a configuración actual do servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar a eliminación" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "Atopouse %s grupo" msgstr[1] "Atopáronse %s grupos" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "Atopouse %s usuario" msgstr[1] "Atopáronse %s usuarios" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Non foi posíbel atopar a función desexada" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Máquina incorrecta" diff --git a/l10n/he/core.po b/l10n/he/core.po index 38a852909c670908977977cf94770d48ddf2c7c9..cb574a30fe56bed49687f663499bf88901501699 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "הגדרות" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "תיקייה" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "שניות" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "לפני %n דקה" -msgstr[1] "לפני %n דקות" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "לפני %n שעה" -msgstr[1] "לפני %n שעות" - -#: js/js.js:1281 -msgid "today" -msgstr "היום" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "אתמול" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "לפני %n יום" -msgstr[1] "לפני %n ימים" - -#: js/js.js:1284 -msgid "last month" -msgstr "חודש שעבר" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "לפני %n חודש" -msgstr[1] "לפני %n חודשים" - -#: js/js.js:1286 -msgid "last year" -msgstr "שנה שעברה" - -#: js/js.js:1287 -msgid "years ago" -msgstr "שנים" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" @@ -388,7 +340,7 @@ msgstr "" #: js/share.js:389 msgid "Share link" -msgstr "" +msgstr "קישור לשיתוף" #: js/share.js:394 msgid "" diff --git a/l10n/he/files.po b/l10n/he/files.po index 99cd7af9288ba6fa89d37b4d44a1a6389cc2786f..9a073a6a03ba2b8bd40dcedbf861b0fe1774fe23 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" @@ -381,7 +381,7 @@ msgstr "קובץ טקסט" #: templates/list.php:12 msgid "New folder" -msgstr "" +msgstr "תיקייה חדשה" #: templates/list.php:13 msgid "Folder" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index ab067d22ac9eb0852f22d27bbbf2b118f7e07831..993cd374adc4561e0a7ef89d2c3991a33d0523db 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "מארח" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "שם משתמש" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "אישי" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "נשמר" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "כל המשתמשים" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "קבוצות" - -#: templates/settings.php:106 -msgid "Users" -msgstr "משתמשים" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "מחיקה" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "הפעלת אחסון חיצוני למשתמשים" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "שורש אישורי אבטחת SSL " -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "ייבוא אישור אבטחת שורש" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 9a77478b590d18a9ff44f844f9a2df06423456fe..1b6a5acf1c0ca0da1d3795e55c8036744e180139 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index c9223a048c2e12fe6f8590866e17606ae9bb6cb3..923f23d0b9a3a12f9583c39c8d21a9fd942da433 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 45c91ae47c780e6b4ff90c9ef1860e7907bd11f5..39e1d68c41a1f2945c059f06e9fcf85c07b7a37c 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "פג תוקף. נא לטעון שוב את הדף." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index a0ebb9d257da983423699d25776fb0cdc6fc2426..0e9e343d037e27921270a643f6d7d0c60df0109b 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "הצפנה" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ביטול" @@ -350,27 +350,27 @@ msgstr "מחיקה" msgid "never" msgstr "לעולם לא" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "הוספת קבוצה" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "יצירת המשתמש נכשלה" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "יותר" msgid "Less" msgstr "פחות" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "גרסא" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "תמונת פרופיל" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ביטול" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "פה" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "שם כניסה" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "מכסת בררת המחדל" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ללא הגבלה" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "אחר" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 45d382cff0ef7c7c0f7d2dd849e7a51c579163f6..6ac17f3951a65344452c21f2ed569e862fd017f2 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "בדיקת החיבור עברה בהצלחה" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "בדיקת החיבור נכשלה" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "אישור המחיקה" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "הוספת הגדרות השרת" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "מארח" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "פורט" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN משתמש" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "סיסמא" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 403d9074eb39694419aedbdc05f8fb37774d4ee9..1a23a67888769c00c92d3a34a45d37a66cd0ffac 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index b1978e7a694fd3d0c0adb04648cbe4e406466956..676da305053525cebfecaf423a8b177d4b9a7979 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 07:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "यक्तिगत" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "उपयोगकर्ता" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 85c8f4807ce538331852913300ce726e66867120..6ee58281f83d551c166afe20888afc60d6dfb2f1 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 08:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 90cd5dfefb4e8774a9d12b76b59c51e5e501a47c..f67760c5c68aa927b72e98698aa73b4fa45b76ae 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +17,33 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index c22b471e9482eedca3ad1c9fd46c97f5704055bb..b4f59c9f0c989468b3e3e98491a4885c6c385579 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "और अधिक" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "रद्द करें " -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 98e1f16b467ebf277d1143cb4524006fa1dcb353..7c39370adfd41c80d505ad42bc2f7e823f7d8673 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 07:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/hi_IN/core.po b/l10n/hi_IN/core.po index 715360c1aa4cc9cbfba6faace3f5a5d6c28dc185..39c71f04bb41d8c398c345e9ef6f1c92f9ac4127 100644 --- a/l10n/hi_IN/core.po +++ b/l10n/hi_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hi_IN/files_external.po b/l10n/hi_IN/files_external.po index 88a668e8c1f2a01438d7191619de6c1a7098091d..8f4ddb086484c1a30b88e8027b64bcefedeb55ef 100644 --- a/l10n/hi_IN/files_external.po +++ b/l10n/hi_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hi_IN/settings.po b/l10n/hi_IN/settings.po index c6fd65a34db79967787db4e5a1af9ad8b4051e5b..fda98d86b89387c4d3d6bd2d6a06e12856d61e00 100644 --- a/l10n/hi_IN/settings.po +++ b/l10n/hi_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (India) (http://www.transifex.com/projects/p/owncloud/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index f97ca7798b2c757ac62512c6f1351c22fccc72bb..98c1958b46563dad0be29686ca618a03fabc86f8 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,82 +148,30 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Postavke" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "mapa" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundi prije" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "danas" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "jučer" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "prošli mjesec" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "prošlu godinu" - -#: js/js.js:1287 -msgid "years ago" -msgstr "godina" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 466a7a766c735eda9a19cb5691314843738ab974..03531809080afa08f23620697a16784e54056409 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 221ff40f15fa4dcc15d7e3319c56c80012475b0d..47d62681f8c16b1f54b79d463874acbbc719d18a 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: Dubravko Penezic \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Ključ" msgid "Secret" msgstr "Lozinka" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "Tajni ključ" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Poslužitelj" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Korisničko ime" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Osobno" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Snimljeno" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupe" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Korisnici" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index c1805867d9043972f2b0b88e023ecffe9b1bd483..dec199a81ff7c53e88576fdbbc3e2f5b1b5e4170 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 252ce6d1463caa85ee71699bfdad81609e1fcd57..e16716614a29ad33b11809af1eefa69ede7d7166 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 777e5738f70fcf6984fad37e10affdafd4f68619..f10b787c7e87a202c38bb16cf7c0081c0c4d0f85 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 17c04d6b14405dd4d7a8cc0b5a1b42620351ec84..716d9e6c90d6b99750dea0af4a0ad881d49985d5 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrati" @@ -349,27 +349,27 @@ msgstr "Obriši" msgid "never" msgstr "nikad" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "više" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Odustani" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prijava" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "standardni kvota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "ostali" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 46fb84a2b57725a5cbd72672d38d9153fc85a3f1..98d888748ee2f54001bcff42529b75ca220f2bd0 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-15 21:31+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 78bbe5c83a8837a9d7899de7771a3c5e1a8fcd1b..d3bdea111a4589010d836862a59f66313e7aba1e 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -154,78 +154,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Beállítások" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fájl" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mappa" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Kép" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Hang" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pár másodperce" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n perccel ezelőtt" -msgstr[1] "%n perccel ezelőtt" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n órával ezelőtt" -msgstr[1] "%n órával ezelőtt" - -#: js/js.js:1281 -msgid "today" -msgstr "ma" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "tegnap" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n nappal ezelőtt" -msgstr[1] "%n nappal ezelőtt" - -#: js/js.js:1284 -msgid "last month" -msgstr "múlt hónapban" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n hónappal ezelőtt" -msgstr[1] "%n hónappal ezelőtt" - -#: js/js.js:1286 -msgid "last year" -msgstr "tavaly" - -#: js/js.js:1287 -msgid "years ago" -msgstr "több éve" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Visszaállítási e-mail nem küldhető. Kérjük, lépjen kapcsolatba a rendszergazdával." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 16df0c810303c19f305739e00692780af0e9a5d8..33b80f25d8e356c2a6a2d455978f35c263e47cb0 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,12 +77,12 @@ msgstr "A kiinduló állomány érvénytelen" #: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" +msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat!" #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "A fájl meghaladja kvótádat %s-kal" +msgstr "A fájl ennyivel meghaladja a kvótáját: %s" #: ajax/newfile.php:141 #, php-format @@ -107,7 +107,7 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." #: ajax/upload.php:35 msgid "Invalid Token" -msgstr "Hibás mappacím" +msgstr "Hibás token" #: ajax/upload.php:79 msgid "No file was uploaded. Unknown error" @@ -162,7 +162,7 @@ msgstr "Érvénytelen mappa." #: appinfo/app.php:11 js/filelist.js:25 msgid "Files" -msgstr "Fájlok" +msgstr "Fájlkezelő" #: appinfo/app.php:27 msgid "All files" @@ -187,7 +187,7 @@ msgstr "A feltöltést megszakítottuk." #: js/file-upload.js:418 msgid "Could not get result from server." -msgstr "A kiszolgálótól nem kapható meg az eredmény." +msgstr "A kiszolgálótól nem kapható meg a művelet eredménye." #: js/file-upload.js:502 msgid "" @@ -375,7 +375,7 @@ msgstr "Új" #: templates/list.php:8 msgid "New text file" -msgstr "Új szöveges file" +msgstr "Új szövegfájl" #: templates/list.php:9 msgid "Text file" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f1635fe0acd95d4c85cf6763398bcc0f7bd9ea9f..852b6724426cdebda876f7712d5338b6849843a7 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Kiszolgáló" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Felhasználónév" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Személyes" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Elmentve" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Tároló becsatolása" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Az összes felhasználó" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Csoportok" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Felhasználók" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Törlés" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Külső tárolók engedélyezése a felhasználók részére" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL tanúsítványok" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "SSL tanúsítványok importálása" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0cc8c78bf0f45c7df93acdb78e77a9b7dee9fa3b..3492a7198e9fcba135ce2fe51f74e9c1ba25309c 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 09:20+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index a119ac0eb4ce97d94aa0b7f401994f83df758526..2a5441a1826292c0ab084e83e3bcf680a7635d0a 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index fa7e9df7635db57b68e25aaf451302e8032c51a5..ccc2b4035819597c4051ac80ba5281dfab76ab75 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -6,14 +6,14 @@ # beni1999 , 2014 # David Szilagyi , 2013 # ebela , 2013 -# Laszlo Tornoci , 2013 +# Laszlo Tornoci , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nem írható a \"config\" könyvtár!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy írási jogot adunk a webszervernek a config könyvtárra." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" -msgstr "" +msgstr "Lásd %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek a config könyvtárra%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "A példabeállítások vannak beállítva" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Úgy tűnik a példakonfigurációt próbálja ténylegesen használni. Ez nem támogatott, és működésképtelenné teheti a telepítést. Kérjük olvassa el a dokumentációt és azt követően változtasson a config.php-n!" #: private/app.php:374 msgid "Help" @@ -79,7 +79,7 @@ msgstr "Adminsztráció" msgid "" "App \\\"%s\\\" can't be installed because it is not compatible with this " "version of ownCloud." -msgstr "" +msgstr " \\\"%s\\\" alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen változatával." #: private/app.php:1130 msgid "No app name specified" @@ -104,7 +104,7 @@ msgstr "Az alkalmazás mappája már létezik" #: private/installer.php:90 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" +msgstr "Nem lehetett létrehozni az alkalmazás mappáját. Kérem ellenőrizze a jogosultságokat. %s" #: private/installer.php:235 msgid "No source specified when installing app" @@ -139,7 +139,7 @@ msgstr "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett pro msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával." +msgstr "Az alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen verziójával." #: private/installer.php:326 msgid "" @@ -151,7 +151,7 @@ msgstr "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\nt msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval." +msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-kiszolgálón feltüntetett verzióval." #: private/json.php:29 msgid "Application is not enabled" @@ -169,12 +169,12 @@ msgstr "A token lejárt. Frissítse az oldalt." msgid "Unknown user" msgstr "Ismeretlen felhasználó" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s adja meg az adatbázist elérő felhasználó login nevét." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s adja meg az adatbázis nevét." @@ -190,32 +190,32 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" - -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +msgstr "A MySQL/MariaDB felhasználónév és/vagy jelszó nem megfelelő" + +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Adatbázis hiba: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -225,30 +225,30 @@ msgstr "A hibát ez a parancs okozta: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "A MySQL/MariaDB felhasználó '%s'@'localhost' már létezik." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "A MySQL/MariaDB felhasználó '%s'@'%%' már létezik." #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Az Oracle kapcsolat nem hozható létre" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Az Oracle felhasználói név és/vagy jelszó érvénytelen" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" @@ -290,122 +290,122 @@ msgstr "%s megosztása sikertelen, mert a fájl nem létezik" #: private/share/share.php:501 #, php-format msgid "You are not allowed to share %s" -msgstr "" +msgstr "Önnek nincs jogosultsága %s megosztására" #: private/share/share.php:531 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó az állomány tulajdonosa" #: private/share/share.php:537 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem létezik" #: private/share/share.php:546 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem tagja egyik olyan csoportnak sem, aminek %s tagja" #: private/share/share.php:559 private/share/share.php:587 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert ez már meg van osztva %s-vel" #: private/share/share.php:567 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s csoport nem létezik" #: private/share/share.php:574 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó nem tagja a %s csoportnak" #: private/share/share.php:628 msgid "" "You need to provide a password to create a public link, only protected links" " are allowed" -msgstr "" +msgstr "Meg kell adnia egy jelszót is, mert a nyilvános linkek csak jelszóval védetten használhatók" #: private/share/share.php:654 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a linkekkel történő megosztás nincs engedélyezve" #: private/share/share.php:661 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "A %s megosztási típus nem érvényes %s-re" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a megadottak túllépik a %s-re érvényes jogosultságokat" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a kérdéses állomány nem található" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" -msgstr "" +msgstr "Nem lehet beállítani a lejárati időt. A megosztások legfeljebb ennyi idővel járhatnak le a létrehozásukat követően: %s" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" -msgstr "Nem lehet beállítani a lejárati időt mivel már elmúlt." +msgstr "Nem lehet beállítani a lejárati időt, mivel a megadott lejárati időpont már elmúlt." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Az %s megosztási alrendszernek támogatnia kell az OCP\\Share_Backend interface-t" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "A %s megosztási alrendszer nem található" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "%s megosztási alrendszere nem található" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s felhasználó az eredeti megosztó" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a jogosultságok túllépik azt, ami %s rendelkezésére áll" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a megosztás továbbadása nincs engedélyezve" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s megosztása nem sikerült, mert %s megosztási alrendszere nem találja" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s megosztása nem sikerült, mert a fájl nem található a gyorsítótárban" #: private/tags.php:183 #, php-format @@ -464,7 +464,7 @@ msgstr "több éve" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "A felhasználónévben csak a következő karakterek fordulhatnak elő: \"a-z\", \"A-Z\", \"0-9\", és \"_.@-\"" #: private/user/manager.php:249 msgid "A valid username must be provided" @@ -480,14 +480,14 @@ msgstr "Ez a bejelentkezési név már foglalt" #: private/util.php:427 msgid "No database drivers (sqlite, mysql, or postgresql) installed." -msgstr "" +msgstr "Nincs telepítve adatbázis-meghajtóprogram (sqlite, mysql vagy postgresql)." #: private/util.php:434 #, php-format msgid "" "Permissions can usually be fixed by %sgiving the webserver write access to " "the root directory%s." -msgstr "" +msgstr "Az elérési problémák rendszerint megoldhatók azzal, ha a %swebszervernek írásjogot adunk a gyökérkönyvtárra%s." #: private/util.php:441 msgid "Cannot write into \"config\" directory" @@ -495,41 +495,41 @@ msgstr "Nem írható a \"config\" könyvtár" #: private/util.php:455 msgid "Cannot write into \"apps\" directory" -msgstr "" +msgstr "Nem írható az \"apps\" könyvtár" #: private/util.php:456 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek az app könyvtárra%s, vagy letiltjuk a config fájlban az appstore használatát." #: private/util.php:470 #, php-format msgid "Cannot create \"data\" directory (%s)" -msgstr "" +msgstr "Nem sikerült létrehozni a \"data\" könyvtárt (%s)" #: private/util.php:471 #, php-format msgid "" "This can usually be fixed by giving the " "webserver write access to the root directory." -msgstr "" +msgstr "Ez rendszerint úgy oldható meg, hogy írásjogot adunk a webszervernek a gyökérkönyvtárra." #: private/util.php:487 #, php-format msgid "Setting locale to %s failed" -msgstr "" +msgstr "A lokalizáció %s-re való állítása nem sikerült" #: private/util.php:490 msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Kérjük állítsa be a következő lokalizációk valamelyikét a rendszeren és indítsa újra a webszervert!" #: private/util.php:494 msgid "Please ask your server administrator to install the module." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy telepítse a modult!" #: private/util.php:498 private/util.php:505 private/util.php:512 #: private/util.php:526 private/util.php:533 private/util.php:540 @@ -537,94 +537,94 @@ msgstr "" #: private/util.php:576 #, php-format msgid "PHP module %s not installed." -msgstr "" +msgstr "A %s PHP modul nincs telepítve." #: private/util.php:568 #, php-format msgid "PHP %s or higher is required." -msgstr "" +msgstr "PHP %s vagy ennél újabb szükséges." #: private/util.php:569 msgid "" "Please ask your server administrator to update PHP to the latest version. " "Your PHP version is no longer supported by ownCloud and the PHP community." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy frissítse a PHP-t újabb változatra! Ezt a PHP változatot már nem támogatja az ownCloud és a PHP fejlesztői közösség." #: private/util.php:587 msgid "" "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Be van állítva a PHP Safe Mode. Az ownCloud megfelelő működéséhez szükséges, hogy ez ki legyen kapcsolva." #: private/util.php:588 msgid "" "PHP Safe Mode is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "A PHP Safe Mode egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!" #: private/util.php:595 msgid "" "Magic Quotes is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Be van álltva a Magic Quotes. Az ownCloud megfelelő működéséhez szükséges, hogy ez le legyen tiltva." #: private/util.php:596 msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "A Magic Quotes egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!" #: private/util.php:610 msgid "PHP modules have been installed, but they are still listed as missing?" -msgstr "" +msgstr "A PHP modulok telepítve vannak, de a listában mégsincsenek felsorolva?" #: private/util.php:611 msgid "Please ask your server administrator to restart the web server." -msgstr "" +msgstr "Kérje meg a rendszergazdát, hogy indítsa újra a webszervert!" #: private/util.php:641 msgid "PostgreSQL >= 9 required" -msgstr "" +msgstr "PostgreSQL >= 9 szükséges" #: private/util.php:642 msgid "Please upgrade your database version" -msgstr "Kérlek frissítsd az adatbázisodat" +msgstr "Kérem frissítse az adatbázis-szoftvert!" #: private/util.php:649 msgid "Error occurred while checking PostgreSQL version" -msgstr "" +msgstr "Hiba történt a PostgreSQL verziójának ellenőrzése közben" #: private/util.php:650 msgid "" "Please make sure you have PostgreSQL >= 9 or check the logs for more " "information about the error" -msgstr "" +msgstr "Kérjük gondoskodjon róla, hogy a PostgreSQL legalább 9-es verziójú legyen, vagy ellenőrizze a naplófájlokat, hogy mi okozta a hibát!" #: private/util.php:715 msgid "" "Please change the permissions to 0770 so that the directory cannot be listed" " by other users." -msgstr "" +msgstr "Kérjük módosítsa a könyvtár elérhetőségi engedélybeállítását 0770-re, hogy a tartalmát más felhasználó ne listázhassa!" #: private/util.php:724 #, php-format msgid "Data directory (%s) is readable by other users" -msgstr "" +msgstr "Az adatkönyvtár (%s) más felhasználók számára is olvasható " #: private/util.php:745 #, php-format msgid "Data directory (%s) is invalid" -msgstr "" +msgstr "Érvénytelen a megadott adatkönyvtár (%s) " #: private/util.php:746 msgid "" "Please check that the data directory contains a file \".ocdata\" in its " "root." -msgstr "" +msgstr "Kérjük ellenőrizze, hogy az adatkönyvtár tartalmaz a gyökerében egy \".ocdata\" nevű állományt!" #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "" +msgstr "Nem sikerült %d típusú zárolást elérni itt: \"%s\"." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 9ac5a21a446b58825faf933125c6127ca78174b5..a91068c2ce504c7cfb2bf9608804e0814b563b07 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Érvénytelen adatot adott meg erre: %s" #: admin/controller.php:73 msgid "Saved" @@ -32,16 +32,16 @@ msgstr "Elmentve" #: admin/controller.php:90 msgid "test email settings" -msgstr "Teszt email beállítások" +msgstr "e-mail beállítások ellenőrzése" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "Amennyiben megérkezett ez az email akkor a beállítások megfelelők" +msgstr "Amennyiben megérkezett ez az e-mail akkor a beállítások megfelelők." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Hiba történt az e-mail küldésekor. Kérjük ellenőrizze a beállításokat!" #: admin/controller.php:99 msgid "Email sent" @@ -49,13 +49,13 @@ msgstr "Az e-mailt elküldtük" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést." #: admin/controller.php:116 templates/admin.php:368 msgid "Send mode" msgstr "Küldési mód" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Titkosítás" @@ -90,27 +90,27 @@ msgstr "A csoport nem hozható létre" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "A fájlok titkosítását sikeresen megszüntettük." #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!" #: ajax/deletekeys.php:14 msgid "Encryption keys deleted permanently" -msgstr "" +msgstr "A titkosítási kulcsait véglegesen töröltük." #: ajax/deletekeys.php:16 msgid "" "Couldn't permanently delete your encryption keys, please check your " "owncloud.log or ask your administrator" -msgstr "" +msgstr "A titkosítási kulcsait nem sikerült véglegesen törölni, kérjük ellenőrizze az owncloud.log naplófájlt, vagy forduljon a rendszergazdához!" #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." @@ -134,13 +134,13 @@ msgstr "A felhasználó nem törölhető" #: ajax/restorekeys.php:14 msgid "Backups restored successfully" -msgstr "" +msgstr "A kulcsokat sikereresen visszaállítottuk a mentésekből." #: ajax/restorekeys.php:23 msgid "" "Couldn't restore your encryption keys, please check your owncloud.log or ask" " your administrator" -msgstr "" +msgstr "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -191,7 +191,7 @@ msgstr "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és pró msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett." +msgstr "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük." #: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" @@ -199,11 +199,11 @@ msgstr "Nem sikerült megváltoztatni a jelszót" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Megbízható tartomány hozzáadása" #: js/admin.js:146 msgid "Sending..." @@ -215,7 +215,7 @@ msgstr "Felhasználói leírás" #: js/apps.js:54 msgid "Admin Documentation" -msgstr "Adminisztrátori Dokumentáció" +msgstr "Adminisztrátori leírás" #: js/apps.js:82 msgid "Update to {appversion}" @@ -223,7 +223,7 @@ msgstr "Frissítés erre a verzióra: {appversion}" #: js/apps.js:90 msgid "Uninstall App" -msgstr "" +msgstr "Az alkalmazás eltávolítása" #: js/apps.js:96 js/apps.js:158 js/apps.js:191 msgid "Disable" @@ -231,7 +231,7 @@ msgstr "Letiltás" #: js/apps.js:96 js/apps.js:167 js/apps.js:184 js/apps.js:215 msgid "Enable" -msgstr "engedélyezve" +msgstr "Engedélyezés" #: js/apps.js:147 msgid "Please wait...." @@ -239,11 +239,11 @@ msgstr "Kérem várjon..." #: js/apps.js:155 js/apps.js:156 js/apps.js:182 msgid "Error while disabling app" -msgstr "Hiba az alkalmazás kikapcsolása közben" +msgstr "Hiba az alkalmazás letiltása közben" #: js/apps.js:181 js/apps.js:210 js/apps.js:211 msgid "Error while enabling app" -msgstr "Hiba az alalmazás engedélyezése közben" +msgstr "Hiba az alkalmazás engedélyezése közben" #: js/apps.js:220 msgid "Updating...." @@ -251,7 +251,7 @@ msgstr "Frissítés folyamatban..." #: js/apps.js:223 msgid "Error while updating app" -msgstr "Hiba történt a programfrissítés közben" +msgstr "Hiba történt az alkalmazás frissítése közben" #: js/apps.js:223 js/apps.js:236 msgid "Error" @@ -267,15 +267,15 @@ msgstr "Frissítve" #: js/apps.js:233 msgid "Uninstalling ...." -msgstr "" +msgstr "Eltávolítás ..." #: js/apps.js:236 msgid "Error while uninstalling app" -msgstr "" +msgstr "Hiba történt az alkalmazás eltávolítása közben" #: js/apps.js:237 templates/apps.php:56 msgid "Uninstall" -msgstr "" +msgstr "Eltávolítás" #: js/personal.js:256 msgid "Select a profile picture" @@ -303,7 +303,7 @@ msgstr "Erős jelszó" #: js/personal.js:310 msgid "Decrypting files... Please wait, this can take some time." -msgstr "A fájlok titkosítástól történő mentesítése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ..." +msgstr "A fájlok titkosításának megszüntetése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ..." #: js/personal.js:324 msgid "Delete encryption keys permanently." @@ -315,21 +315,21 @@ msgstr "A titkosítási kulcsok visszaállítása." #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" -msgstr "" +msgstr "Ezt nem sikerült törölni: {objName}" #: js/users/groups.js:94 js/users/groups.js:202 msgid "Error creating group" -msgstr "" +msgstr "Hiba történt a csoport létrehozása közben" #: js/users/groups.js:201 msgid "A valid group name must be provided" -msgstr "" +msgstr "Érvényes csoportnevet kell megadni" #: js/users/groups.js:229 msgid "deleted {groupName}" -msgstr "" +msgstr "törölve: {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "visszavonás" @@ -353,29 +353,29 @@ msgstr "Törlés" msgid "never" msgstr "soha" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" -msgstr "" +msgstr "törölve: {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "csoport hozzáadása" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" +msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezik" #: personal.php:50 personal.php:51 msgid "__language_name__" @@ -434,7 +434,7 @@ msgstr "Biztonsági figyelmeztetés" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." +msgstr "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék." #: templates/admin.php:68 msgid "" @@ -464,24 +464,24 @@ msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmu msgid "" "PHP is apparently setup to strip inline doc blocks. This will make several " "core apps inaccessible." -msgstr "" +msgstr "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz." #: templates/admin.php:98 msgid "" "This is probably caused by a cache/accelerator such as Zend OPcache or " "eAccelerator." -msgstr "" +msgstr "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza." #: templates/admin.php:109 msgid "Database Performance Info" -msgstr "" +msgstr "Információ az adatbázis teljesítményéről" #: templates/admin.php:112 msgid "" "SQLite is used as database. For larger installations we recommend to change " "this. To migrate to another database use the command line tool: 'occ db" ":convert-type'" -msgstr "" +msgstr "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'" #: templates/admin.php:123 msgid "Module 'fileinfo' missing" @@ -491,7 +491,7 @@ msgstr "A 'fileinfo' modul hiányzik" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." +msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése." #: templates/admin.php:137 msgid "Your PHP version is outdated" @@ -502,18 +502,18 @@ msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." +msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehetséges, hogy ez a telepítés majd nem működik megfelelően." #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "A PHP-karakterkészlet nem UTF-8-ra van állítva" #: templates/admin.php:154 msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "" +msgstr "A PHP-karakterkészlet nem UTF-8-ra van állítva. Ez komoly problémákat okozhat, ha valaki olyan fájlnevet használ, amiben nem csupán ASCII karakterek fordulnak elő. Feltétlenül javasoljuk, hogy a php.ini-ben a 'default_charset' paramétert állítsa 'UTF-8'-ra!" #: templates/admin.php:165 msgid "Locale not working" @@ -521,20 +521,20 @@ msgstr "A nyelvi lokalizáció nem működik" #: templates/admin.php:170 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." +msgstr "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at." #: templates/admin.php:174 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." +msgstr "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben." #: templates/admin.php:178 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" +msgstr "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s" #: templates/admin.php:190 msgid "Internet connection not working" @@ -547,11 +547,11 @@ msgid "" "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." +msgstr "A kiszolgálónak nem működik az internetkapcsolata. Ez azt jelenti, hogy bizonyos funkciók nem fognak működni, mint pl. külső tárolók becsatolása, automatikus frissítési értesítések vagy más fejlesztők /3rd party/ által írt alkalmazások telepítése. Az állományok távolról történő elérése valamint e-mail értesítések küldése szintén lehet, hogy nem fog működni. Javasoljuk, hogy engedélyezze a kiszolgáló internetelérését, ha az összes funkciót szeretné használni." #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "URL-képzés az értesítő e-mailekben" #: templates/admin.php:206 #, php-format @@ -560,7 +560,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -737,11 +737,11 @@ msgstr "Több" msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verzió" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the spread the word!" -msgstr "" +msgstr "Ha támogatni kívánja a projektet\n csatlakozzon a fejlesztőkhöz\n vagy\n terjessze a program hírét!" #: templates/personal.php:31 msgid "Show First Run Wizard again" msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" -#: templates/personal.php:39 +#: templates/personal.php:40 #, php-format msgid "You have used %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Teljes név" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Az Ön e-mail címe" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Adja meg az e-mail címét, hogy vissza tudja állítani a jelszavát, illetve, hogy rendszeres jelentéseket kaphasson!" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilkép" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Új feltöltése" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Új kiválasztása a Fájlokból" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "A kép eltávolítása" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "A kép png vagy jpg formátumban legyen. Legjobb, ha négyzet alakú, de később még átszabható." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "A kép az eredeti bejelentkezési adatai alapján lett beállítva." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Mégsem" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Válasszuk ki profilképnek" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A titkosító alkalmazás a továbbiakban nincs engedélyezve, kérem állítsa vissza az állományait titkostásmentes állapotba!" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Mentesíti a titkosítástól az összes fájlt" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "A titkosító kulcsai egy mentési területre kerültek. Ha valami hiba történik, még vissza tudja állítani a titkosító kulcsait. Csak akkor törölje őket véglegesen, ha biztos benne, hogy minden állományt sikerült a visszaállítani a titkosított állapotából." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "A titkosító kulcsok visszaállítása" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "A titkosító kulcsok törlése" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Bejelentkezési név" @@ -979,19 +987,19 @@ msgstr "Mindenki" msgid "Admins" msgstr "Adminok" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Alapértelmezett kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Korlátlan" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Más" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 3552a13abc678531b20b3c7347c5c3f288467a45..527b525c9c767c6125de2b9769258a2314a34883 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 20:41+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Nincs megadva parancs" msgid "No configuration specified" msgstr "Nincs megadva konfiguráció" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nincs adat megadva" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "A(z) %s konfiguráció nem állítható be" @@ -105,65 +105,65 @@ msgstr "nem sikerült azonosítani az alap/Base/ DN-t" msgid "Please specify the port" msgstr "Add meg a portot" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguráció OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguráió hibás" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguráció nincs befejezve" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Csoportok kiválasztása" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Objektumosztályok kiválasztása" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Attribútumok kiválasztása" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "A kapcsolatellenőrzés eredménye: sikerült" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "A törlés megerősítése" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s csoport van" msgstr[1] "%s csoport van" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s felhasználó van" msgstr[1] "%s felhasználó van" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "A kívánt funkció nem található" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Érvénytelen gépnév" @@ -337,7 +337,7 @@ msgstr "Folytatás" #: templates/settings.php:7 msgid "Expert" -msgstr "Gyakorlott" +msgstr "Profi" #: templates/settings.php:8 msgid "Advanced" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 45a83849b2debe9f59ee2c655af0ef842616c8f1..d19915f9a3d7c09fc4de3f12e2e0aefd3c17a3c9 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 5cef6313b61246eb39695480a4928352871b7617..56a2cb915a427c74de26f722cc46ac9319a9718f 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6e104fdb6bc43dab5d63e85c55d59b870fae10af..148341fabdd769376205b0b5d925bca9b11a78e8 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ջնջել" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 62020400669e7ff0d1c0f0d417249d79f9708737..ae1ebe8bf125159c396055ab333f931115bad86b 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 8e01f3d3d6e285e2e5fca5530e80479415355557..5750586bac31160b2598ce21512179cfb90b2c3d 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Ջնջել" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Այլ" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index f4442a4bb0836751d1a40062b677d98b3cb984fe..9ce9faf9b97b44cc15853ef1b2a5db6985ed0622 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,78 +149,30 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configurationes" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagine" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Salveguardante..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secundas passate" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuta passate" -msgstr[1] "%n minutas passate" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hora passate" -msgstr[1] "%n horas passate" - -#: js/js.js:1281 -msgid "today" -msgstr "hodie" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "heri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n die ante" -msgstr[1] "%n dies ante" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultime mense" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mense ante" -msgstr[1] "%n menses ante" - -#: js/js.js:1286 -msgid "last year" -msgstr "ultime anno" - -#: js/js.js:1287 -msgid "years ago" -msgstr "annos passate" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 473aeaa7ebaf5e4023d87f308dd935cda1b5dbea..07e9fb2e079ef424db440de9b7f66e304573028c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 11e736d95aad40073ab243e986058c2738842091..d08920bc9098215ca20c68586bb71324db61b978 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nomine de usator" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usatores" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Deler" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index a659be941d1e5b3202116b5fea53a9611c877765..f79de51cded90fcfd294a36f8e808429e69c3cc2 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index fdf22361db8114d4254e8ae5e6ce5ccdf35cabe3..f60b031cbe6b2c324663ad0bb4ca1b7cd5ba4379 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3057c78f49cbdbf6c5f02ab6e8d68cf5761e6489..cf8c7b8b25edbea07930559023b84f77431a8f27 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index d4b46db7d79b349aac287fb855f139ae8877cdea..1c37052085ed9d8a89e357bcb78a1122dd8b2624 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Deler" msgid "never" msgstr "nunquam" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "Plus" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagine de profilo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancellar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Linguage" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota predeterminate" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altere" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 5579533bf7230b7ec629ccfc8319ac378c8200a1..df653940cb575b4528fcc412784aefaf5e2bfd2a 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Contrasigno" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 15df8ec920292d6431dfcfff966f2936cd230284..1ecc49ffac8f1162b53469dbf83b58f4d7755f82 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,74 +149,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Berkas" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "gambar" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "beberapa detik yang lalu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n menit yang lalu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n jam yang lalu" - -#: js/js.js:1281 -msgid "today" -msgstr "hari ini" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "kemarin" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n hari yang lalu" - -#: js/js.js:1284 -msgid "last month" -msgstr "bulan kemarin" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n bulan yang lalu" - -#: js/js.js:1286 -msgid "last year" -msgstr "tahun kemarin" - -#: js/js.js:1287 -msgid "years ago" -msgstr "beberapa tahun lalu" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 0c9d436a977b5c0a05327866a18a27185f967b8f..435ccaae6d3f90d8518e2d54a81b56b6cb011e44 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 777e4ec6341480ef2ef2435fdcdd2a2124fb694e..d2bd50b87a06892dc31e1193953d6a9b6ffeb073 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (tambahan)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (tambahan)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Wilayah (tambahan)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nama Pengguna" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nama pengguna (dibutuhkan)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Pribadi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Disimpan" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Catatan: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "dan" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Catatan: Dukungan cURL di PHP tidak diaktifkan atau belum diinstal. Mengaitkan %s tidak dimungkinkan. Silakan tanyakan ke administrator sistem Anda untuk menginstalnya." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Catatan: Dukungan FTP di PHP tidak diaktifkan atau belum diinstal. Mengaitkan %s tidak dimungkinkan. Silakan tanyakan ke administrator sistem Anda untuk menginstalnya." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Tersedia untuk" msgid "Add storage" msgstr "Tambahkan penyimpanan" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Tidak ada pengguna dan grup" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Semua Pengguna" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grup" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Pengguna" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Hapus" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktifkan Penyimpanan Eksternal Pengguna" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Sertifikat root SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Impor Sertifikat Root" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index f10d4e2f77e1e7b26db5afa7aa326d4b0c192b28..fe19bd6548391d76d5ea72e95b73af4d69f07d9f 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Dibagikan dengan Anda" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Dibagikan dengan lainnya" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Dibagikan dengan tautan" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index a49e09abda144dfbc9c3dc2aec00187aa5f45f57..72d3624089c6a4ca05c2aef5ba1fb993dd06b832 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 84ba835d2aede597552d7436a85d139552eeda0e..230c2a94930cb5c3598090a8015813ac5af6a62e 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s masukkan nama pengguna basis data." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s masukkan nama basis data." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nama pengguna dan/atau sandi MySQL tidak sah: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." @@ -195,23 +195,23 @@ msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Galat Basis Data: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Koneksi Oracle tidak dapat dibuat" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nama pengguna dan/atau sandi Oracle tidak sah" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 27abd7d33b02dfb9863bfde02e7596c8e6c5b038..7e22d2d097bf29d1cfe51e36adcd8bac927782fc 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,7 +52,7 @@ msgstr "Anda perlu menetapkan email pengguna Anda sebelum dapat mengirim email p msgid "Send mode" msgstr "Modus kirim" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Enkripsi" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "urungkan" @@ -350,27 +350,27 @@ msgstr "Hapus" msgid "never" msgstr "tidak pernah" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "tambah grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada" @@ -734,11 +734,11 @@ msgstr "Lainnya" msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versi" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Sandi" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nama Lengkap" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Isikan alamat email untuk mengaktifkan pemulihan sandi dan menerima notifikasi" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Unggah baru" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Pilih baru dari Berkas" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Hapus gambar" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avatar disediakan oleh akun asli Anda." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Pilih sebagai gambar profil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Sandi masuk" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Deskripsi semua Berkas" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nama Masuk" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota default" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Tak terbatas" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Lainnya" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 27369550cb90fa45c4f1c59bcab534c7e39d70e7..78c575b006fcffb054d7fc65c9b197f67ca4e72f 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Pilih grup" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Tes koneksi sukses" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Tes koneksi gagal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmasi Penghapusan" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Tambah Konfigurasi Server" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol dapat tidak ditulis, kecuali anda menggunakan SSL. Lalu jalankan dengan ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Sandi" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Untuk akses anonim, biarkan DN dan Kata sandi kosong." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Satu Base DN per baris" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan" diff --git a/l10n/io/core.po b/l10n/io/core.po index 8e1cb420ccce1b2ec8ba357afe7326614f74beda..d03b8e9583faddc3b404fbda877e05d0bcae7423 100644 --- a/l10n/io/core.po +++ b/l10n/io/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/io/files_external.po b/l10n/io/files_external.po index cd3cc3c3d28a53bbc583eee6785626d4e1f34d0e..d2496f37b3b3a74133e543fa97dcb94f083cdfeb 100644 --- a/l10n/io/files_external.po +++ b/l10n/io/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-29 01:54-0400\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/io/settings.po b/l10n/io/settings.po index 5de41a4b122626d94e64ee81c4357e9287a127b7..427477f0ed2d5ae81b69ce9238afaf9c192c13c7 100644 --- a/l10n/io/settings.po +++ b/l10n/io/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ido (http://www.transifex.com/projects/p/owncloud/language/io/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 0cb045898dd2fb41c8edc91676df2dabee7776f1..b9be75d469b2959b012aba600e0388c71a55228b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,78 +149,30 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Stillingar" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mappa" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sek." - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "í dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "í gær" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "síðasta mánuði" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "síðasta ári" - -#: js/js.js:1287 -msgid "years ago" -msgstr "einhverjum árum" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index fa9da711ffa4dab29a301943813720079a372d6d..1303bfb0a2c28f6e489d23add99ee885d4d46432 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 46edfbde3d5a53371dc9d8b9e22a005e08f6b894..f420765b45bbce2ec3efc1dde7bdaa5fb8f075cb 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Netþjónn" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Notendanafn" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Um mig" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Allir notendur" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Hópar" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Notendur" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eyða" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Virkja ytra gagnasvæði notenda" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rótar skilríki" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Flytja inn rótar skilríki" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 2709cf30737d9dcac2ce4fe709176d07ac8e84b5..ef31bd75ad3b5e846f9d798c4d60a8532c1ea392 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index c5c502ebc46353730e72aa335e327c46203c5235..a2125cc5705a70080b5e4d9e635cb26a325893e5 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 634162f1be2add4e2fe7e8a20e3c7dc533d6f381..8d69cac67218c85d87ab1fff5481a02c11bc6ff7 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 4675ecdd0e1774abe6c610594a21ab0346e834b2..823fa205cd651a415e61d88f1811579f46d5e9f3 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Dulkóðun" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "afturkalla" @@ -350,27 +350,27 @@ msgstr "Eyða" msgid "never" msgstr "aldrei" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Meira" msgid "Less" msgstr "Minna" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Netfang" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Hætta við" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ótakmarkað" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annað" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 5964b6a0b0ba3cf4017ac6207eb41eb5ac41d093..982ec7be772e38143b63cd1fa8940cae54816d6c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Netþjónn" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Lykilorð" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index a64ecd3913f163dfddcd14715e760fa0584e091f..8f31fc1d50a6a7a28d9164509d3bea6969f16f23 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -152,78 +152,30 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "File" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Cartella" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Immagine" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secondi fa" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuto fa" -msgstr[1] "%n minuti fa" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ora fa" -msgstr[1] "%n ore fa" - -#: js/js.js:1281 -msgid "today" -msgstr "oggi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ieri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n giorno fa" -msgstr[1] "%n giorni fa" - -#: js/js.js:1284 -msgid "last month" -msgstr "mese scorso" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mese fa" -msgstr[1] "%n mesi fa" - -#: js/js.js:1286 -msgid "last year" -msgstr "anno scorso" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anni fa" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore." diff --git a/l10n/it/files.po b/l10n/it/files.po index ca290206212c544224d67e1072f7d66c7723f830..b8e2998173beabe7b98367358489207c29bb5a31 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 45a080b63155d4cc291c52fb7f33451045bc2bcc..58bc49234d30dd0e8fb0baa5c9224a1b1bc67223 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -71,7 +71,7 @@ msgstr "Chiave" msgid "Secret" msgstr "Segreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "Chiave segreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome host (opzionale)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opzionale)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regione (opzionale)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "Segreto applicazione" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome utente" @@ -151,14 +151,6 @@ msgstr "Segreto del client" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome utente (richiesto)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (richiesto)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regione (facoltativa per OpenStack Object Storage)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL del servizio di identità (richiesto per OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo massimo in secondi delle richieste HTTP (opzionale)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,33 +227,41 @@ msgstr "Personale" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Tutti gli utenti. Digita per selezionare utente o gruppo." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(gruppo)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvato" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: il supporto a cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: il supporto a FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -304,39 +304,23 @@ msgstr "Disponibile per" msgid "Add storage" msgstr "Aggiungi archiviazione" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nessun utente o gruppo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tutti gli utenti" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppi" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utenti" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Elimina" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Abilita la memoria esterna dell'utente" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Consenti agli utenti di montare la seguente memoria esterna" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificati SSL radice" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importa certificato radice" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 9267c66680d02d73814f88c937f715dcbe63e6f6..52155b57a9e92640f5b7ecf13f65cdd775dd23ec 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 06:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "Certificato SSL non valido o non attendibile" msgid "Couldn't add remote share" msgstr "Impossibile aggiungere la condivisione remota" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Condiviso con te" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Condiviso con altri" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Condiviso tramite collegamento" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 56befb5bc88dceccde01c8b88833af5e74c8734d..c8d127391bb8441ea8e12bfe15fd82592b92ffe4 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 4f66bb3741762f9501bfdc56d667ab39ede5bdee..63274212bfc9edbf7e6fcc4e229e7e300f163186 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Impossibile scrivere nella cartella \"config\"." -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Ciò può essere normalmente corretto fornendo al server web accesso in scrittura alla cartella \"config\"" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Vedere %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Ciò può essere normalmente corretto %sfornendo al server web accesso in scrittura alla cartella \"config\"%s" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Configurazione di esempio rilevata" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token scaduto. Ricarica la pagina." msgid "Unknown user" msgstr "Utente sconosciuto" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s digita il nome utente del database." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s digita il nome del database." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome utente e/o password MS SQL non validi: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." @@ -199,23 +199,23 @@ msgstr "È necessario inserire un account esistente o l'amministratore." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome utente e/o password di MySQL/MariaDB non validi" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Errore DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "L'utente MySQL/MariaDB '%s'@'%%' esiste già" msgid "Drop this user from MySQL/MariaDB." msgstr "Elimina questo utente da MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "La connessione a Oracle non può essere stabilita" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome utente e/o password di Oracle non validi" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" @@ -340,68 +340,68 @@ msgstr "Condivisione di %s non riuscita, poiché i collegamenti non sono consent msgid "Share type %s is not valid for %s" msgstr "Il tipo di condivisione %s non è valido per %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Impostazione permessi per %s non riuscita, poiché i permessi superano i permessi accordati a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Impostazione permessi per %s non riuscita, poiché l'elemento non è stato trovato" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Impossibile impostare la data di scadenza. Le condivisioni non possono scadere più tardi di %s dalla loro attivazione" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Impossibile impostare la data di scadenza. La data di scadenza è nel passato." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Motore di condivisione %s non trovato" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Motore di condivisione di %s non trovato" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Condivisione di %s non riuscita, poiché i permessi superano quelli accordati a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è consentita" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9e4558e51dc7e7bc33d962844f66821c2e52f723..808ea9c6ece16ccfecb38c951b4ebd4e27969caa 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -55,7 +55,7 @@ msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Cifratura" @@ -329,7 +329,7 @@ msgstr "Deve essere fornito un nome valido per il gruppo" msgid "deleted {groupName}" msgstr "{groupName} eliminato" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "annulla" @@ -353,27 +353,27 @@ msgstr "Elimina" msgid "never" msgstr "mai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} eliminato" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "aggiungi gruppo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" @@ -737,11 +737,11 @@ msgstr "Altro" msgid "Less" msgstr "Meno" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versione" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Inserisci il tuo indirizzo di posta per abilitare il recupero della password e ricevere notifiche" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Immagine del profilo" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Carica nuova" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleziona nuova da file" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Rimuovi immagine" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Il tuo avatar è ottenuto dal tuo account originale." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annulla" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Scegli come immagine del profilo" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lingua" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decifra tutti i file" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Le tue chiavi di cifratura sono state spostate in una posizione sicura. Se qualcosa non dovesse funzionare, potrai ripristinare le chiavi. Eliminale definitivamente solo se sei sicuro che tutti i file siano stati decifrati." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Ripristina chiavi di cifratura" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Elimina chiavi di cifratura" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Mostra posizione di archiviazione" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Mostra ultimo accesso" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome utente" @@ -979,19 +987,19 @@ msgstr "Chiunque" msgid "Admins" msgstr "Amministratori" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota predefinita" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Illimitata" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altro" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index f03331593ce7e4eeae162b99e907de845867a7fb..030a5ca268cbbd25460a7679019591c7e97c1ef4 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,11 +52,11 @@ msgstr "Nessuna azione specificata" msgid "No configuration specified" msgstr "Nessuna configurazione specificata" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nessun dato specificato" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Impossibile impostare la configurazione %s" @@ -105,65 +105,65 @@ msgstr "Impossibile determinare il DN base" msgid "Please specify the port" msgstr "Specifica la porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configurazione corretta" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configurazione non corretta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configurazione incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleziona i gruppi" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Seleziona le classi di oggetti" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Seleziona gli attributi" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Prova di connessione riuscita" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Prova di connessione non riuscita" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vuoi davvero eliminare la configurazione attuale del server?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s gruppo trovato" msgstr[1] "%s gruppi trovati" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utente trovato" msgstr[1] "%s utenti trovati" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Impossibile trovare la funzionalità desiderata" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host non valido" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Aggiungi configurazione del server" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Elimina configurazione" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN utente" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Per l'accesso anonimo, lasciare vuoti i campi DN e Password" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un DN base per riga" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 219b2e6ec5b641b2d89bb7d1e87cdf969308de9a..ba391962ec063da6094df56a0c9c5ab260b08bbc 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -155,74 +155,30 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "ファイル" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "フォルダー" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "画像" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "オーディオ" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "保存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "数秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 時間前" - -#: js/js.js:1281 -msgid "today" -msgstr "今日" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨日" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n日前" - -#: js/js.js:1284 -msgid "last month" -msgstr "1ヶ月前" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%nヶ月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "1年前" - -#: js/js.js:1287 -msgid "years ago" -msgstr "数年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "リセットメールを送信できませんでした。管理者に問い合わせてください。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 9b5cfab8bab92b2833aff772bc290d2f03e0bcb3..5890269b4ad046096f4f33da48559c200da0da1e 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po index ae45262df8890b0427f66245c865dc5200cd524f..4fdd09c2b84b3769b9af0fda3820d84505ecf778 100644 --- a/l10n/ja/files_external.po +++ b/l10n/ja/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: kuromabo \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -71,7 +71,7 @@ msgstr "キー" msgid "Secret" msgstr "シークレットキー" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "バケット名" @@ -88,16 +88,16 @@ msgid "Secret Key" msgstr "シークレットキー" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "ホスト名 (オプション)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "ポート (オプション)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "リージョン (オプション)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -120,8 +120,8 @@ msgstr "アプリシークレット" msgid "Host" msgstr "ホスト" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ユーザー名" @@ -151,14 +151,6 @@ msgstr "クライアント秘密キー" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "ユーザー名 (必須)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "バケット (必須)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "リージョン (OpenStack Object Storage用のオプション)" @@ -184,8 +176,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "識別用エンドポイントURL (OpenStack Object Storage用に必要)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTPリクエストのタイムアウト秒数 (オプション)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -235,33 +227,41 @@ msgstr "個人" msgid "System" msgstr "システム" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "保存されました" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "注意: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "と" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "注意: PHPにcURLのエクステンションが入っていないか、有効ではありません。%s をマウントすることができません。このシステムの管理者にインストールをお願いしてください。" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "注意: PHPにFTPのエクステンションが入っていないか、有効ではありません。%s をマウントすることができません。このシステムの管理者にインストールをお願いしてください。" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -304,39 +304,23 @@ msgstr "以下が利用可能" msgid "Add storage" msgstr "ストレージを追加" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "ユーザーもしくはグループがありません" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "すべてのユーザー" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "グループ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ユーザー" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "削除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "ユーザーの外部ストレージを有効にする" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "ユーザーに以下の外部ストレージのマウントを許可する" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSLルート証明書" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "ルート証明書をインポート" diff --git a/l10n/ja/files_sharing.po b/l10n/ja/files_sharing.po index f0e368a2ddd7fddbbe161a59d14cc2b3286a3265..447678e87694892557480029762d396dd3c71d8c 100644 --- a/l10n/ja/files_sharing.po +++ b/l10n/ja/files_sharing.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 15:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po index 11246a2fa73e0be8522ce4bc1a46627b520d14df..3bd0cf06fa585e5f21ed945e8685eebfccd27fdc 100644 --- a/l10n/ja/files_trashbin.po +++ b/l10n/ja/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 8aa5235981a5f4a63236bb0f10ecae0d703439e9..0b4335375039527dfd25cb58a7409e26607e2244 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"config\"ディレクトリに書き込めません!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "多くの場合、これはWebサーバーにconfigディレクトリへの書き込み権限を与えることで解決できます。" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "%s を閲覧" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "多くの場合、これは %s Webサーバーにconfigディレクトリ %s への書き込み権限を与えることで解決できます。" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "トークンが無効になりました。ページを再読込してく msgid "Unknown user" msgstr "不明なユーザー" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s のデータベースのユーザー名を入力してください。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s のデータベース名を入力してください。" @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL Serverのユーザー名/パスワードが正しくありません: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" @@ -201,23 +201,23 @@ msgstr "既存のアカウントもしくは管理者のどちらかを入力す msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB のユーザー名及び/またはパスワードが無効" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DBエラー: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB のユーザー '%s'@'%%' はすでに存在します" msgid "Drop this user from MySQL/MariaDB." msgstr "MySQL/MariaDB からこのユーザーを削除。" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracleへの接続が確立できませんでした。" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracleのユーザー名もしくはパスワードは有効ではありません" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" @@ -342,68 +342,68 @@ msgstr "%s の共有に失敗しました。リンクでの共有は許可され msgid "Share type %s is not valid for %s" msgstr "%s の共有方法は、%s には適用できません。" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%s の権限設定に失敗しました。%s に許可されている権限を越えています。" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%s の権限設定に失敗しました。アイテムが存在しません。" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "有効期限を設定できません。共有開始から %s 以降に有効期限を設定することはできません。" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "有効期限を設定できません。有効期限が過去を示しています。" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "%s のバックエンドの共有には、OCP\\Share_Backend インターフェースを実装しなければなりません。" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "共有バックエンド %s が見つかりません" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s のための共有バックエンドが見つかりません" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s の共有に失敗しました。ユーザー %s が元々の共有者であるからです。" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s の共有に失敗しました。%s に付与されている許可を超えているからです。" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s の共有に失敗しました。再共有が許されていないからです。" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s の共有に失敗しました。%s のバックエンド共有に必要なソースが見つかりませんでした。" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index dbf24d3254df9beddbaf5c7cb983dd9e4452911a..646bcd84567bf639c832daa05aa089afd3bcbffd 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -57,7 +57,7 @@ msgstr "ユーザーメールを設定して初めて、テストメールを送 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "暗号化" @@ -331,7 +331,7 @@ msgstr "有効なグループ名を指定する必要があります" msgid "deleted {groupName}" msgstr "{groupName} を削除しました" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "元に戻す" @@ -355,27 +355,27 @@ msgstr "削除" msgid "never" msgstr "なし" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} を削除しました" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "グループを追加" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "有効なユーザー名を指定する必要があります" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "ユーザー作成エラー" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" @@ -739,11 +739,11 @@ msgstr "もっと見る" msgid "Less" msgstr "閉じる" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "バージョン" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "現在 %s / %s を利用しています" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "パスワード" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "現在のパスワード" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新しいパスワード" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "名前" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "メール" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "プロフィール写真" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "新たにアップロード" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "新しいファイルを選択" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "画像を削除" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "pngまたはjpg形式。正方形が理想ですが、切り取って加工することもできます。" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "キャンセル" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "プロファイル画像として選択" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "言語" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "暗号化キーはバックアップ場所に移動されました。何か問題があった場合は、キーを復元することができます。すべてのファイルが正しく復号化されたことが確信できる場合にのみ、キーを完全に削除してください。" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "暗号化キーを復元する" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "暗号化キーを削除する" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ログイン名" @@ -981,19 +989,19 @@ msgstr "すべてのユーザー" msgid "Admins" msgstr "管理者" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "デフォルトのクォータサイズ" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "無制限" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "その他" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 3c6f73b8abacd046d398f2ccb9bcb425356639e4..9a8db532b1e083c90b5a11e3086d779e8124e61b 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 14:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: kuromabo \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -54,11 +54,11 @@ msgstr "アクションが指定されていません" msgid "No configuration specified" msgstr "構成が指定されていません" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "データが指定されていません" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "構成 %s を設定できませんでした" @@ -107,63 +107,63 @@ msgstr "ベースDNを決定できませんでした" msgid "Please specify the port" msgstr "ポートを指定してください" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "設定OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "設定に誤りがあります" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "設定が不完全です" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "グループを選択" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "オブジェクトクラスを選択" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "属性を選択" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "接続テストに成功しました" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "接続テストに失敗しました" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "現在のサーバー設定を本当に削除してもよろしいですか?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "削除の確認" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s グループが見つかりました" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s ユーザーが見つかりました" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "望ましい機能は見つかりませんでした" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "無効なホスト" diff --git a/l10n/jv/core.po b/l10n/jv/core.po index be472387c98957ad4005cbdb73682dff3d89aeb5..f0188a06538c29a97dbc12a4621b515d5104ba5c 100644 --- a/l10n/jv/core.po +++ b/l10n/jv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/jv/files_external.po b/l10n/jv/files_external.po index fa0178903ee26714268754efdd2d8c1a15ddf7b6..a38ab4f2133f4206aab79673f073568120d405cd 100644 --- a/l10n/jv/files_external.po +++ b/l10n/jv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index b42abe13a97e96597f3642c8ea5336498112dfe3..45bcd5d70102741b13c657d07c481fc613b6581f 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 4232c8384c28959935e81d20df6a7d9ddf0827fd..f3a818b87edcc6fd30c19ea7b67b37f163c51e24 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,74 +148,30 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "საქაღალდე" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "სურათი" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "წამის წინ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "დღეს" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "გუშინ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "გასულ თვეში" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ბოლო წელს" - -#: js/js.js:1287 -msgid "years ago" -msgstr "წლის წინ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 4b5512f19c0645bde9f495f836c64817632ebd16..6d6bcfe9c2c432cee47b7bc1fb1a5fbbacd48063 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index fcf042667d4a2c6d6488b67a686d43f596c5c124..e725026bc1f433f97498d12fe4cbdeb5d069bcb7 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "ჰოსტი" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "პირადი" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "საცავის დამატება" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "ყველა მომხმარებელი" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ჯგუფები" - -#: templates/settings.php:106 -msgid "Users" -msgstr "მომხმარებელი" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "წაშლა" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root სერთიფიკატები" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Root სერთიფიკატის იმპორტირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 6e05cf98ca7f22ae455f5310731b3f543f72fcaf..d085396c19567b3e44ddb8e724ad50700dfcb25a 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 40eff2593bbf9883636e814df61d3d0b8e7e2fa0..c4af2c39034dff5186fe494a2b480222a5766b0f 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a4b15d541b5fba3e98003bf67a49ef473bb13265..ad41322a37e658154cd2f421f7df93a752a26414 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Token–ს ვადა გაუვიდა. გთხოვთ გ msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s შეიყვანეთ ბაზის სახელი." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." @@ -195,23 +195,23 @@ msgstr "თქვენ უნდა შეიყვანოთ არსებ msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB შეცდომა: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 5f1768ad9958988cece26a666a94a998e6951197..e40a86004accd5f14a7669549a33cd634b63c67b 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "ენკრიპცია" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "დაბრუნება" @@ -350,27 +350,27 @@ msgstr "წაშლა" msgid "never" msgstr "არასდროს" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ჯგუფის დამატება" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "უფრო მეტი" msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "უარყოფა" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ენა" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "მომხმარებლის სახელი" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "საწყისი ქვოტა" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ულიმიტო" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "სხვა" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index d9a0752dd4dd18d6099de7dd53f52e12067e160d..b05c2388cef60ba9bdabaf3045cae817b7be1035 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "ჯგუფების არჩევა" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "კავშირის ტესტირება მოხერხდა" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "კავშირის ტესტირება ვერ მოხერხდა" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "წაშლის დადასტურება" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "სერვერის პარამეტრების დამატება" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ჰოსტი" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "პორტი" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "მომხმარებლის DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "პაროლი" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "ერთი საწყისი DN ერთ ხაზზე" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" diff --git a/l10n/km/core.po b/l10n/km/core.po index f57745eec254f81477937c1b63ca8c1e57fc78d2..f883de7240c4cb024e3aa9208befd9c292ebd9ec 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -149,74 +149,30 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "ថត" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "វិនាទី​មុន" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n នាទី​មុន" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n ម៉ោង​មុន" - -#: js/js.js:1281 -msgid "today" -msgstr "ថ្ងៃនេះ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ម្សិលមិញ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ថ្ងៃ​មុន" - -#: js/js.js:1284 -msgid "last month" -msgstr "ខែមុន" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ខែ​មុន" - -#: js/js.js:1286 -msgid "last year" -msgstr "ឆ្នាំ​មុន" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ឆ្នាំ​មុន" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index b76e9c45c2e7ac57956b77a0f96457cd98ae9a5a..19ed97fbb0cbb18e259115e771b9e286f2d1e746 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index e53903bc894aae1469457c9f0827656c2bc43538..d675bae213c8382fa39e400f3235f272ca8c951b 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "ម៉ាស៊ីន​ផ្ទុក" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ឈ្មោះ​អ្នកប្រើ" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "ផ្ទាល់​ខ្លួន" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "បាន​រក្សាទុក" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "បន្ថែម​ឃ្លាំងផ្ទុក" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "អ្នក​ប្រើ​ទាំងអស់" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ក្រុ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "អ្នកប្រើ" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "លុប" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index b43493683b407aabca633038baeffff19d46231a..f76bc3f21001e6b5323712c096894fc8f3f3e9d2 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index 9e805f34d1c39f18ce99a4dee71360354fbdc678..c628d9d9c0f8575228364264b0c5e8d2f8a20f73 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index ff908e9b5ca214f5e7475759cf50a82bfeb8922c..be1a43839c618a407c243e9f3636015a9d65346f 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "" msgid "Unknown user" msgstr "មិនស្គាល់អ្នកប្រើប្រាស់" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​មូលដ្ឋាន​ទិន្នន័យ។" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ។" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "កំហុស DB៖ \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "មិន​អាច​បង្កើត​ការ​តភ្ជាប់ Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index a812321ebaf36467feb5361aab009c1c6cdde833..f118647436b2dd1fd141c86af3d51e95faa0ac32 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,7 @@ msgstr "អ្នក​ត្រូវ​តែ​កំណត់​អ៊ីម msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "កូដនីយកម្ម" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "មិន​ធ្វើ​វិញ" @@ -351,27 +351,27 @@ msgstr "លុប" msgid "never" msgstr "មិនដែរ" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "បន្ថែម​ក្រុម" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "មាន​កំហុស​ក្នុង​ការ​បង្កើត​អ្នក​ប្រើ" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -735,11 +735,11 @@ msgstr "ច្រើន​ទៀត" msgid "Less" msgstr "តិច" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "អ្នក​បាន​ប្រើ %s ក្នុង​ចំណោម​ចំនួន​មាន %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ពាក្យ​សម្ងាត់​របស់​អ្នក​ត្រូវ​បាន​ប្ដូរ" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "មិន​អាច​ប្ដូរ​ពាក្យ​សម្ងាត់​របស់​អ្នក​បាន​ទេ" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "ពាក្យ​សម្ងាត់​ថ្មី" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ប្តូរ​ពាក្យសម្ងាត់" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "អ៊ីមែល" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "អ៊ីម៉ែល​របស់​អ្នក" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "រូបភាព​ប្រវត្តិរូប" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "ផ្ទុកឡើង​ថ្មី" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "ជ្រើស​ថ្មី​ពី​ឯកសារ" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "ដក​រូបភាព​ចេញ" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "លើកលែង" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ភាសា" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ជួយ​បក​ប្រែ" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "ពាក្យ​សម្ងាត់​ចូល​គណនី" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decrypt ឯកសារ​ទាំង​អស់" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ចូល" @@ -977,19 +985,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "មិន​កំណត់" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "ផ្សេងៗ" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index cd50cc91875660824106e3cbda0da6f2a4928c30..4066a1586095481ef00161b98e856a3c00edaf50 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: beth borin \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "សាក​ល្បង​ការ​ត​ភ្ជាប់ បាន​ជោគជ័យ" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "សាកល្បង​ការ​តភ្ជាប់ មិន​បាន​សម្រេច" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ​បច្ចុប្បន្ន​មែន​ទេ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "បញ្ជាក់​ការ​លុប" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ម៉ាស៊ីន​ផ្ទុក" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "ច្រក" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ពាក្យសម្ងាត់" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index fde8053138bc8e4a1e15c582da6b30d53414bcf5..a11594d599be06721f0cda9e0e45a30430885094 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index a4e670aae08efe5b5f73ccbc820c674f8583756a..f1a8ece2948dfa0fcc4d35ba9d945bfb39482108 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index d933139a23461907ec53b734680a5efe35bd478e..53efefd48f4213fb9a94d2f028c25eace28bb8f0 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bebbb4e11448dc531f8348a3d06bd6d3e3819919..dbcb65921deb8efdcdd965b61286b4c16b73c545 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -155,74 +155,30 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "설정" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "파일" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "폴더" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "그림" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "초 전" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n분 전 " - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n시간 전 " - -#: js/js.js:1281 -msgid "today" -msgstr "오늘" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "어제" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n일 전 " - -#: js/js.js:1284 -msgid "last month" -msgstr "지난 달" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n달 전 " - -#: js/js.js:1286 -msgid "last year" -msgstr "작년" - -#: js/js.js:1287 -msgid "years ago" -msgstr "년 전" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "재설정 메일을 보낼수 없습니다. 관리자에게 문의하십시오." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 34fddbcf0697b846e5e7ed49f5b45fe8548b7271..0881af4ebfec91790db4156781573124963c2ea2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 33618655be71724c8f7bc6590210bc5a486cf5ce..61be1b459d02c0d6d725dd9ed2baea04233350a9 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -69,7 +69,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,15 +86,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "호스트" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "사용자 이름" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,33 +225,41 @@ msgstr "개인" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "저장됨" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "" msgid "Add storage" msgstr "저장소 추가" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "모든 사용자" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "그룹" - -#: templates/settings.php:106 -msgid "Users" -msgstr "사용자" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "삭제" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "사용자 외부 저장소 사용" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index dd30c53a5002e862a8848e10727707fc3332a5c3..8a346da21f4a884b67d121af19dfdf8507a06db8 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 656016e1a78b81c858a2de1188a89227f71d54ba..941c670bd04d807c323e231365cf4779b598f69e 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index db72d00d4786026db68af19bd3375720131a85af..18b6f494a15439786f569ef88713ca2a769edbdd 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -22,33 +22,33 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -170,12 +170,12 @@ msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." msgid "Unknown user" msgstr "알려지지 않은 사용자" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 데이터베이스 사용자 이름을 입력해 주십시오." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 데이터베이스 이름을 입력하십시오." @@ -191,7 +191,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." @@ -200,23 +200,23 @@ msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB 사용자 명 혹은 비밀번호가 일치하지 않습니다" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB 오류: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -241,15 +241,15 @@ msgstr "MySQL/MariaDB '%s'@'%%' 사용자가 이미 존재합니다" msgid "Drop this user from MySQL/MariaDB." msgstr "MySQL/MariaDB에서 이 사용자 제거하기" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle 연결을 수립할 수 없습니다." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" @@ -341,68 +341,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index d5ea26061352bad59026ad679a72839c7d6e0676..ce09bdfab437194335db4de5f6e7401954fc384f 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -56,7 +56,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "암호화" @@ -330,7 +330,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "{groupName} 삭제됨" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "실행 취소" @@ -354,27 +354,27 @@ msgstr "삭제" msgid "never" msgstr "없음" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} 삭제됨" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "그룹 추가" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" @@ -738,11 +738,11 @@ msgstr "더 중요함" msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "버전" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "암호" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "새 암호" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "전체 이름" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "이메일" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "프로필 사진" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "새로 업로드" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "파일에서 선택" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "그림 삭제" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "원본 계정의 아바타를 사용합니다." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "취소" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "프로필 이미지로 사용" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "언어" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "로그인 암호" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "모든 파일 복호화" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "암호화 키 복원" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "암호화 키 삭제" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "로그인 이름" @@ -980,19 +988,19 @@ msgstr "" msgid "Admins" msgstr "관리자" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "기본 할당량" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "무제한" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "기타" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 61823c73a49fedfbb18eb0924f498a7002351c05..bd420424f7cf2625c0323111525cedd60157a958 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,11 +52,11 @@ msgstr "동작이 지정되지 않음" msgid "No configuration specified" msgstr "설정이 지정되지 않음" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "데이터가 지정되지 않음" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr " 설정 %s을(를) 지정할 수 없음" @@ -105,63 +105,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "설정 올바름" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "설정 올바르지 않음" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "설정 불완전함" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "그룹 선택" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "객체 클래스 선택" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "속성 선택" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "연결 시험 성공" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "연결 시험 실패" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "현재 서버 설정을 지우시겠습니까?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "삭제 확인" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "그룹 %s개 찾음" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "사용자 %s명 찾음" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "필요한 기능을 찾을 수 없음" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "잘못된 호스트" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "로그인을 시도할 때 적용할 필터를 입력하십시오. %%uid는 로그인 동작의 사용자 이름으로 대체됩니다. 예: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "서버 설정 추가" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "호스트" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오." -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "포트" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "사용자 DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "바인딩 작업을 수행할 클라이언트 사용자 DN입니다. 예를 들어서 uid=agent,dc=example,dc=com입니다. 익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "암호" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "익명 접근을 허용하려면 DN과 암호를 비워 두십시오." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "기본 DN을 한 줄에 하나씩 입력하십시오" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 5501152acc5f767da955b6701f8ac2b0c2d0bf5d..c6af3ffc093b8f1360832a1a28b750c4e9b44048 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "بوخچه" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 194d83cf735dc16ed0b4bc1cb8f4666c9779a43d..2573d27326f19d132ebd652d2890231af7bc427e 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "به‌كارهێنه‌ر" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 86caf3a0b4450ed85233308104b0ad76b510cff0..82e4e4979f78902b2998704441643bd5cb325e98 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 1f6bd44c8b56721f984467dac0ea46a88cb54261..a17e7e2ed833fa6654b986841fee6dd93856228d 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +17,33 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ff99ffc0dcfe6a9b06e5f9b9fb9ee78f8a8eefcc..f8840dc57d53d55b50fb83556b26983a449a42b9 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "نهێنیکردن" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "لابردن" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "چوونەژوورەوە" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 88adf0ae7f9076d467a0d236f28bc0f20d6d0b1a..d4af627640fe3480ae809e9c22d24e99c1b79eaa 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aa764e545715e7a27fb184eb661387ce0fa52df8..60ba106bfa13d30f34ef91259e13de63ff029ee4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,78 +150,30 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Astellungen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fichier" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dossier" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Sekonnen hir" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n Minutt hir" -msgstr[1] "%n Minutten hir" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "haut" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gëschter" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "leschte Mount" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "Lescht Joer" - -#: js/js.js:1287 -msgid "years ago" -msgstr "Joren hir" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index d7231c5abc2f1f64f6b17ef26dbb4af8b5f23675..cff45fe9063436b60b691eebbe2f801e851a6d99 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index df96eafc1daa8a618b018aa014e927a7f4fb5781..12904bc711ec7d11b2fa352c48fc7759532723e8 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Benotzernumm" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Perséinlech" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruppen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Benotzer" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Läschen" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 70a5569d4b1edcd90713b2e06c543cedfc2b5ff5..4ed59cb8b01985ee7f46bd48c010d4489985b40a 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 3154a6af092337c3af6edb2472b063d5ba5daf43..b34bd2e51defb70c5acbbe4bb503d3ef5deeafe6 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 0c2d4a009e63f497575297b1910185e8f01aa00f..0ac867d346646bce2a75c6b68fe21270ab2ef0e0 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +18,33 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2d1d08eb351ad4fef3fffd5b3b8965bcc5c7a502..30fb813bc827b21e0a2aa722546aff765d17e303 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "réckgängeg man" @@ -350,27 +350,27 @@ msgstr "Läschen" msgid "never" msgstr "ni" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Méi" msgid "Less" msgstr "Manner" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Ofbriechen" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard Quota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Aner" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index f4bf9d319ae589874e7fc69557fb296ebfbce6da..731c885084b93a4fc6d7fcc6b2dc9a808814498f 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passwuert" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d248676768acbfe6f484663c3abf7b30a7dd5bcd..03386e12ae76ee06be73f3224290bdd1a680ab35 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -153,82 +153,30 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Failas" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Katalogas" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "prieš sekundę" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] " prieš %n minutę" -msgstr[1] " prieš %n minučių" -msgstr[2] " prieš %n minučių" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "prieš %n valandą" -msgstr[1] "prieš %n valandų" -msgstr[2] "prieš %n valandų" - -#: js/js.js:1281 -msgid "today" -msgstr "šiandien" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "vakar" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "prieš %n dieną" -msgstr[1] "prieš %n dienas" -msgstr[2] "prieš %n dienų" - -#: js/js.js:1284 -msgid "last month" -msgstr "praeitą mėnesį" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "prieš %n mėnesį" -msgstr[1] "prieš %n mėnesius" -msgstr[2] "prieš %n mėnesių" - -#: js/js.js:1286 -msgid "last year" -msgstr "praeitais metais" - -#: js/js.js:1287 -msgid "years ago" -msgstr "prieš metus" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 0ee1a994c397f82d458444cd2bb1beff2cee4f07..87246a397e0e0d2a9a84774a1c81f54ea3f1b829 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 4241b020a140c709b5ea274492754c29da149540..1c79dc822b28594a3232e6e205133510177222da 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Mazgas" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Prisijungimo vardas" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Asmeniniai" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Pridėti saugyklą" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Visi vartotojai" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupės" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Vartotojai" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Ištrinti" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Įjungti vartotojų išorines saugyklas" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL sertifikatas" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Įkelti pagrindinį sertifikatą" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index d4463e328f6a34f27658bf4cfa5adb5c98ef344f..1f6968ab8b765407dc3f9f706805944f4fe870a7 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -32,15 +32,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 542910084ab54c5f577b5de6531f2fb05de57ef2..7cfc829b2059f15f809355cd038b91855e3fc02a 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 067dfac383a210fa5bf487eb93b8d4eea3c340be..711128f1e79f7cb7a44d07db45fe37426b33f8ed 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Sesija baigėsi. Prašome perkrauti puslapį." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s įrašykite duombazės naudotojo vardą." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s įrašykite duombazės pavadinimą." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." @@ -199,23 +199,23 @@ msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi. msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB klaida: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nepavyko sukurti Oracle ryšio" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vykdyta komanda buvo: \"%s\", name: %s, password: %s" @@ -340,68 +340,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 90716c526d92e699c8c057d82604ec4df4e7b15b..6cec4753dd4b56e112f22a82f1d1809fd2cbb6ab 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -57,7 +57,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifravimas" @@ -331,7 +331,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "anuliuoti" @@ -355,27 +355,27 @@ msgstr "Ištrinti" msgid "never" msgstr "niekada" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pridėti grupę" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Klaida kuriant vartotoją" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja" @@ -739,11 +739,11 @@ msgstr "Daugiau" msgid "Less" msgstr "Mažiau" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versija" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs naudojate %s iš galimų %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Pilnas vardas" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilio paveikslėlis" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Įkelti naują" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Pasirinkti naują iš failų" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Pašalinti paveikslėlį" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Arba png arba jpg. Geriausia kvadratinį, bet galėsite jį apkarpyti." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Atšaukti" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Pasirinkite profilio paveiksliuką" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Kalba" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Vartotojo vardas" @@ -981,19 +989,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Numatytoji kvota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neribota" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Kita" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index b10a46d45ebb87e1ad80729574db47bd74162054..0a9d33751d7ef6ba90b039dfc0c5d8ca8bce9d67 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,47 +104,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Pasirinkti grupes" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Ryšio patikrinimas pavyko" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Ryšio patikrinimas nepavyko" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Patvirtinkite trynimą" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -152,7 +152,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -160,11 +160,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -256,60 +256,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Pridėti serverio konfigūraciją" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Mazgas" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Prievadas" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Naudotojas DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Slaptažodis" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anoniminiam prisijungimui, palikite DN ir Slaptažodis laukus tuščius." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Vienas bazinis DN eilutėje" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 901ec8a0035bb553e4b41b515519f908e23244a3..50b1c3c476af11ef8dba3c5d890c95df5d11619e 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,82 +149,30 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mape" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekundes atpakaļ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "Tagad, %n minūtes" -msgstr[1] "Pirms %n minūtes" -msgstr[2] "Pirms %n minūtēm" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "Šodien, %n stundas" -msgstr[1] "Pirms %n stundas" -msgstr[2] "Pirms %n stundām" - -#: js/js.js:1281 -msgid "today" -msgstr "šodien" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "vakar" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Šodien, %n dienas" -msgstr[1] "Pirms %n dienas" -msgstr[2] "Pirms %n dienām" - -#: js/js.js:1284 -msgid "last month" -msgstr "pagājušajā mēnesī" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "Šomēnes, %n mēneši" -msgstr[1] "Pirms %n mēneša" -msgstr[2] "Pirms %n mēnešiem" - -#: js/js.js:1286 -msgid "last year" -msgstr "gājušajā gadā" - -#: js/js.js:1287 -msgid "years ago" -msgstr "gadus atpakaļ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index e783738cae6745159413aab74449a4ed5927131f..554714b474ca5c3c5f0be475cbbc33868269c15a 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index a0f31fe572a5cb7351893c2b8d715bde866d86ea..aa49cf304a5522a3824f6f53a7521c42ff5a28b5 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Resursdators" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Lietotājvārds" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Personīgi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Pievienot krātuvi" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Visi lietotāji" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupas" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Lietotāji" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Dzēst" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktivēt lietotāja ārējo krātuvi" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL saknes sertifikāti" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importēt saknes sertifikātus" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 78c9b998990f2c654bc2f8959274e6342b59c168..a22084db330a61e406ad3d60ecc64d158744b12f 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 2b94bd713b7b1cf4a1451274dcad15e89ebe8cb2..0910e9922582054ae863a5e5b9d264e35cc0fae4 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 322af2bc53401e064bcad15b4e693b043a0b6ea6..cc1bdfcdce2e1f7798d81c4db85049d31e067b83 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ievadiet datubāzes lietotājvārdu." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ievadiet datubāzes nosaukumu." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nav derīga MySQL parole un/vai lietotājvārds — %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." @@ -196,23 +196,23 @@ msgstr "Jums jāievada vai nu esošs vai administratora konts." msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB kļūda — “%s”" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nevar izveidot savienojumu ar Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nav derīga Oracle parole un/vai lietotājvārds" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index b5c32e1dd1798853e309824169d56ecd5e41cfae..6000a4fa264c27f2ff21260e9a62d5dbd43adf76 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrēšana" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "atsaukt" @@ -350,27 +350,27 @@ msgstr "Dzēst" msgid "never" msgstr "nekad" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pievienot grupu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Vairāk" msgid "Less" msgstr "Mazāk" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versija" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parole" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Atcelt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Valoda" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ierakstīšanās vārds" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Apjoms pēc noklusējuma" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neierobežota" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Cits" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 8c6186634227157580ae3f5d4f16c40ecbcc2bdb..d71ba6b6f848d0f3c9a5c1d8aa65eff5a5426082 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Izvēlieties grupas" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Savienojuma tests ir veiksmīgs" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Savienojuma tests cieta neveiksmi" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Apstiprināt dzēšanu" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Pievienot servera konfigurāciju" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Resursdators" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Ports" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Lietotāja DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parole" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Viena bāzes DN rindā" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 33a5b0e34518c01c25cf589a9b765bbdd78ca9b1..fff91af7b419bccf95a48ebc28cc814fee697ef3 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,78 +149,30 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Подесувања" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Папка" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "пред секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "денеска" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "минатиот месец" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "минатата година" - -#: js/js.js:1287 -msgid "years ago" -msgstr "пред години" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 9a8acecd66001b37a20bc0375a3d33486af9910e..a755dc946bdc0d79ecc8f42b3c4037c7ab6ef935 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 4ea5591ecc92ff344f95b8071d6a2a75071ca0fb..ee4832f4f4c7f923f1bd88a5935ee23200ec2689 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Домаќин" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Корисничко име" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Снимено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Сите корисници" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Корисници" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Избриши" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Овозможи надворешни за корисници" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root сертификати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Увези" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 0376d6962bd144c4c53bd66224723a2b3390d58c..b8cfadcce9f476edd7826fc0b7d7a4855acb2fd8 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Споделено со тебе" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Сподели со останатите" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Споделено со врска" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 1716303087579231c04e87cdb7c4278c7f4a2dc1..b6283ed9eefcb4fc407a71e247991ed7f96d2cb5 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index e10e910d190ced82579b0ebcc8b14f1139fca466..4ad452a6efc79247bb0461ffb9ac68168d32cd01 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,33 +18,33 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "Жетонот е истечен. Ве молам превчитајте msgid "Unknown user" msgstr "Непознат корисник" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s внеси го корисничкото име за базата." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s внеси го името на базата." @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB грешка: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle корисничкото име и/или лозинката не се валидни" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 405333207ba2ae2baabf648531945c4ac2b1a6b8..1008e262e52c5b2b4bcbe029e4cd9649e9d45644 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Мод на испраќање" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Енкрипција" @@ -326,7 +326,7 @@ msgstr "Мора да се обезбеди валидно име на груп msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "врати" @@ -350,27 +350,27 @@ msgstr "Избриши" msgid "never" msgstr "никогаш" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додади група" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при креирање на корисникот" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Повеќе" msgid "Less" msgstr "Помалку" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Верзија" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Цело име" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Фотографија за профил" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Префрли нова" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Одбери нова од датотеките" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Отстрани ја фотографијата" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Вашиот аватар е креиран со вашата оригинална сметка" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Одбери фотографија за профилот" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Јазик" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Лозинка за најавување" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Дешифрирај ги сите датотеки" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Обнови ги енкрипциските клучеви" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Избриши ги енкрипцисиките клучеви" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Име за најава" @@ -976,19 +984,19 @@ msgstr "Секој" msgid "Admins" msgstr "Администратори" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Предефинирана квота" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Останато" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 4ac1ad6fd0a19780bd83954586931e36f5c54091..ccd9241fc6b77214d7468a8f980c7430c1eac370 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Тестот за поврзување е успешен" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Тестот за поврзување не е успешен" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Потврдете го бришењето" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Домаќин" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порта" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Лозинка" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index c41f631300dec985e158505024b313fa10eb42a4..c67847cef255d371a3ad3f86dbc2d6dda683daef 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ml/files_external.po b/l10n/ml/files_external.po index f9bcf3c3b3653b8556452418c37175e0e89f0696..ab871fc0452d5ea68cf16698e032431156ecaf64 100644 --- a/l10n/ml/files_external.po +++ b/l10n/ml/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index cdaac2f59855b3a777323b76759dbcbb270a80ac..1303395d690672909ab79ce3a6151c7a616ef809 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 0d92a4a3801712442f4daa5ad1f653dc7cea3b26..fe4aa5878348ff6e0e23bb0bcf0b3c87589e97ca 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po index 51c893edb6dd737b74bfd121f50a9a8e776627a5..41eab87aa0381ca878e2bb72d064340d86e2621c 100644 --- a/l10n/ml_IN/files_external.po +++ b/l10n/ml_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index ed1d32df4bf846cf5ebc588392e5f9e8e2d04e8c..c47aa37c20a64534fe0a5cafcabf618ba2fc374c 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po index 063657f6abf5ad35e7914a6a6d7f11ae43d9c5af..bc829f553407ad55d2afa85f75cd370e75e74f7f 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/mn/files_external.po b/l10n/mn/files_external.po index 30a6e2a5622d47d2eea15aab123748da967cb929..52265aa29fc9665ad6e839cdc8a3d4bbd4c65848 100644 --- a/l10n/mn/files_external.po +++ b/l10n/mn/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 0fdb9f98879771704b055c9000a3114600e2a7b2..be6bfdb53c0f107e45592566b982074c22f02a1a 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index d208cac6e5479682939f8b8bc3e4a072082b18de..1dc967bfd5c12c497ee13413ba31ae09d0386659 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,74 +148,30 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Tetapan" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b8d22c255a7d4a5086eb06c89424ba035245b0a7..88c3a24f50e3b48f5f2ec98f389b52a198f731ff 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index a3dea20f9e88d165893a72cce2a631f6172dd3c2..8e0fe9fd8739b2c8c3735733c316e7592f54b6c8 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nama pengguna" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Peribadi" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Kumpulan" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Pengguna" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Padam" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 840a9cb0f08057e5011508490017b16033f11fbd..b68692bfe8008b153ed0dc146cddb6c14584c2b3 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index da9fa19798a89061b90f35a6f427812953598272..a698ebe2a54894ff41fa41d60e6099e6a7cbca92 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: ervinnnchai \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a6ed996a5f6aeb11021c78ad42d41d00a1644668..2bd395711ca714f1927f11e0c80ca05475eda911 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index eada000fe18bd0bc113eea0780a20c65f2c3c518..98045bb12276ad2d27c920589c8503c1a6dd786d 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Padam" msgid "never" msgstr "jangan" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "Lanjutan" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Gambar profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Batal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Log masuk" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Kuota Lalai" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Lain" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 8a4fafa65039cca2c2dff260d3315ea643051184..8e3229e361327f44a268e5cfdbd6f36026508a06 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Kata laluan" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index f39ff3adef4bdd215947eb14e179303951de3a93..5b660d8c17a0bdb38442c97562be51835523e3d4 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "စက္ကန့်အနည်းငယ်က" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "ယနေ့" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "မနေ့က" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "ပြီးခဲ့သောလ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "မနှစ်က" - -#: js/js.js:1287 -msgid "years ago" -msgstr "နှစ် အရင်က" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 2008e49c1c077e52e0f418ba2985ee6971be55df..77f980183cdbce3e2ebeed8d85435d1974a12dc1 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "သုံးစွဲသူ" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 379396fd485f654efd2534ea212ac3c29a8a98e2..99c00dc04db40ffee24fe69d442cd9bdf8e3e46e 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 1f27cf65f62e517ed10bac3797e02ac36f848215..efe2e295ef11d1d1d1b100f102bb455fb02ebdc4 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "စကားဝှက်" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 5d3304afdf0ca5f8afea8e58233cad81c7860ad5..6cce582f8100c4fa5de90ea79af3781b6936e939 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-10 01:54-0400\n" -"PO-Revision-Date: 2014-06-10 05:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,64 +102,64 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "စကားဝှက်" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 33a059ef5cfac79be893a0746ec6ab58a4b33749..0a5662c79365180fb6be15180e934bbc4787b777 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: vidaren \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Bilde" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "for få sekunder siden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "for %n minutt siden" -msgstr[1] "for %n minutter siden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "for %n time siden" -msgstr[1] "for %n timer siden" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "for %n dag siden" -msgstr[1] "for %n dager siden" - -#: js/js.js:1284 -msgid "last month" -msgstr "forrige måned" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "for %n måned siden" -msgstr[1] "for %n måneder siden" - -#: js/js.js:1286 -msgid "last year" -msgstr "i fjor" - -#: js/js.js:1287 -msgid "years ago" -msgstr "årevis siden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Klarte ikke å sende e-post for tilbakestilling. Kontakt administratoren." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index cebc0123afbcdb51e1fc7f85646700869fdbffdc..c815b427f806fe6ca36af7abb5d38f1d44f84124 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index c15ae4199230ef0bc4809dcfc671288f762df23f..fea73dad73745fcfb7324d5bd2bca4b96ae620d1 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -70,7 +70,7 @@ msgstr "Key" msgid "Secret" msgstr "Secret" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Servernavn (ikke påkrevd)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (ikke påkrevd)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (ikke påkrevd)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "App secret" msgid "Host" msgstr "Tjener" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brukernavn" @@ -150,14 +150,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Brukernavn (påkrevet)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (påkrevet)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (ikke påkrevet for OpenStack Object Storage)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL for identity endpoint (påkrevet for OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tidsavbrudd for HTTP-spørringer i sekunder (ikke påkrevet)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Personlig" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Lagret" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Merk: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr " og " -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Merk: Støtte for cURL i PHP er ikke aktivert eller installert. Oppkobling av %s er ikke mulig. Be systemadministratoren om å installere det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Merk: FTP-støtte i PHP er ikke slått på eller installert. Kan ikke koble opp %s. Ta kontakt med systemadministratoren for å installere det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Tilgjengelig for" msgid "Add storage" msgstr "Legg til lagringsplass" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen bruker eller gruppe" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle brukere" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brukere" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slett" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktiver ekstern lagring for bruker" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillat brukere å koble opp følgende eksterne lagring" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rotsertifikater" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importer rotsertifikat" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index a4cc1fc2d1a55121bcbcadbdd36702f0c8194114..7e08b7cbace6d971b800177efca3f86520bb6273 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 15:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index b4d49d1022ed79acfef453fd0c5c9940754168b3..f454aff28b1e3412d2a4d2df3a4939ce07eb0f49 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 295ad090bcc94dd932e6c9511d63f8296222b8db..486ae6729148b88c191c7a882dbdcc07d3adb782 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan ikke skrive i \"config\"-mappen!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dette kan vanligvis ordnes ved å gi web-serveren skrivetilgang til config-mappen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dette kan vanligvis ordnes ved %så gi web-serveren skrivetilgang til config-mappen%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Eksempelkonfigurasjon oppdaget" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Symbol utløpt. Vennligst last inn siden på nytt." msgid "Unknown user" msgstr "Ukjent bruker" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s legg inn brukernavn for databasen." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s legg inn navnet på databasen." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-brukernavn og/eller passord ikke gyldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du må legge inn enten en eksisterende konto eller administratoren." @@ -197,23 +197,23 @@ msgstr "Du må legge inn enten en eksisterende konto eller administratoren." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB-brukernavn og/eller -passord ikke gyldig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefeil: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB-bruker '%s'@'%%' finnes allerede" msgid "Drop this user from MySQL/MariaDB." msgstr "Fjern denne brukeren fra MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Klarte ikke å etablere forbindelse til Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle-brukernavn og/eller passord er ikke gyldig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Kommando som feilet: \"%s\", navn: %s, passord: %s" @@ -338,68 +338,68 @@ msgstr "Deling av %s feilet, fordi deling med lenker ikke er tillatt" msgid "Share type %s is not valid for %s" msgstr "Delingstype %s er ikke gyldig for %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Setting av tillatelser for %s feilet, fordi tillatelsene gikk ut over tillatelsene som er gitt til %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Setting av tillatelser for %s feilet, fordi elementet ikke ble funnet" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Kan ikke sette utøpsdato. Delinger kan ikke utløpe senere enn %s etter at de har blitt delt" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Kan ikke sette utløpsdato. Utløpsdato er tilbake i tid" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delings-server %s må implementere grensesnittet OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delings-server %s ikke funnet" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delings-server for %s ikke funnet" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Deling av %s feilet, fordi brukeren %s er den opprinnelige eieren" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Deling av %s feilet, fordi tillatelsene går utover tillatelsene som er gitt til %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Deling av %s feilet, fordi videre-deling ikke er tillatt" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Deling av %s feilet, fordi delings-serveren for %s ikke kunne finne kilden" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 118e147396ac688ef9344c69a3068f12eac74b0e..5b82dd69ab8f8c2316289d15e75c61492c952822 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: vidaren \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,7 @@ msgstr "Du må sette e-postadressen for brukeren din før du kan teste sending a msgid "Send mode" msgstr "Sendemåte" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -329,7 +329,7 @@ msgstr "Et gyldig gruppenavn må oppgis" msgid "deleted {groupName}" msgstr "slettet {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "angre" @@ -353,27 +353,27 @@ msgstr "Slett" msgid "never" msgstr "aldri" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "slettet {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "legg til gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Feil ved oppretting av bruker" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappe for bruker \"{user}\" eksisterer allerede" @@ -737,11 +737,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versjon" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Fullt navn" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Epost" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Legg inn en e-postadresse for å aktivere passordgjenfinning og motta varsler" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbilde" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Last opp nytt" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Velg nytt fra Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern bilde" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Helst kvadratisk men du kan beskjære det." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Avataren din kommer fra din opprinnelige konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Velg som profilbilde" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle filer" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Krypteringsnøklene dine er flyttet til en plass for sikkerhetskopier. Hvis noe gikk galt kan du gjenopprette nøklene. Ikke slett dem permanent før du er ikker på at alle filer er dekryptert korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Gjenopprett krypteringsnøkler" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Slett krypteringsnøkler" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Brukernavn" @@ -979,19 +987,19 @@ msgstr "Alle" msgid "Admins" msgstr "Administratorer" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standard kvote" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrenset" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annet" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index aca89c277ff8b8d7a995506b334ef4eea4a93bc0..62a86cff6676800cdca5106055e1dd25d2bf5c0b 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -50,11 +50,11 @@ msgstr "Ingen handling spesifisert" msgid "No configuration specified" msgstr "Ingen konfigurasjon spesifisert" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ingen data spesifisert" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Klarte ikke å sette konfigurasjon %s" @@ -103,65 +103,65 @@ msgstr "Kunne ikke fastslå hoved-DN" msgid "Please specify the port" msgstr "Vennligst spesifiser port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurasjon OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfigurasjon feil" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurasjon ufullstendig" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Velg grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Velg objektklasser" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Velg attributter" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Tilkoblingstest lyktes" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Tilkoblingstest mislyktes" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekreft sletting" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s gruppe funnet" msgstr[1] "%s grupper funnet" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s bruker funnet" msgstr[1] "%s brukere funnet" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Fant ikke den ønskede funksjonaliteten" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ugyldig tjener" @@ -253,60 +253,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definerer filteret som skal brukes når noen prøver å logge inn. %%uid erstatter brukernavnet i innloggingen. Eksempel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Legg til tjener-konfigurasjon" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Slett konfigurasjon" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Tjener" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Bruker DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN nummeret til klienten som skal bindes til, f.eks. uid=agent,dc=example,dc=com. For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "For anonym tilgang, la DN- og passord-feltet stå tomt." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "En hoved-DN pr. linje" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan spesifisere hoved-DN for brukere og grupper under Avansert fanen" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 2efa3db56667eea55e168b838e78c8de4a5f885e..089bac612bbca11a36c33e8e91ce32be455adde7 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/nds/files_external.po b/l10n/nds/files_external.po index 4002387fe247b5fc1d6ed761cabceb8640a7d030..3637d320a9a550d4629859df9a311b1865bd7c30 100644 --- a/l10n/nds/files_external.po +++ b/l10n/nds/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 776f583961f1798934007233e0f44939a96a66c3..f3cac835464643754c63c34b185d63e0bef6403b 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index d2ec39638a36a8019798430312d54e95bd15b068..8480df65dacdb21ff535c0c3c4c962ef6f989eda 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index f490c36b1ba42916ba2936e2430dc8057b716b76..e286b655c0b19cbc44842def7ecc9314a5af20bd 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 321c2b122c93e06255db22dd0f51db3b21fbc8e4..18c1cf30d4ce3c2dfd17bc93b47c4e993282d5d3 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 30d8f1ae0f9712efd30d3bcad0cc4c52544a25d6..b00eb54dc477a527e53af14a58f12c830e194077 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Koen Willems \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -151,78 +151,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Instellingen" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Bestand" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Map" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Afbeelding" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "seconden geleden" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "%n minuten geleden" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "%n uur geleden" - -#: js/js.js:1281 -msgid "today" -msgstr "vandaag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "gisteren" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "%n dagen geleden" - -#: js/js.js:1284 -msgid "last month" -msgstr "vorige maand" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "%n maanden geleden" - -#: js/js.js:1286 -msgid "last year" -msgstr "vorig jaar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "jaar geleden" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Kon herstel e-mail niet versturen. Neem contact op met uw beheerder." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f7131621f4a321895dec25a31797ad8282619c4d..feb65602427ec6eb8a3df82c9764e7e99c0903f8 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 4d832d852762a26338e7ff61edae2b3de35ff7e1..b900b15e17d003127173ae6a4ccaf71ee85f6a0a 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "Sleutel" msgid "Secret" msgstr "Geheim" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Secret Key" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (optioneel)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Poort (optioneel)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regio (optioneel)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "App secret" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Gebruikersnaam" @@ -148,14 +148,6 @@ msgstr "Client secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Gebruikersnaam (verplicht)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (verplicht)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Regio (optioneel voor OpenStack Object Storage)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL van identity endpoint (verplicht voor OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Time-out van HTTP aanvragen in seconden (optioneel)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Persoonlijk" msgid "System" msgstr "Systeem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Alle gebruikers. Tikken om een gebruiker of groep te selecteren." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(groep)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Bewaard" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Let op: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "en" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Let op: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw systeembeheerder dit te installeren." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Let op: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag uw beheerder dit te installeren." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Beschikbaar voor" msgid "Add storage" msgstr "Toevoegen opslag" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Geen gebruiker of groep" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alle gebruikers" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Groepen" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Gebruikers" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Verwijder" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Externe opslag voor gebruikers activeren" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Sta gebruikers toe de volgende externe opslag aan te koppelen" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL root certificaten" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importeer root certificaat" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index ea680a71d3c5bc3584d83a3c82cea342cd39a90a..4d37133b4505dff13a60c875fb7b433af9f38f9b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-24 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 18:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 3f82478a9b88eec47fb956a1132a5670b22de4a4..4cb8355392fb8676c746c433f9fc7ee86dca1004 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 6be187304290aa6bcf183cbcbb6bebdbd3caa438..8fadcd3cf35e72efaca55a2c821ef97513369ec2 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -20,33 +20,33 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan niet schrijven naar de \"config\" directory!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Dit kan hersteld worden door de webserver schrijfrechten te geven op de de config directory" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Zie %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Dit kan hersteld worden door de webserver schrijfrechten te %sgeven op de de config directory%s" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Voorbeeldconfiguratie gevonden" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -168,12 +168,12 @@ msgstr "Token verlopen. Herlaad de pagina." msgid "Unknown user" msgstr "Onbekende gebruiker" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s opgeven database gebruikersnaam." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s opgeven databasenaam." @@ -189,7 +189,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." @@ -198,23 +198,23 @@ msgstr "Geef of een bestaand account op of het beheerdersaccount." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Fout: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -239,15 +239,15 @@ msgstr "MySQL/MariaDB gebruiker '%s'@'%%' bestaat al" msgid "Drop this user from MySQL/MariaDB." msgstr "Verwijder deze gebruiker uit MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Er kon geen verbinding met Oracle worden bereikt" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle gebruikersnaam en/of wachtwoord ongeldig" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" @@ -339,68 +339,68 @@ msgstr "Delen van %s is mislukt, omdat het delen met links niet is toegestaan" msgid "Share type %s is not valid for %s" msgstr "Delen van type %s is niet geldig voor %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Instellen van de permissies voor %s is mislukt, omdat de permissies hoger zijn dan de aan %s toegekende permissies" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Instellen van de permissies voor %s is mislukt, omdat het object niet is gevonden" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Kon vervaldatum niet instellen. Shares kunnen niet langer dan %s vervallen na het moment van delen" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Kon vervaldatum niet instellen. De vervaldatum ligt in het verleden" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Het share-backend %s moet de OCP\\Share_Backend interface implementeren" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Het share-backend %s is niet gevonden" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Het share-backend voor %s is niet gevonden" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delen van %s is mislukt, omdat gebruiker %s de originele deler is" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delen van %s is mislukt, omdat de rechten de aan %s toegekende autorisaties overschrijden" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delen van %s is mislukt, omdat her-delen niet is toegestaan" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delen van %s is mislukt, omdat de share-backend voor %s de bron niet kon vinden" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7f12df179ff9032b8573e325ef94500b73171943..efd222da1ee1a4e50e578534bb2d539b47c3744e 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Koen Willems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "U moet uw e-mailadres invoeren voordat u testberichten kunt versturen." msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Versleuteling" @@ -329,7 +329,7 @@ msgstr "Er moet een geldige groepsnaam worden opgegeven" msgid "deleted {groupName}" msgstr "verwijderd {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ongedaan maken" @@ -353,27 +353,27 @@ msgstr "Verwijder" msgid "never" msgstr "geen" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "verwijderd {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "toevoegen groep" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" @@ -737,11 +737,11 @@ msgstr "Meer" msgid "Less" msgstr "Minder" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versie" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "U heeft %s gebruikt van de beschikbare %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Volledige naam" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Vul een e-mailadres in om wachtwoordherstel mogelijk te maken en meldingen te ontvangen" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profielafbeelding" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Upload een nieuwe" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecteer een nieuwe vanuit bestanden" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Verwijder afbeelding" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Of png, of jpg. Bij voorkeur vierkant, maar u kunt de afbeelding bijsnijden." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Uw avatar is verstrekt door uw originele account." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annuleer" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Kies als profielafbeelding" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Taal" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Uw cryptosleutels zijn verplaatst naar een backup locatie. Als iets iets verkeerd ging, kunt u de sleutels herstellen. Verwijder ze alleen permanent als u zeker weet dat de bestanden goed zijn versleuteld." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Herstel cryptosleutels" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Verwijder cryptosleutels" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Toon opslaglocatie" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Toon laatste inlog" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Inlognaam" @@ -979,19 +987,19 @@ msgstr "Iedereen" msgid "Admins" msgstr "Beheerders" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Standaard limiet" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ongelimiteerd" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anders" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 381cf66a73f6bbfd1c47edbe3825d8cf69a01324..a3272d9c153fb3a3e6804f9bcf12c5daf919e82d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 05:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Geen actie opgegeven" msgid "No configuration specified" msgstr "Geen configuratie opgegeven" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Geen gegevens verstrekt" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Kon configuratie %s niet instellen" @@ -105,65 +105,65 @@ msgstr "Kon de Base DN niet vaststellen" msgid "Please specify the port" msgstr "Geef de poort op" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuratie OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuratie onjuist" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuratie incompleet" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecteer groepen" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecteer objectklasse" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecteer attributen" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Verbindingstest geslaagd" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Verbindingstest mislukt" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bevestig verwijderen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s groep gevonden" msgstr[1] "%s groepen gevonden" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s gebruiker gevonden" msgstr[1] "%s gebruikers gevonden" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Kon de gewenste functie niet vinden" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Ongeldige server" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 4791f63f47ff2e4dbebfa5a7bb4cef9979765778..73b93c05e6b044817e4eb82f9d5ea29a4a1f7325 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kevin Brubeck Unhammer , 2013 +# Kevin Brubeck Unhammer , 2013-2014 # brekkjen , 2014 # Kevin Brubeck Unhammer , 2013 # Kevin Brubeck Unhammer , 2013 @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -152,78 +152,30 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mappe" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekund sidan" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minutt sidan" -msgstr[1] "%n minutt sidan" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n time sidan" -msgstr[1] "%n timar sidan" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag sidan" -msgstr[1] "%n dagar sidan" - -#: js/js.js:1284 -msgid "last month" -msgstr "førre månad" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n månad sidan" -msgstr[1] "%n månadar sidan" - -#: js/js.js:1286 -msgid "last year" -msgstr "i fjor" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år sidan" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" @@ -245,7 +197,7 @@ msgstr "" #: js/lostpassword.js:10 msgid "I know what I'm doing" -msgstr "" +msgstr "Eg veit kva eg gjer" #: js/lostpassword.js:13 lostpassword/templates/resetpassword.php:9 msgid "Reset password" @@ -329,11 +281,11 @@ msgstr "Klarte ikkje å lasta fil-finst-mal" #: js/setup.js:96 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/setup.js:97 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/setup.js:98 msgid "So-so password" @@ -390,7 +342,7 @@ msgstr "" #: js/share.js:389 msgid "Share link" -msgstr "" +msgstr "Del lenkje" #: js/share.js:394 msgid "" @@ -403,7 +355,7 @@ msgstr "Passordvern" #: js/share.js:400 msgid "Choose a password for the public link" -msgstr "" +msgstr "Vel eit passord for den offentlege lenkja" #: js/share.js:406 msgid "Allow Public Upload" @@ -447,7 +399,7 @@ msgstr "" #: js/share.js:613 msgid "can share" -msgstr "" +msgstr "kan dela" #: js/share.js:616 msgid "can edit" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1660e0185a2d67c4dd493934f9df8f54440dc4fd..2497b286fe76def8cbc91764b1578db8e89cdc5a 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" @@ -30,7 +30,7 @@ msgstr "" #: ajax/list.php:52 msgid "Unknown error" -msgstr "" +msgstr "Ukjend feil" #: ajax/move.php:15 #, php-format diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 293ebbe2d57407d57e598b240b2999d19a1da430..e3a7ba5ce74dd3e77268a4de6da7685f17226fd9 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Tenar" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Brukarnamn" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personleg" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Brukarar" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Slett" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index faaa351a2c348d503da9345fb2f80884d73261b1..653c789baed8692d9b1e8250ecfd0f769ad24040 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 1883fb6f5bbae713e6a8b038392249f0b494323c..fbfd2ac7c47e9ea82b08391a93f49b874f4b7f77 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index a3a82153465cf24486688b475d7629067acc8d18..dbcdab279f03230faecfb1ffc33d3789b08fff65 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +19,33 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index c9f451652374d83afeaa3de65aab21fce88e9d60..dddc966ba206522e8b6302828063434f71392c87 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -282,11 +282,11 @@ msgstr "Vel eit profilbilete" #: js/personal.js:287 msgid "Very weak password" -msgstr "" +msgstr "Veldig svakt passord" #: js/personal.js:288 msgid "Weak password" -msgstr "" +msgstr "Svakt passord" #: js/personal.js:289 msgid "So-so password" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "angra" @@ -352,27 +352,27 @@ msgstr "Slett" msgid "never" msgstr "aldri" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "legg til gruppe" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -736,11 +736,11 @@ msgstr "Meir" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Passord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Passord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbilete" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Last opp ny" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vel ny frå Filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fjern bilete" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Anten PNG eller JPG. Helst kvadratisk, men du får moglegheita til å beskjera det." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vel som profilbilete" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Innloggingsnamn" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ubegrensa" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Anna" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index d26153c9716092324fa526c2e0533825b7ef0acc..fa6d38721bc14bf9f0e1ee6972fd5747e57b1846 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vel grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Tenar" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Passord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 1afed8ba6b51ea43e5836b6c73d3b0dd7f775764..f06abdd50116669e5de929f55eeacc760bad8852 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/nqo/files_external.po b/l10n/nqo/files_external.po index db9b13e14d24c56dd6aa8c32cc61ef231263340f..501ba2dcd11e1c62b515c036c032e9d46d606015 100644 --- a/l10n/nqo/files_external.po +++ b/l10n/nqo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index dd0fcb167d797548dbfc1e75fcd7f191a2ca6a37..4cedb8af7c5cb1b405a46769307d842c1bb97845 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 304f807d9ec90b2d1e2fb74d6d1321706c977d6c..b7d94444c9faacd5623e0062958a8e554ca43a13 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,78 +148,30 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configuracion" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dorsièr" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segonda a" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "uèi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ièr" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "mes passat" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "an passat" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ans a" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 299f4c41b42111b7c0269712c7f053eadf875ccd..2e3fc6db2d2cd8c88473dfd7de8741b9987bdb26 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 6a6a706e6da37b52c43af8f284fe8fef804b33c9..9b649fc60a3cd387ec39efab6655acd867183459 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Non d'usancièr" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grops" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usancièrs" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Escafa" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 941fbbfa0ad60fa6bb2515aec58482180aed2620..7acb2d0669ce18ea8848a25419054b9a57dbfb88 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 03927ac7e2c883632e38033b7de4985e2998dde9..6169c6600a7a05e45175fa34f87920eab3bc4269 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index f73b2b0acb9f776721860b88acad4b5354ded770..8f138c998c39b12d40bc7fefb0565deacb90792d 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 9c5aeac07ac01967b4ef5d549d78d7c25a3e6a10..eb1250e711e7c099530d19714c3592a1f1050489 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "defar" @@ -349,27 +349,27 @@ msgstr "Escafa" msgid "never" msgstr "jamai" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "Mai d'aquò" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Senhal" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Annula" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Lenga" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota per defaut" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Autres" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index ca93bc819c427d9b68d943d0cde5ac8d3130cd02..5f46a5620e397d558636f6af8dd337f27a669694 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Senhal" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/or_IN/core.po b/l10n/or_IN/core.po index e52633e44af2db32d6407c744e3f35d9711cf90a..6e5d0343cb482f43dbf9aeece33253dbe7e3f973 100644 --- a/l10n/or_IN/core.po +++ b/l10n/or_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po index c2f9ab6090b8ab9343a19485feac6b52b36a5057..d9c8b72f13ac0d671d1c62ba8551dbe66797c240 100644 --- a/l10n/or_IN/files_external.po +++ b/l10n/or_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po index c494e449ea3b0cecc5d5dd5c125759d741c2f45c..e2e6ca206c039ec85c47e3c1de09555015347db7 100644 --- a/l10n/or_IN/settings.po +++ b/l10n/or_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 2d71ea96269409e6df73d1db937c846c33fc2275..9ede33850ea435842ec3dc000b22681117fb21b0 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "ਅੱਜ" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ਕੱਲ੍ਹ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ਪਿਛਲੇ ਸਾਲ" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index c70970293bef2a0794a42ecd9bf69b30429631ba..0e7c3cf52cfa70258318ddd290a7df7d3b40e62a 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 6e0a828f8fafddbb73eb94b1bb20312894b2bac2..acbf84a5687fab671da0cd65590a9122bcfd9986 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "ਗਰੁੱਪ" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index c7ece5eaf5e17cb674d1becaf7a88b766e6cd949..e23ea542b89c7ee995c98001dbf1493f11f3589b 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index c8d65a145f69e0186bca885dad217286048b5065..5b3452060931fbc3436bcca081f53d0aefd3367a 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index b1b00e258790e99edf888c29e989129d798e1506..15cb398bce5faaf67c2b73c746e2ca1fa6839bf9 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 723e278275fae0dea53560aed1156a7136ac3c4c..f130055dc6a11f4bd628bcf80fc4fae62c23bf85 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ਵਾਪਸ" @@ -350,27 +350,27 @@ msgstr "ਹਟਾਓ" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "ਗਰੁੱਪ ਸ਼ਾਮਲ" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ਲਾਗਇਨ" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index a9285449ff46479d467004bfb4a0186a0e6bed8f..0a23f1eeb819736f13fcec3e7fea577336683025 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-06-04 01:54-0400\n" -"PO-Revision-Date: 2014-06-04 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,66 +102,66 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:83 lib/wizard.php:97 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:130 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:825 lib/wizard.php:837 -msgid "Invalid Host" +#: lib/wizard.php:392 lib/wizard.php:1128 +msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:1025 -msgid "Could not find the desired feature" +#: lib/wizard.php:935 lib/wizard.php:947 +msgid "Invalid Host" msgstr "" #: settings.php:52 @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ਪਾਸਵਰ" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 8a638b0800182f868d6bc498adce9e3d34d67630..db7b86186610993b51307df02b627a8d31a17c2e 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Maciej Przybecki \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -153,82 +153,30 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Plik" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Folder" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Obraz" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Dźwięk" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekund temu" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minute temu" -msgstr[1] "%n minut temu" -msgstr[2] "%n minut temu" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n godzine temu" -msgstr[1] "%n godzin temu" -msgstr[2] "%n godzin temu" - -#: js/js.js:1281 -msgid "today" -msgstr "dziś" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "wczoraj" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dzień temu" -msgstr[1] "%n dni temu" -msgstr[2] "%n dni temu" - -#: js/js.js:1284 -msgid "last month" -msgstr "w zeszłym miesiącu" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n miesiąc temu" -msgstr[1] "%n miesięcy temu" -msgstr[2] "%n miesięcy temu" - -#: js/js.js:1286 -msgid "last year" -msgstr "w zeszłym roku" - -#: js/js.js:1287 -msgid "years ago" -msgstr "lat temu" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nie mogę wysłać maila resetującego. Skontaktuj się z administratorem." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index aa1743abcaee0ce221bb7f0d901ec3d64fa091fb..e02f4d15786285fa7ff9e00d51f34c09bfcb13c0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 912819401e81d7c916555a0d908c79e0f274a005..8d5ae01f8720e770bf0b7fc01751f3c037bb8a60 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Krzysztof Łojowski \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "Klucz" msgid "Secret" msgstr "Hasło" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Kosz" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "Klucz hasła" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nazwa hosta (opcjonalnie)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (opcjonalnie)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (opcjonalnie)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "Hasło aplikacji" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nazwa użytkownika" @@ -150,14 +150,6 @@ msgstr "Hasło klienta" msgid "OpenStack Object Storage" msgstr "Magazyn obiektów OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Użytkownik (wymagany)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Kosz (wymagany)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (opcjonalny dla magazynu obiektów OpenStack)" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL lub zakończenie jednostki (wymagane dla magazynu obiektów OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Czas wygaśnięcia żądań HTTP w sekundach (opcjonalne)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "Osobiste" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Zapisano" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Uwaga: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "oraz" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Uwaga: Wsparcie dla cURL w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Uwaga: Wsparcie dla FTP w PHP nie zostało włączone lub zainstalowane. Zamontowanie %s nie jest możliwe. Proszę poproś Twojego administratora o zainstalowanie go." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "Dostępne przez" msgid "Add storage" msgstr "Dodaj zasoby dyskowe" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Brak użytkownika lub grupy" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Wszyscy uzytkownicy" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupy" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Użytkownicy" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Usuń" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Włącz zewnętrzne zasoby dyskowe użytkownika" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Pozwól użytkownikom montować następujące zewnętrzne zasoby dyskowe" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Główny certyfikat SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importuj główny certyfikat" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 85c2c69b0069effb962dbbd52e7e58ed3b641787..dc78a658a9057be90d7eb8f86275d2e304b9560e 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 08:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 2d9c1f41683fe0bb16a755d3a6c6f0312e0143ac..57b73e9d5720ba56b9d760ce257ede63be39cb97 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index bcef1dcd19ff1a7e35b94bb60b8e7d29f2fe75e5..62a1e9a0ffb659a2b33fd33906c7c8b823582c22 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -24,33 +24,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nie można zapisać do katalogu \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Można to zwykle rozwiązać przez dodanie serwerowi www uprawnień zapisu do katalogu config." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Zobacz %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Można to zwykle rozwiązać przez %sdodanie serwerowi www uprawnień zapisu do katalogu config%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Wykryto przykładową konfigurację" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -172,12 +172,12 @@ msgstr "Token wygasł. Proszę ponownie załadować stronę." msgid "Unknown user" msgstr "Nieznany użytkownik" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s wpisz nazwę użytkownika do bazy" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s wpisz nazwę bazy." @@ -193,7 +193,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s." #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." @@ -202,23 +202,23 @@ msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Użytkownik i/lub hasło do MySQL/MariaDB są niepoprawne" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Błąd DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -243,15 +243,15 @@ msgstr "Użytkownik '%s'@'%%' MySQL/MariaDB już istnieje." msgid "Drop this user from MySQL/MariaDB." msgstr "Usuń tego użytkownika z MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nie można ustanowić połączenia z bazą Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" @@ -343,68 +343,68 @@ msgstr "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z lin msgid "Share type %s is not valid for %s" msgstr "Typ udziału %s nie jest właściwy dla %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nie można ustawić daty wygaśnięcia. Udziały nie mogą wygasać później niż %s od momentu udostępnienia" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nie można ustawić daty wygaśnięcia. Data wygaśnięcia jest w przeszłości." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index d3260c6dd8360c0a1ae5fa731399f574a688ec2b..dcc7ae96ab59863bca10be8ef1a0da11f0893d27 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Maciej Przybecki \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomo msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Szyfrowanie" @@ -331,7 +331,7 @@ msgstr "Należy podać prawidłową nazwę grupy" msgid "deleted {groupName}" msgstr "usunięto {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "cofnij" @@ -355,27 +355,27 @@ msgstr "Usuń" msgid "never" msgstr "nigdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "usunięto {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "dodaj grupę" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" @@ -739,11 +739,11 @@ msgstr "Więcej" msgid "Less" msgstr "Mniej" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Wersja" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Hasło" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Pełna nazwa" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Wypełnij adres email aby włączyć odzyskiwanie hasła oraz otrzymywać powiadomienia" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Zdjęcie profilu" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Wczytaj nowe" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Wybierz nowe z plików" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Usuń zdjęcie" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Twój awatar jest ustawiony jako domyślny." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anuluj" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Wybierz zdjęcie profilu" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Język" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Twoje klucze szyfrujące zostały przeniesione do lokalizacji archialnej. Jeśli coś poszło nie tak, możesz je przywrócić. Usuń je trwale tylko, gdy jesteś pewien(na), że wszystkie pliki zostały prawidłowo zdeszyfrowane." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Przywróć klucze szyfrujące" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Usuń klucze szyfrujące" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Login" @@ -981,19 +989,19 @@ msgstr "Wszyscy" msgid "Admins" msgstr "Administratorzy" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Domyślny udział" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Bez limitu" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Inne" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index bb151d7b71c13eb62fb18510c5cbd13929aa89f0..cc1eea350bd4aeb0971e9809e74ac31e02d328f5 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Maciej Przybecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -54,11 +54,11 @@ msgstr "Nie określono akcji" msgid "No configuration specified" msgstr "Nie określono konfiguracji" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nie określono danych" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nie można ustawić konfiguracji %s" @@ -107,47 +107,47 @@ msgstr "Nie można ustalić bazowego DN" msgid "Please specify the port" msgstr "Proszę podać port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfiguracja poprawna" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Konfiguracja niepoprawna" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfiguracja niekompletna" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Wybierz grupy" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Wybierz obiekty klas" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Wybierz atrybuty" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test połączenia udany" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test połączenia nie udany" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -155,7 +155,7 @@ msgstr[0] "%s znaleziona grupa" msgstr[1] "%s znalezionych grup" msgstr[2] "%s znalezionych grup" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -163,11 +163,11 @@ msgstr[0] "%s znaleziony użytkownik" msgstr[1] "%s znalezionych użytkowników" msgstr[2] "%s znalezionych użytkowników" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nie można znaleźć żądanej funkcji" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Niepoprawny Host" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Określa jakiego filtru użyć podczas próby zalogowania. %%uid zastępuje nazwę użytkownika w procesie logowania. Przykład: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Serwer" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Serwer:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Dodaj konfigurację servera" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Usuń konfigurację" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Użytkownik DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN użytkownika klienta, z którym powiązanie wykonuje się, np. uid=agent,dc=example,dc=com. Dla dostępu anonimowego pozostawić DN i hasło puste" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Hasło" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Dla dostępu anonimowego pozostawić DN i hasło puste." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Jedna baza DN na linię" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 5bcb2054b5a4d9a41c8848209db8b81176df41ba..08aa6518373de5ef794aaa137aa211be260fda3a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,78 +151,30 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configurações" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Arquivo" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Pasta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagem" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "segundos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] " há %n minuto" -msgstr[1] "há %n minutos" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "há %n hora" -msgstr[1] "há %n horas" - -#: js/js.js:1281 -msgid "today" -msgstr "hoje" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ontem" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "há %n dia" -msgstr[1] "há %n dias" - -#: js/js.js:1284 -msgid "last month" -msgstr "último mês" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "há %n mês" -msgstr[1] "há %n meses" - -#: js/js.js:1286 -msgid "last year" -msgstr "último ano" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Não foi possível enviar e-mail de redefinição. Por favor, contate o administrador." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 92506afbad0c920e2f136cbe316096bb8b5ad52b..3fca8af383fe90f5c4c1048abba04a11813311a6 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 758c99aace1d7d33a5db93e2e50b4f5fb84d40d2..f87db2130912d0d03b42fe95b870758456205a05 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "Chave" msgid "Secret" msgstr "Segredo" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Cesta" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Chave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome do Host (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Região (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Segredo da Aplicação" msgid "Host" msgstr "Host" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de Usuário" @@ -148,14 +148,6 @@ msgstr "Segredo do cliente" msgid "OpenStack Object Storage" msgstr "Armazenamento de Objetos OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Nome do Usuário (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Cesta (requerido)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Região (opcional para armazenamento de objetos OpenStack)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Ponto final de identidade da URL (obrigatório para armazenamento de objetos OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Tempo limite de solicitações HTTP em segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Todos os usuários. Digite para selecionar usuário ou grupo." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(grupo)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvo" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Nota:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Nota: O suporte cURL do PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Nota: O suporte FTP no PHP não está habilitado ou instalado. Montagem de %s não é possível. Por favor, solicite ao seu administrador do sistema para instalá-lo." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Disponível para" msgid "Add storage" msgstr "Adicionar Armazenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Nenhum usuário ou grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os Usuários" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Usuários" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Excluir" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Habilitar Armazenamento Externo do Usuário" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir que usuários montem o seguinte armazenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados SSL raíz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar Certificado Raíz" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index cf8d0c0eb43155f8d1c60bb50f6bde1d26fe2f20..88377f8ac9e68d946803d81bacc3e0c1336f6ab3 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-21 01:54-0400\n" -"PO-Revision-Date: 2014-08-20 18:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: dudanogueira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 1f24f7716254697f7517d708f7fc4b193ea8b5ea..f38127157667df9ffd8bbb08e010962df3a5a780 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b9c36c96918534b1a677715d02a99921b89269d5..a201e6792042e64f79984b3126d3c12ff577dfa8 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Não é possível gravar no diretório \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Isso geralmente pode ser corrigido dando o acesso de gravação ao webserver para o diretório de configuração" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Isso geralmente pode ser corrigido dando permissão de gravação %sgiving ao webserver para o directory%s de configuração." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Exemplo de configuração detectada" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirou. Por favor recarregue a página." msgid "Unknown user" msgstr "Usuário desconhecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s insira o nome de usuário do banco de dados." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s insira o nome do banco de dados." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de usuário e/ou senha MS SQL inválido(s): %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou a do administrador." @@ -197,23 +197,23 @@ msgstr "Você precisa inserir uma conta existente ou a do administrador." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB nome de usuário e/ou senha não é válida" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro no BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "MySQL/MariaDB usuário '%s'@'%%' já existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar esse usuário de MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Conexão Oracle não pode ser estabelecida" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de usuário e/ou senha Oracle inválido(s)" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" @@ -338,68 +338,68 @@ msgstr "Compartilhamento %s falhou, porque compartilhamento com links não é pe msgid "Share type %s is not valid for %s" msgstr "Tipo de compartilhamento %s não é válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Não é possível definir a data de expiração. Compartilhamentos não podem expirar mais tarde que %s depois de terem sido compartilhados" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Não é possível definir a data de validade. Data de expiração está no passado" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Compartilhamento backend %s não encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Compartilhamento backend para %s não encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Compartilhando %s falhou, porque o usuário %s é o compartilhador original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f815ae7aef015644518c8b1778e3f79f61dccf9b..253e430696338f09c5c5171a6deb529e935ef727 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +54,7 @@ msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de en msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Criptografia" @@ -328,7 +328,7 @@ msgstr "Um nome de grupo válido deve ser fornecido" msgid "deleted {groupName}" msgstr "eliminado {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfazer" @@ -352,27 +352,27 @@ msgstr "Excluir" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "eliminado {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "adicionar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O diretório home para o usuário \"{user}\" já existe" @@ -736,11 +736,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versão" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Senha" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome Completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Preencha com um e-mail para permitir a recuperação de senha e receber notificações" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagem para o perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Enviar nova foto" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selecinar uma nova dos Arquivos" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Seu avatar é fornecido por sua conta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolha como imagem para o perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Descriptografar todos os Arquivos" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Suas chaves de criptografia forão movidas para o local de backup. Se alguma coisa deu errado, você pode salvar as chaves. Só excluí-las permanentemente se você tiver certeza de que todos os arquivos forão descriptografados corretamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar Chaves de Criptografia" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Eliminar Chaves de Criptografia" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de Login" @@ -978,19 +986,19 @@ msgstr "Para todos" msgid "Admins" msgstr "Administradores" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota Padrão" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index b339f7e1eaa798209a4bc68dd0e3ae128cf7db2f..33f44ad36c87fe40dcb294c528a144859d188e57 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Nenhuma ação especificada" msgid "No configuration specified" msgstr "Nenhuma configuração especificada" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Não há dados especificados" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Não foi possível definir a configuração %s" @@ -104,65 +104,65 @@ msgstr "Não foi possível determinar a Base DN" msgid "Please specify the port" msgstr "Por favor, especifique a porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selecionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecione classes de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecione os atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Teste de conexão bem sucedida" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Teste de conexão falhou" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "grupo% s encontrado" msgstr[1] "grupos% s encontrado" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "usuário %s encontrado" msgstr[1] "usuários %s encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Não foi possível encontrar a função desejada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Host Inválido" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define o filtro a ser aplicado, quando o login for feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servidor:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adicionar Configuração de Servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Excluir Configuração" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Host" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Você pode omitir o protocolo, exceto quando requerer SSL. Então inicie com ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Usuário" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "O DN do cliente usuário com qual a ligação deverá ser feita, ex. uid=agent,dc=example,dc=com. Para acesso anônimo, deixe DN e Senha vazios." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Senha" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anônimo, deixe DN e Senha vazios." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Uma base DN por linha" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 7ebe4a930e13292ac980927eeabaf7b5a36e4077..16e0c47c3d8ee0c3a6397bafad3c535c2acf4f9b 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,12 +52,12 @@ msgstr "Atualização do esquema da base de dados verificada." #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "Atualização do esquema da base de dados verificada." #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "Actualizado \"%s\" para %s" #: ajax/update.php:33 #, php-format @@ -160,78 +160,30 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Configurações" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Ficheiro" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Pasta" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagem" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Minutos atrás" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minuto atrás" -msgstr[1] "%n minutos atrás" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n hora atrás" -msgstr[1] "%n horas atrás" - -#: js/js.js:1281 -msgid "today" -msgstr "hoje" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ontem" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dia atrás" -msgstr[1] "%n dias atrás" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultímo mês" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n mês atrás" -msgstr[1] "%n meses atrás" - -#: js/js.js:1286 -msgid "last year" -msgstr "ano passado" - -#: js/js.js:1287 -msgid "years ago" -msgstr "anos atrás" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ocorreu um problema com o envio do e-mail, por favor contactar o administrador." @@ -869,12 +821,12 @@ msgstr "Por favor contacte o seu administrador. Se é um administrador desta ins msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio." #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "Adicionar \"%s\" como um domínio de confiança" #: templates/update.admin.php:3 #, php-format @@ -904,7 +856,7 @@ msgstr "Iniciar atualização" msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "Para evitar tempos de espera com instalações maiores, você pode em vez disso, executar o seguinte comando a partir do diretório de instalação:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f1d751779066d622402b8073b9da235d9807792b..628190b35fd8e5e3652a8a755b699e00c5544879 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgstr "O servidor não consegue abrir URLs, por favor verifique a configuraçã #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "" +msgstr "O ficheiro excede a sua quota por %s" #: ajax/newfile.php:141 #, php-format @@ -334,7 +334,7 @@ msgstr "{dirs} e {files}" #: lib/app.php:80 #, php-format msgid "%s could not be renamed as it has been deleted" -msgstr "" +msgstr "Não foi possível renomear %s devido a ter sido eliminado" #: lib/app.php:113 #, php-format diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index e554c7d29aaaf322bfa326a43d6ec9c6c7de3da9..f89397a7aedc57cd12d08cb8fdaebb112637a1dd 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -73,7 +73,7 @@ msgstr "Chave" msgid "Secret" msgstr "Secreto" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -90,16 +90,16 @@ msgid "Secret Key" msgstr "Chave Secreta" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Nome do Hospedeiro (opcional)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Porta (opcional)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Região (opcional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -122,8 +122,8 @@ msgstr "Chave secreta da aplicação" msgid "Host" msgstr "Endereço" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nome de utilizador" @@ -153,14 +153,6 @@ msgstr "Segredo do cliente" msgid "OpenStack Object Storage" msgstr "Armazenamento de objetos OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Utilizador (requerido)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (necessário)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Região (opcional para OpenStack Object Storage)" @@ -186,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Nome do Serviço (necessário para OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout de solicitações HTTP em segundos (opcional)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -237,33 +229,41 @@ msgstr "Pessoal" msgid "System" msgstr "Sistema" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Guardado" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Aviso: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "e" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Aviso: O suporte cURL no PHP não está activo ou instalado. Não é possível montar %s. Peça ao seu administrador para instalar." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Aviso: O suporte FTP no PHP não está activo ou instalado. Não é possível montar %s. Peça ao seu administrador para instalar." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -306,39 +306,23 @@ msgstr "Disponível para " msgid "Add storage" msgstr "Adicionar armazenamento" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Sem utilizador nem grupo" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Todos os utilizadores" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupos" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilizadores" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Activar Armazenamento Externo para o Utilizador" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permitir que os utilizadores montem o seguinte armazenamento externo" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificados SSL de raiz" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importar Certificado Root" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 38cbce32bc7028a575c845c2c9d1ddc2ade9b90d..7eca34df8fb097ca438383f496c6bdd5d9b376e5 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-20 01:54-0400\n" -"PO-Revision-Date: 2014-08-19 15:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 8c2b18328b9e038fae54fbd2eff86d4c694d1ae2..da8bb109c3f2184e7b3a21915a4ef7ebb5f334a6 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e057c71d1d04907dc16d0e802aeaf2581e104fc7..b1902cae4a516e56a548ae742ca2944a06ee17d6 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Nelson Rosado \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,38 +25,38 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Não é possível gravar na directoria \"configurar\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Isto pode ser resolvido normalmente dando ao servidor web direitos de escrita ao directório de configuração" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Ver %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" -msgstr "" +msgstr "Exemplo de configuração detectada" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " "before performing changes on config.php" -msgstr "" +msgstr "Foi detectado que a configuração de amostra foi copiada. Isso pode danificar a sua instalação e não é suportado. Por favor, leia a documentação antes de realizar mudanças no config.php" #: private/app.php:374 msgid "Help" @@ -173,12 +173,12 @@ msgstr "O token expirou. Por favor recarregue a página." msgid "Unknown user" msgstr "Utilizador desconhecido" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de utilizador da base de dados" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de dados" @@ -194,7 +194,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nome de utilizador/password do MySQL é inválido: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Precisa de introduzir uma conta existente ou de administrador" @@ -203,23 +203,23 @@ msgstr "Precisa de introduzir uma conta existente ou de administrador" msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nome de utilizador/password do MySQL/Maria DB inválida" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erro na BD: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -244,15 +244,15 @@ msgstr "O utilizador '%s'@'%%' do MySQL/MariaDB já existe" msgid "Drop this user from MySQL/MariaDB." msgstr "Eliminar este utilizador do MySQL/MariaDB" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Não foi possível estabelecer a ligação Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Nome de utilizador/password do Oracle inválida" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" @@ -344,68 +344,68 @@ msgstr "A partilha de %s falhou, porque partilhar com links não é permitido" msgid "Share type %s is not valid for %s" msgstr "O tipo de partilha %s não é válido para %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Não é possível definir data de expiração. As partilhas não podem expirar mais de %s depois de terem sido partilhadas" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Não é possivel definir data de expiração. A data de expiração está no passado" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Partilhar backend %s tem de implementar o interface OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Partilha backend %s não foi encontrado" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Partilha backend para %s não foi encontrado" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "A partilha %s falhou, porque o utilizador %s é o proprietário original" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "A partilha %s falhou, porque repartilhar não é permitido" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "A partilha %s falhou, devido a partilha em segundo plano para %s não conseguir encontrar a sua fonte" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -529,7 +529,7 @@ msgstr "Definindo local para %s falhado" msgid "" "Please install one of these locales on your system and restart your " "webserver." -msgstr "" +msgstr "Por favor instale um destes locais no seu sistema e reinicie o seu servidor web." #: private/util.php:494 msgid "Please ask your server administrator to install the module." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9f0ba14c8fd53942844eeba73ea1b55643212432..db8f2bb7087f216c84f4a2ad7798f0cdc69e0cd7 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -63,7 +63,7 @@ msgstr "Você precisa de configurar o seu e-mail de usuário antes de ser capaz msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Encriptação" @@ -207,11 +207,11 @@ msgstr "Não foi possível alterar a sua password" #: js/admin.js:45 msgid "Are you really sure you want add \"{domain}\" as trusted domain?" -msgstr "" +msgstr "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?" #: js/admin.js:46 msgid "Add trusted domain" -msgstr "" +msgstr "Adicionar domínio confiável " #: js/admin.js:146 msgid "Sending..." @@ -337,7 +337,7 @@ msgstr "Um nome válido do grupo tem de ser fornecido" msgid "deleted {groupName}" msgstr "apagar {Nome do grupo}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "desfazer" @@ -361,27 +361,27 @@ msgstr "Eliminar" msgid "never" msgstr "nunca" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "apagar{utilizador}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "Adicionar grupo" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" @@ -514,14 +514,14 @@ msgstr "A sua versão do PHP está ultrapassada. Recomendamos que actualize para #: templates/admin.php:151 msgid "PHP charset is not set to UTF-8" -msgstr "" +msgstr "PHP charset não está definido para UTF-8" #: templates/admin.php:154 msgid "" "PHP charset is not set to UTF-8. This can cause major issues with non-ASCII " "characters in file names. We highly recommend to change the value of " "'default_charset' php.ini to 'UTF-8'." -msgstr "" +msgstr "PHP charset não está definido como UTF-8. Isso pode causar grandes problemas com caracteres não-ASCII em nomes de arquivo. Recomendamos para alterar o valor de php.ini 'default_charset' para 'UTF-8'." #: templates/admin.php:165 msgid "Locale not working" @@ -559,7 +559,7 @@ msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. I #: templates/admin.php:203 msgid "URL generation in notification emails" -msgstr "" +msgstr "Geração URL em e-mails de notificação" #: templates/admin.php:206 #, php-format @@ -568,7 +568,7 @@ msgid "" "system cron, there can be issues with the URL generation. To avoid these " "problems, please set the \"overwritewebroot\" option in your config.php file" " to the webroot path of your installation (Suggested: \"%s\")" -msgstr "" +msgstr "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")" #: templates/admin.php:220 msgid "Cron" @@ -745,11 +745,11 @@ msgstr "Mais" msgid "Less" msgstr "Menos" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versão" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Password" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Preencha com um endereço e-mail para permitir a recuperação de senha e receber notificações" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto do perfil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Carregar novo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Seleccionar novo a partir dos ficheiros" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pela sua conta original." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Cancelar" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Escolha uma fotografia de perfil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Idioma" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "As suas chaves de encriptação foram movidas para um local de segurança. Em caso de algo correr mal você pode restaurar as chaves. Só deve eliminar as chaves permanentemente se tiver certeza absoluta que os ficheiros são decrepitados correctamente." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Restaurar as chaves de encriptação" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Apagar as chaves de encriptação" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Nome de utilizador" @@ -987,19 +995,19 @@ msgstr "Para todos" msgid "Admins" msgstr "Administrador" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Quota por padrão" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Outro" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index d763d6f5ef883bf495478333d8ec838f15b6b888..f64aadbd4324d7bab0544a527f75be2286783bc7 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-02 01:54-0400\n" -"PO-Revision-Date: 2014-08-01 18:51+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Luis Jorge Simões das Neves \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -56,11 +56,11 @@ msgstr "Nenhuma acção especificada" msgid "No configuration specified" msgstr "Nenhuma configuração especificada" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nenhuma data especificada" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Não foi possível definir a configuração %s" @@ -109,65 +109,65 @@ msgstr "Não foi possível determinar a Base DN" msgid "Please specify the port" msgstr "Por favor indique a porta" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Selecionar classes de objetos" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selecionar atributos" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Teste de ligação com sucesso." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Erro no teste de ligação." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Deseja realmente apagar as configurações de servidor actuais?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmar a operação de apagar" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupo encontrado" msgstr[1] "%s grupos encontrados" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s utilizador encontrado" msgstr[1] "%s utilizadores encontrados" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Não se encontrou a função desejada" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Hospedeiro Inválido" @@ -259,60 +259,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Define o filtro a aplicar, quando se tenta uma sessão. %%uid substitui o nome de utilizador na ação de início de sessão. Exemplo: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Servidor" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Servvidor" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adicionar configurações do servidor" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Apagar Configuração" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Anfitrião" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porto" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN do utilizador" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "O DN to cliente " -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Password" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Para acesso anónimo, deixe DN e a Palavra-passe vazios." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Uma base DN por linho" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avançado" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 52cd198cc12be85b683a42b36ee350c2138d296c..076743fa69f5927504a7bf54a3d8881fb047b158 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -154,82 +154,30 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Setări" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fişier " -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dosar" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Imagine" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Audio" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "secunde în urmă" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "acum %n minut" -msgstr[1] "acum %n minute" -msgstr[2] "acum %n minute" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "acum %n oră" -msgstr[1] "acum %n ore" -msgstr[2] "acum %n ore" - -#: js/js.js:1281 -msgid "today" -msgstr "astăzi" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ieri" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "acum %n zi" -msgstr[1] "acum %n zile" -msgstr[2] "acum %n zile" - -#: js/js.js:1284 -msgid "last month" -msgstr "ultima lună" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%n luni în urmă" - -#: js/js.js:1286 -msgid "last year" -msgstr "ultimul an" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ani în urmă" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a133b1a9722a97cdfb746f9b6b47f610cce56f84..fd357a0ac852a7870e89e45889d2172133e3ae54 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index f1b26b9515d207f0376fff16bd8e41696e16dad5..fb69503e7e6fff5d9f9697dae9fd39d4bac8565a 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -69,7 +69,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Regiune" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "Gazdă" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Nume utilizator" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,33 +225,41 @@ msgstr "Personal" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Salvat" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "" msgid "Add storage" msgstr "Adauga stocare" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Toți utilizatorii" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupuri" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Utilizatori" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Șterge" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Permite stocare externă pentru utilizatori" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Permite utilizatorilor să monteze următoarea unitate de stocare" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Certificate SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importă certificat root" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 894c2c547801a044b911fc67add82286a775fe0d..e8dd4ccf95ecb67dab29785a37184e84b411f091 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Partajat cu tine" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Partajat cu alții" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 395dc49965158beef213c8c2900d457eb92011ce..c29c84f04fbe9f33346ee7ed2bbe07de267f535b 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index fa76128aa8f46dcbcc48c3f4535feec507114003..c91343b493bcf9ef39bc7e040dafc4a3463988aa 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -19,33 +19,33 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token expirat. Te rugăm să reîncarci pagina." msgid "Unknown user" msgstr "Utilizator necunoscut" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nume utilizator și/sau parolă MS SQL greșită: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -197,23 +197,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "Nume utilizator și/sau parolă MySQL/MariaDB greșită" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Eroare Bază de Date: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Utilizatorul MySQL/MariaDB '%s'@'%%' deja există." msgid "Drop this user from MySQL/MariaDB." msgstr "Șterge acest utilizator din MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 019bad7418466dcb6ea70b0edeab054c86fafde9..4ad8184a29b084b60f4b8f53ecf31b378d8b5c01 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -54,7 +54,7 @@ msgstr "" msgid "Send mode" msgstr "Modul de expediere" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Încriptare" @@ -328,7 +328,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "Anulează ultima acțiune" @@ -352,27 +352,27 @@ msgstr "Șterge" msgid "never" msgstr "niciodată" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "adăugaţi grupul" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Eroare la crearea utilizatorului" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există" @@ -736,11 +736,11 @@ msgstr "Mai mult" msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parolă" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Nume complet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Imagine de profil" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Încarcă una nouă" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Selectează una din Fișiere" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Înlătură imagine" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Doar png sau jpg de formă pătrată. " -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anulare" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Alege drept imagine de profil" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Limba" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Parolă" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Decriptează toate fișierele" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Autentificare" @@ -978,19 +986,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Cotă implicită" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Nelimitată" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Altele" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 818c096c26e438aab86f1c91052feb3fcc95a264..cc53205fe3087d61fcb524d23d95bd659cb97d07 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -50,11 +50,11 @@ msgstr "Nu este specificata nici o acţiune " msgid "No configuration specified" msgstr "Nu este specificata nici o configurare " -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,47 +103,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Configuraţie valida" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Configuraţie incorecta " -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Configuraţie incompleta " -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Selectaţi grupuri " -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Selectaţi caracteristici" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Testul de conectare a reuşit " -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Testul de conectare a eşuat " -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Sunteţi sigur ca vreţi sa ştergeţi configuraţia actuala a serverului ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Confirmaţi Ştergerea " -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -151,7 +151,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -159,11 +159,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Adăugaţi Configuraţia Serverului" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gazdă" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Portul" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN al utilizatorului" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN-ul clientului utilizator cu care se va efectua conectarea, d.e. uid=agent,dc=example,dc=com. Pentru acces anonim, lăsăți DN și Parolă libere." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parolă" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Pentru acces anonim, lăsați DN și Parolă libere." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Un Base DN pe linie" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în fila Avansat" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 756e06949fcfdf47cfe44852b22bdb38039edc5d..69298f6c4e30cf7d84c63dcf2c0f24bf37c174a4 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: sad2shade \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -174,82 +174,30 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Настройки" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Каталог" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Изображение" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Аудио" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "только что" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n минуту назад" -msgstr[1] "%n минуты назад" -msgstr[2] "%n минут назад" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n час назад" -msgstr[1] "%n часа назад" -msgstr[2] "%n часов назад" - -#: js/js.js:1281 -msgid "today" -msgstr "сегодня" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчера" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n день назад" -msgstr[1] "%n дня назад" -msgstr[2] "%n дней назад" - -#: js/js.js:1284 -msgid "last month" -msgstr "месяц назад" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n месяц назад" -msgstr[1] "%n месяца назад" -msgstr[2] "%n месяцев назад" - -#: js/js.js:1286 -msgid "last year" -msgstr "год назад" - -#: js/js.js:1287 -msgid "years ago" -msgstr "несколько лет назад" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Не удалось отправить письмо для сброса пароля. Пожалуйста, свяжитесь с вашим администратором." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index d29c837e9d79496605c6736e404ce43715e2396b..bf960c5442db02b8babf94953bccf8744bbc085b 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 9fc818527caaad1a7e150dd74124d6463b9f4fe3..01a124e74a2250dec22381cc86cd2bf0b5a5b374 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: wiracle\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -76,7 +76,7 @@ msgstr "Ключ" msgid "Secret" msgstr "Секрет" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Корзина" @@ -93,16 +93,16 @@ msgid "Secret Key" msgstr "Секретный ключ" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Хост (опц.)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Порт (опц.)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Регион (опц.)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -125,8 +125,8 @@ msgstr "Секретный ключ " msgid "Host" msgstr "Сервер" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Имя пользователя" @@ -156,14 +156,6 @@ msgstr "Клиентский ключ " msgid "OpenStack Object Storage" msgstr "Хранилище объектов OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Имя пользователя (обяз.)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (обяз.)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Регион (необяз. для Хранилища объектов OpenStack)" @@ -189,8 +181,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Тайм-аут HTTP запросов в секундах (опционально)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -240,33 +232,41 @@ msgstr "Личное" msgid "System" msgstr "Система" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Сохранено" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Примечание: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "и" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Примечание: Поддержка cURL в PHP не включена или не установлена. Монтирование %s невозможно. Обратитесь к вашему системному администратору." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Примечание: Поддержка FTP в PHP не включена или не установлена. Монтирование %s невозможно. Пожалуйста, обратитесь к системному администратору." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -309,39 +309,23 @@ msgstr "Доступно для" msgid "Add storage" msgstr "Добавить хранилище" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Нет пользователя или группы" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Все пользователи" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Группы" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Пользователи" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Удалить" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Включить пользовательские внешние носители" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Разрешить пользователям монтировать следующее внешнее хранилище данных" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Корневые сертификаты SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Импортировать корневые сертификаты" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index e4ab97f355b0fb0d09ef24eadac823756f082b9e..8850bc2c9b3aa70a2f8e7bfec84f8d723a5e98f8 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 11:10+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 2e7bf488447064b8f5579db1543cf1372a58dd03..44af9635cca097d95b0958e801308376a10a233c 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 95195dde9338bfb393b583da9bb5fd54ad433ca8..8fc8ab9fbf735f3d72b7f4c4671991bb5f516781 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: sad2shade \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -30,33 +30,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Запись в каталог \"config\" невозможна" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Обычно это можно исправить, предоставив веб-серверу права на запись в папке конфигурации" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Просмотр %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Обнаружена конфигурация из примера" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -178,12 +178,12 @@ msgstr "Токен просрочен. Перезагрузите страниц msgid "Unknown user" msgstr "Неизвестный пользователь" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введите имя пользователя базы данных." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введите имя базы данных." @@ -199,7 +199,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Неверное имя пользователя и/или пароль MS SQL: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." @@ -208,23 +208,23 @@ msgstr "Вы должны войти или в существующий акка msgid "MySQL/MariaDB username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль MySQL/MariaDB" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Ошибка БД: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -249,15 +249,15 @@ msgstr "Пользователь MySQL '%s'@'%%' уже существует." msgid "Drop this user from MySQL/MariaDB." msgstr "Удалить данного участника из MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "соединение с Oracle не может быть установлено" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль Oracle" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Вызываемая команда была: \"%s\", имя: %s, пароль: %s" @@ -349,68 +349,68 @@ msgstr "Не удалось установить общий доступ для msgid "Share type %s is not valid for %s" msgstr "Такой тип общего доступа как %s не допустим для %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Настройка прав доступа для %s невозможна, поскольку права доступа превышают предоставленные права доступа %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Не удалось произвести настройку прав доступа для %s , элемент не был найден." -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Невозможно установить дату окончания. Дата окончания в прошлом." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Бэкэнд для общего доступа %s не найден" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Бэкэнд для общего доступа к %s не найден" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Публикация %s неудачна, т.к. пользователь %s - публикатор оригинала файла" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Не удалось опубликовать %s, т.к. права %s превышают предоставленные права доступа " -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Публикация %s неудачна, т.к републикация запрещена" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Не удалось опубликовать %s, т.к. опубликованный бэкенд для %s не смог найти свой источник" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 1bfb87ce01a2c83578611245451e199462d51e90..b64ae60e5d02f34c20f0c2e29fb82e6f9e80a7ba 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -32,9 +32,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: sad2shade \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -76,7 +76,7 @@ msgstr "Вы должны настроить свой e-mail пользоват msgid "Send mode" msgstr "Отправить сообщение" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифрование" @@ -350,7 +350,7 @@ msgstr "Введите правильное имя группы" msgid "deleted {groupName}" msgstr "удалено {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "отмена" @@ -374,27 +374,27 @@ msgstr "Удалить" msgid "never" msgstr "никогда" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "удалён {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "добавить группу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" @@ -758,11 +758,11 @@ msgstr "Больше" msgid "Less" msgstr "Меньше" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версия" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Пароль" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Полное имя" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Введите свой email-адрес для того, чтобы включить возможность восстановления пароля и получения уведомлений" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Аватар" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Загрузить новый" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Выберите новый из файлов" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Удалить аватар" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Допустимые форматы: png и jpg. Если изображение не квадратное, то вам будет предложено обрезать его." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Будет использован аватар вашей оригинальной учетной записи." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Отменить" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Установить как аватар" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Язык" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Ваши ключи шифрования были архивированы. Если что-то пойдёт не так, вы сможете восстановить ключи. Удаляйте ключи из архива только тогда, когда вы будете уверены, что все файлы были успешно расшифрованы." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Восстановить Ключи Шифрования" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Удалить Ключи Шифрования" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Имя пользователя" @@ -1000,19 +1008,19 @@ msgstr "Все" msgid "Admins" msgstr "Администраторы" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота по умолчанию" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограниченно" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Другое" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 54604948178a20f20b6b3b6b6fee89187ba87cdd..e62e4a73f11dac9dbdd65f7489d9cc971546270b 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-08 01:54-0400\n" -"PO-Revision-Date: 2014-07-07 15:21+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Alexander Savchenko\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -62,11 +62,11 @@ msgstr "Действие не указано" msgid "No configuration specified" msgstr "Конфигурация не создана" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Нет данных" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Невозможно создать конфигурацию %s" @@ -115,47 +115,47 @@ msgstr "Невозможно определить Base DN" msgid "Please specify the port" msgstr "Укажите порт" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Конфигурация в порядке" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Конфигурация неправильна" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Конфигурация не завершена" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Выберите группы" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Выберите объектные классы" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Выберите атрибуты" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Подтверждение удаления" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -163,7 +163,7 @@ msgstr[0] "%s группа найдена" msgstr[1] "%s группы найдены" msgstr[2] "%s групп найдено" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -171,11 +171,11 @@ msgstr[0] "%s пользователь найден" msgstr[1] "%s пользователя найдено" msgstr[2] "%s пользователей найдено" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Неверный сервер" @@ -267,60 +267,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Определяет фильтр для применения при попытке входа. %%uid заменяет имя пользователя при входе в систему. Например: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Сервер" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Сервер:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Добавить конфигурацию сервера" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Удалить конфигурацию" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Сервер" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN пользователя" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN пользователя, под которым выполняется подключение, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Пароль" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонимного доступа оставьте DN и пароль пустыми." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "По одной базе поиска (Base DN) в строке." -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 9dd5ab39b1ff22f57afb19b61683d789b25466c4..c518b474ddf731ae339253517612341dfefd8011 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,78 +148,30 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "පින්තූරය" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "තත්පරයන්ට පෙර" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "අද" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "ඊයේ" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "පෙර මාසයේ" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "පෙර අවුරුද්දේ" - -#: js/js.js:1287 -msgid "years ago" -msgstr "අවුරුදු කීපයකට පෙර" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 16f8f6728bff2dc20e1472002bd711befa12293f..8cb27f5ba6300dc540a539a444080c151cd06bac 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 497a4603f2898bd3085f24522749007afae29b69..684b64649cfc1cb1eb0e178688c86dfed293c870 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "සත්කාරකය" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "පරිශීලක නම" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "පෞද්ගලික" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "සියළු පරිශීලකයන්" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "කණ්ඩායම්" - -#: templates/settings.php:106 -msgid "Users" -msgstr "පරිශීලකයන්" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "මකා දමන්න" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL මූල සහතිකයන්" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "මූල සහතිකය ආයාත කරන්න" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 2dd3ed0fb2436d455886bf2f3e3bae9d032237e3..4b2e3d3963303256aee724b59febc9a4022614e0 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 2991451fa86e50d6da917c41f0e0b3cc882cce77..e2bc55c436d87122e4110cfbadbde7b434cfc890 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index eb5fc0d0b73f64a3e84e0bfec90cc92aaefbe37e..23f33be59914777679ae106ccf4eef65928aad26 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 545e42ec517899ad8a5c7aceecf7109fb1190f15..aac9dc87a35306344eb89f48a4c1de63100a9f71 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "ගුප්ත කේතනය" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" @@ -349,27 +349,27 @@ msgstr "මකා දමන්න" msgid "never" msgstr "කවදාවත්" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "වැඩි" msgid "Less" msgstr "අඩු" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "එපා" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ප්‍රවිශ්ටය" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "සාමාන්‍ය සලාකය" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "වෙනත්" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 5ff263c32d670bd5934d7f76c43a01e3c268eade..470d37e8a15e274d1c5ff0741c4c36ac9ac42fe7 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "සත්කාරකය" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL අවශ්‍යය වන විට පමණක් හැර, අන් අවස්ථාවන්හිදී ප්‍රොටොකෝලය අත් හැරිය හැක. භාවිතා කරන විට ldaps:// ලෙස ආරම්භ කරන්න" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "තොට" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "මුර පදය" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 2ea03b6e851539b3b36d03f4bec9d1f6d57b6cdd..4733ba2f05b560e75ec009eaedecd824d3dc0eba 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+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" @@ -148,82 +148,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 9dd60f0519350c7b9bf58ba8f8b1df3ce05eb5c3..5a5721ddaa94d857f4555555c684b0d56ad058c7 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 8b78b6276868c7f96f071269a15c2a97c3f7c06b..0f9badc6594c0978036d94aaf58e0b0d6172271f 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Osobné" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Odstrániť" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index e2ea51951f9e0731a676bc08f2d1c0f5e765cf8a..d9cf754cce069bdeb50e39c49ddf62865a570dcc 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index c6fa7215ccba756cb86627e99bb3ff91104da37f..e783896bb7ac018f0813b2105739a23700f14f2f 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -17,33 +17,33 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 26638726321c52ade0431feb3469e38a5689ac46..820b263eaa568eee29765f1da714e50ca60748ae 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Odstrániť" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Ostatné" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e36e94b37d99bef424a8925798148c97ebe1602c..b72f46e812059bb81a244c10bb5b1f1641be7fd1 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,82 +150,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Súbor" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Priečinok" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Obrázok" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Zvuk" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pred sekundami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pred %n minútou" -msgstr[1] "pred %n minútami" -msgstr[2] "pred %n minútami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pred %n hodinou" -msgstr[1] "pred %n hodinami" -msgstr[2] "pred %n hodinami" - -#: js/js.js:1281 -msgid "today" -msgstr "dnes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včera" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "pred %n dňom" -msgstr[1] "pred %n dňami" -msgstr[2] "pred %n dňami" - -#: js/js.js:1284 -msgid "last month" -msgstr "minulý mesiac" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "pred %n mesiacom" -msgstr[1] "pred %n mesiacmi" -msgstr[2] "pred %n mesiacmi" - -#: js/js.js:1286 -msgid "last year" -msgstr "minulý rok" - -#: js/js.js:1287 -msgid "years ago" -msgstr "pred rokmi" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Nemožno poslať email pre obnovu. Kontaktujte prosím vášho administrátora." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index c5de0b98467b2049e509ebff30e78353035ddfa9..fcc480a735c9af1707cb582895ebc47ba7e24d3f 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index fb332bf5b3eab4d9ea206ac646084c9f9a2cf8f4..5fdfab1fca19d6f9bf26e0ae68b40af9f6635e2a 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: helix84 \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgstr "Kľúč" msgid "Secret" msgstr "Tajné" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Sektor" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "Tajný kľúč" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Hostname (voliteľný)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (voliteľný)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Región (voliteľný)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "Heslo aplikácie" msgid "Host" msgstr "Hostiteľ" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Používateľské meno" @@ -149,14 +149,6 @@ msgstr "Heslo klienta" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Používateľské meno (povinné)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Sektor (povinné)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Región (voliteľné pre OpenStack Object Storage)" @@ -182,8 +174,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL of identity endpoint (požadované pre OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Vypršanie HTTP požadiavkiek v sekundách (voliteľné)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -233,33 +225,41 @@ msgstr "Osobné" msgid "System" msgstr "Systém" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Uložené" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Poznámka: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "a" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "K dispozícii pre" msgid "Add storage" msgstr "Pridať úložisko" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Žiadny používateľ alebo skupina" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Všetci používatelia" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupiny" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Používatelia" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Zmazať" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Povoliť externé úložisko" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Povoliť používateľom pripojiť tieto externé úložiská" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Koreňové SSL certifikáty" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importovať koreňový certifikát" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 749d73b49dee0bf1403c7c6c9c4db4d2d7cb6537..ea8feb772098e8ad9604a7419f68f12350bc2a6b 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Neplatný alebo nedôveryhodný certifikát SSL" msgid "Couldn't add remote share" msgstr "Nemožno pridať vzdialené zdieľanie" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Zdieľané s vami" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Zdieľané s ostanými" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Zdieľané pomocou odkazu" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index fde7d2a69750d0ad2efc3feb600b1b113ed77a62..8cb43d0eeac2d35f5e622cb3f7e99e84cea0aabc 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Marián Hvolka \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index f34c8d75dac22ed798e608043d75035f1b3415fa..912cf8bfd9636366c7f7ca850b2b301491098718 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Nie je možné zapisovat do priečinka \"config\"!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "To je zvyčajne možné opraviť tým, že udelíte webovému serveru oprávnenie na zápis k adresáru s konfiguráciou." -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Pozri %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "To je zvyčajne možné opraviť tým, že %sudelíte webovému serveru oprávnenie na zápis k adresáru s konfiguráciou%s." -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Token vypršal. Obnovte, prosím, stránku." msgid "Unknown user" msgstr "Neznámy používateľ" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "Zadajte používateľské meno %s databázy." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "Zadajte názov databázy pre %s databázy." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Používateľské meno, alebo heslo MS SQL nie je platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." @@ -199,23 +199,23 @@ msgstr "Musíte zadať jestvujúci účet alebo administrátora." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre MySQL/MariaDB databázu je neplatné" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba DB: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "Používateľ '%s'@'%%' už v MySQL/MariaDB existuje" msgid "Drop this user from MySQL/MariaDB." msgstr "Zahodiť používateľa z MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Nie je možné pripojiť sa k Oracle" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" @@ -340,68 +340,68 @@ msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie odkazom nie je povolené" msgid "Share type %s is not valid for %s" msgstr "Typ zdieľania %s nie je platný pre %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Nastavenie povolení pre %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Nie je možné nastaviť dátum konca platnosti. Zdieľania nemôžu skončiť neskôr ako %s po zdieľaní." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Nie je možné nastaviť dátum konca platnosti. Dátum konca platnosti je v minulosti." -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Backend zdieľania %s musí implementovať rozhranie OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Backend zdieľania %s nebol nájdený" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Backend zdieľania pre %s nebol nájdený" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Zdieľanie %s zlyhalo, pretože používateľ %s je pôvodcom zdieľania" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Zdieľanie %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie ďalším nie je povolené" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Zdieľanie %s zlyhalo, backend zdieľania nenašiel zdrojový %s" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 1329ec6a12f7a57e9f9e07d8584ae22c86da1687..2f4e334acfe4ccba32d46c8162f3037b6f3ff671 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -54,7 +54,7 @@ msgstr "Musíte nastaviť svoj po​​užívateľský email, než budete môcť msgid "Send mode" msgstr "Mód odosielania" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifrovanie" @@ -328,7 +328,7 @@ msgstr "Musíte zadať platný názov skupiny" msgid "deleted {groupName}" msgstr "vymazaná {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "vrátiť" @@ -352,27 +352,27 @@ msgstr "Zmazať" msgid "never" msgstr "nikdy" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "vymazané {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "pridať skupinu" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje" @@ -736,11 +736,11 @@ msgstr "Viac" msgid "Less" msgstr "Menej" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Verzia" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Heslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Vaše heslo bolo zmenené" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Meno a priezvisko" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Zadajte emailovú adresu pre umožnenie obnovy zabudnutého hesla a pre prijímanie upozornení a oznámení" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Avatar" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Nahrať nový" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Vyberte nový zo súborov" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Zmazať obrázok" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Formát súboru png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je použitý z pôvodného účtu." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Zrušiť" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vybrať ako avatara" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Vaše šifrovacie kľúče boli zazálohované. Ak by sa niečo nepodarilo, dajú sa znovu obnoviť. Natrvalo ich vymažte len ak ste si istí, že sú všetky súbory bezchybne dešifrované." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnoviť šifrovacie kľúče" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Vymazať šifrovacie kľúče" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prihlasovacie meno" @@ -978,19 +986,19 @@ msgstr "Všetci" msgid "Admins" msgstr "Administrátori" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Predvolená kvóta" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Nelimitované" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Iné" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 50cd6abdeb8812c949e20fa872b0f7d3a9164fcf..98f5d54d9c941e93064c5c18902b795dd36f0a6e 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-19 01:54-0400\n" -"PO-Revision-Date: 2014-08-18 13:50+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: helix84 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Nie je vybraná akcia" msgid "No configuration specified" msgstr "Nie je určená konfigurácia" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Nie sú vybraté dáta" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Nemôžem nastaviť konfiguráciu %s" @@ -105,47 +105,47 @@ msgstr "Nemožno určiť základnú DN" msgid "Please specify the port" msgstr "Prosím, zadajte port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurácia je v poriadku" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nesprávna konfigurácia" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nekompletná konfigurácia" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Vybrať skupinu" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Vyberte triedy objektov" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Vyberte atribúty" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Test pripojenia bol úspešný" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Test pripojenia zlyhal" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Naozaj chcete zmazať súčasné nastavenie servera?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potvrdiť vymazanie" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -153,7 +153,7 @@ msgstr[0] "%s nájdená skupina" msgstr[1] "%s nájdené skupiny" msgstr[2] "%s nájdených skupín" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -161,11 +161,11 @@ msgstr[0] "%s nájdený používateľ" msgstr[1] "%s nájdení používatelia" msgstr[2] "%s nájdených používateľov" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Nemožno nájsť požadovanú funkciu" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neplatný hostiteľ" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 4373f4e41f5228116acde80c99cb773acb21ee2c..4e682fa84b70b790897d89d67b98db5212d5a262 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -150,86 +150,30 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Datoteka" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mapa" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Slika" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Zvok" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "pred nekaj sekundami" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pred %n minuto" -msgstr[1] "pred %n minutama" -msgstr[2] "pred %n minutami" -msgstr[3] "pred %n minutami" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pred %n uro" -msgstr[1] "pred %n urama" -msgstr[2] "pred %n urami" -msgstr[3] "pred %n urami" - -#: js/js.js:1281 -msgid "today" -msgstr "danes" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "včeraj" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "pred %n dnevom" -msgstr[1] "pred %n dnevoma" -msgstr[2] "pred %n dnevi" -msgstr[3] "pred %n dnevi" - -#: js/js.js:1284 -msgid "last month" -msgstr "zadnji mesec" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "pred %n mesecem" -msgstr[1] "pred %n mesecema" -msgstr[2] "pred %n meseci" -msgstr[3] "pred %n meseci" - -#: js/js.js:1286 -msgid "last year" -msgstr "lansko leto" - -#: js/js.js:1287 -msgid "years ago" -msgstr "let nazaj" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index eb2f62eaf60509519e742f666e8a5540ec10d6a0..6ce4099afa5bc9192d0ee715286e47e4c03b8286 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index d9dfca945e60e8e6bdea3d95474d54e6eacdb466..1f7ce85464c6acb531249ea2fdc1b4e89f5307f1 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Ključ" msgid "Secret" msgstr "Skrivni ključ" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Pomnilniško vedro" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Skrivni ključ" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Ime gostitelja (izbirno)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Vrata (izbirno)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Območje (izbirno)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Skrivni programski ključ" msgid "Host" msgstr "Gostitelj" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Uporabniško ime" @@ -148,14 +148,6 @@ msgstr "Skrivni ključ odjemalca" msgid "OpenStack Object Storage" msgstr "Shramba predmeta OpenStack" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Uporabniško ime (zahtevano)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Pomnilniško vedro (zahtevano)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Območje (zahtevano za shrambo predmeta OpenStack)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Naslov URL končne točke uporabnika (zahtevano za shrambo predmeta OpenStack)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Časovni zamik zahtev HTTP v sekundah (izbirno)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Osebno" msgid "System" msgstr "Sistem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(skupina)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Shranjeno" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Opomba: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "in" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Opomba: Podpora za naslove cURL v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Opomba: Podpora za protokol FTP v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Na voljo za" msgid "Add storage" msgstr "Dodaj shrambo" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ni uporabnika ali skupine" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Vsi uporabniki" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Skupine" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Uporabniki" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Izbriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Omogoči zunanjo uporabniško podatkovno shrambo" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb." -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Korenska potrdila SSL" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Uvozi korensko potrdilo" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 5744597d764d396501be14c45e61e8d6a72004af..afef672f7c961db0c5573a30ae6d10fe7cc88f3c 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-25 18:11+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 34f3a5492f434950b8fae58f09fbf87005a829ca..124d195122360a97f63d9633fca3d0aac7608915 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 593227495d9cc8081b9c86267ca5a11a25509680..fd0635758c2204142257864015207fefcdc74d8f 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,33 +19,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Mapa 'config' nima določenih ustreznih dovoljenj za pisanje!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Oglejte si %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Žeton je potekel. Stran je treba ponovno naložiti." msgid "Unknown user" msgstr "Neznan uporabnik" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s - vnos uporabniškega imena podatkovne zbirke." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s - vnos imena podatkovne zbirke." @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." @@ -197,23 +197,23 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." msgid "MySQL/MariaDB username and/or password not valid" msgstr "Uporabniško ime ali geslo za MySQL/MariaDB ni veljavno" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Napaka podatkovne zbirke: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "Uporabnik podatkovne zbirke MySQL/MariaDB '%s'@'%%' že obstaja." msgid "Drop this user from MySQL/MariaDB." msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Uporabniško ime ali geslo Oracle ni veljavno" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" @@ -338,68 +338,68 @@ msgstr "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni msgid "Share type %s is not valid for %s" msgstr "Vrsta souporabe %s za %s ni veljavna." -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 779c4f831caade77df9e77a312602d0c79496087..7b1ce449430ce758a683250b87b4b5cad8fdf559 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Matej Urbančič <>\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,7 @@ msgstr "Pred preizkusnim pošiljanjem sporočil je treba nastaviti elektronski n msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Šifriranje" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "razveljavi" @@ -351,27 +351,27 @@ msgstr "Izbriši" msgid "never" msgstr "nikoli" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "dodaj skupino" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" @@ -624,7 +624,7 @@ msgstr "" #: templates/admin.php:294 msgid "days" -msgstr "" +msgstr "dni" #: templates/admin.php:297 msgid "Enforce expiration date" @@ -735,11 +735,11 @@ msgstr "Več" msgid "Less" msgstr "Manj" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Različica" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Geslo" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Polno ime" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Slika profila" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Pošlji novo" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Izberi novo iz menija datotek" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Odstrani sliko" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Podoba je podana v izvornem računu." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Prekliči" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Izberi kot sliko profila" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke." -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Prijavno geslo" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Odšifriraj vse datoteke" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Obnovi šifrirne ključe" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Izbriši šifrirne ključe" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Prijavno ime" @@ -977,19 +985,19 @@ msgstr "Vsi" msgid "Admins" msgstr "Skrbniki" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Privzeta količinska omejitev" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Neomejeno" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Drugo" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 0df210e095f56e60e71ce63af91c5e571ecfacdb..e194798823e9d2b6cafec864bbb08040b40d5efe 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -51,11 +51,11 @@ msgstr "Ni določenega dejanja" msgid "No configuration specified" msgstr "Ni določenih nastavitev" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ni navedenih podatkov" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Ni mogoče uveljaviti nastavitev %s" @@ -104,47 +104,47 @@ msgstr "" msgid "Please specify the port" msgstr "Določiti je treba vrata" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Nastavitev je ustrezna" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Nastavitev ni ustrezna" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Nastavitev je nepopolna" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Izberi skupine" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Izbor razredov predmeta" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Izbor atributov" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Preizkus povezave je uspešno končan." -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Preizkus povezave je spodletel." -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Potrdi brisanje" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -153,7 +153,7 @@ msgstr[1] "%s najdeni skupini" msgstr[2] "%s najdene skupine" msgstr[3] "%s najdenih skupin" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -162,11 +162,11 @@ msgstr[1] "%s najdena uporabnika" msgstr[2] "%s najdeni uporabniki" msgstr[3] "%s najdenih uporabnikov" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Želene zmožnosti ni mogoče najti" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Neveljaven gostitelj" @@ -258,60 +258,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. strežnik" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. strežnik:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Dodaj nastavitve strežnika" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Izbriši nastavitve" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Gostitelj" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Vrata" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Uporabnikovo enolično ime" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Enolično ime uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji prikaznega imena in gesla prazni." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Geslo" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Za brezimni dostop naj bosta polji imena in gesla prazni." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Eno osnovno enolično ime na vrstico" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 1e0fa3ac9dc6417afa2990bc865f43ef25872a14..ccd5e461209072b9e6fd2368d147263ecfbf17a2 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -150,78 +150,30 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Parametra" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Dosje" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekonda më parë" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut më parë" -msgstr[1] "%n minuta më parë" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n orë më parë" -msgstr[1] "%n orë më parë" - -#: js/js.js:1281 -msgid "today" -msgstr "sot" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "dje" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ditë më parë" -msgstr[1] "%n ditë më parë" - -#: js/js.js:1284 -msgid "last month" -msgstr "muajin e shkuar" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n muaj më parë" -msgstr[1] "%n muaj më parë" - -#: js/js.js:1286 -msgid "last year" -msgstr "vitin e shkuar" - -#: js/js.js:1287 -msgid "years ago" -msgstr "vite më parë" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index a741ec341d9e032e532c50ad009ba94a54cbeadf..56ef851cb48b72a9c497cd12d4bdae5fb4a936cc 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index dd7f385da7a9d2da0fa78f31aa10d439d542f6b5..1d24aab8d339840387ff85340a73315d813a129a 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Pritësi" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Përdoruesi" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Personale" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "U ruajt" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupet" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Përdoruesit" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Elimino" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 4fa611408db06418a5bf3f321135b0194f171d01..4fadd310cd7410c838b6af884938499268988d57 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index f079ecc7a3136962e60c3703872bc9f40fa8468c..6e0adb3584406a54c1ca9492cf4b0d45186e5b07 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index fa9e99e8b24b19c4e04ab599e5ade1df39ee917e..e33bd4e1e8272e6133c4c065ffafccf737b7dc7c 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "% shkruani përdoruesin e database-it." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s shkruani emrin e database-it." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." @@ -195,23 +195,23 @@ msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administrat msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Veprim i gabuar i DB-it: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c99511e1c1e1056ecdc8af4c6e7bd433109e521e..da075befe3345dcfb7e8e37e471505289fdec552 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "Mënyra e dërgimit" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kodifikimi" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "u fshi {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "anullo veprimin" @@ -350,27 +350,27 @@ msgstr "Fshi" msgid "never" msgstr "asnjëherë" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "u fshi {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "shto grup" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Gabim gjatë krijimit të përdoruesit" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Më tepër" msgid "Less" msgstr "M'pak" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Versioni" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ju keni përdorur %s nga %s të mundshme " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Fjalëkalim" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "fjalëkalimi juaj u ndryshua" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Nuk është e mundur të ndryshohet fjalëkalimi" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Fjalëkalimi aktual" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Fjalëkalimi i ri" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Emri i plotë" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Adresa juaj email" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Foto Profili" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Fshi imazh" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Anullo" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Vendos si foto profili" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Gjuha" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Ndihmoni në përkthim" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Fjalëkalimi i hyrjes" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Emri i Përdoruesit" @@ -976,19 +984,19 @@ msgstr "Të gjithë" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "E pakufizuar" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Tjetër" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index c6a330f5bdf4ff8cbea1ee1198021b971894d212..99e490e49bbc55d22ae4752e0a81de64278b9c02 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Prova e lidhjes përfundoi me sukses" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Prova e lidhjes dështoi" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Jeni vërtetë të sigurt të fshini konfigurimet aktuale të serverit?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Konfirmoni Fshirjen" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Shtoni konfigurimet e serverit" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Pritësi" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Ju mund të mos vendosni protokollin ,vetëm nëse ju nevojitet SSL. atherë filloni me ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Porta" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Përdoruesi DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN -ja e klientit për përdoruesin që kërkon të lidhet duhet të jetë si psh,uid=agent,dc=example,dc=com. Për lidhjet anonime lini boshe hapsirat e DN dhe fjalëkalim " -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "fjalëkalim" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Për tu lidhur në mënyre anonime, lini bosh hapsirat e DN dhe fjalëkalim" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Një baze DN për rrjesht" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Ju mund të specifikoni Bazen DN për përdorues dhe grupe në butonin 'Të Përparuara'" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 9e88516079d2583a7fa020e7a6b3814217e5ccf7..7997c8fb5c694d5ca9b51c27ddb84aa9ff0e33f0 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,82 +148,30 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Поставке" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "фасцикла" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "пре неколико секунди" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1281 -msgid "today" -msgstr "данас" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "јуче" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "прошлог месеца" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "прошле године" - -#: js/js.js:1287 -msgid "years ago" -msgstr "година раније" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 934f4574f632052a3ee750e646609ec3f45c4dd8..2d72f4a3c569449738ff5e0f4d9556036dfdadb2 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index f3e1a730fa0bd79c16333b4ebd62d1144d6cb900..4f1e2d240a28d43a2779dcde65c3b9a11731c80e 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "Домаћин" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Корисничко име" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Лично" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групе" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Корисници" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Обриши" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b783e2746542007957a30ace94a3b9254c9050ba..0802cfb91171e286ab6df47c9da71c5f0d3c2148 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 78ee1af62fe316ec2503999fec252e71b26577dc..d530a5e52403d4aef0e0b74dc430ea884d16ea46 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index b921f6cb103cf59cefabb17ec529a5f42a61e540..6377272ece147f7f012f81d0b28f343d1788ff43 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -17,33 +17,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Жетон је истекао. Поново учитајте стран msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9bcd7f53735aa56da54fd99bd9cba859ff448363..3efb8510f2828fd31bb9e858e243cec5baccc54a 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифровање" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "опозови" @@ -349,27 +349,27 @@ msgstr "Обриши" msgid "never" msgstr "никада" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додај групу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Грешка при прављењу корисника" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "Више" msgid "Less" msgstr "Мање" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Верзија" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Откажи" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Језик" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Корисничко име" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Подразумевано ограничење" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Неограничено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Друго" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index db0c70bd46aa790474406fae413815cbca283c4f..da8fc96d2c0515f99342bb7597f79767dcb3d168 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Домаћин" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можете да изоставите протокол, осим ако захтевате SSL. У том случају почните са ldaps://." -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Корисник DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN корисника клијента са којим треба да се успостави веза, нпр. uid=agent,dc=example,dc=com. За анониман приступ, оставите поља DN и лозинка празним." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Лозинка" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "За анониман приступ, оставите поља DN и лозинка празним." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 5cfd01c54e74aa0271107ce92de307fa34789a76..58e8c0c307eae542a210879aa743ef5a91f6ad66 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -151,82 +151,30 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fajl" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Direktorijum" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Slika" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "Pre par sekundi" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "pre %n minuta" -msgstr[1] "pre %n minuta" -msgstr[2] "pre %n minuta" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "pre %n sat" -msgstr[1] "pre %n sati" -msgstr[2] "pre %n sati" - -#: js/js.js:1281 -msgid "today" -msgstr "Danas" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "juče" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "Pre %n dan." -msgstr[1] "Pre %n dana." -msgstr[2] "Pre %n dana." - -#: js/js.js:1284 -msgid "last month" -msgstr "prošlog meseca" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "prošle godine" - -#: js/js.js:1287 -msgid "years ago" -msgstr "pre nekoliko godina" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index d8ed8a52bb506ed50e3d92dc94b469bad66fa546..4e1d2229db233205b8c4ea9d9d5c9861f6a198ee 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 1c19b6f8c11c294bcaef95429bc54d856b7b5152..607029e64d918647e41089ee1ba0199052d59a54 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Korisničko ime" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "Lično" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupe" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Korisnici" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index d82f0d6debcfd1a417a825b18cf8595927abe911..618fb01457bfa2c0b0bd55d1d95e9bf38037d290 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 99c825583d4c34b20e8e46c05746aa3c1f612e7e..f72d83eab9af222f5283982d2cbae65a942267fd 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 9b753d74794e1722cb53ce012f3ee1a31db9ea36..4960fe2b75689390e868bbcdcfc48d8c49b869ca 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 06adc5e02370f2e73c63d7f96e634cb68b2b7072..f4dbda5f9ec7c21dc89bbeb353226f467f32d19b 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "Obriši" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-mail" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Otkaži" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Jezik" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Drugo" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 3518960487abfc0bb4347bc3d6302be3a3c2ff48..54de60762893799c40ea21346c36806e52b80d21 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 14:30+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/su/core.po b/l10n/su/core.po index 1fb887bf7c32f09c1193ba7e2d109c575ab19f44..48f3d3bf19403a4b8f2188f875b287cb0095709b 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/su/files_external.po b/l10n/su/files_external.po index 11c327e57702be07092291bfb14d6a0866b1dcdf..fde72ea23c5b77e28025496897d5ce4003b84b8d 100644 --- a/l10n/su/files_external.po +++ b/l10n/su/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 31061fe2246ea31ce19abf133e3dbeb60f962f0e..2882cb779063e3824bbda1d8ad7409ec66ff08fb 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1d56c7816d444903f66cf6284b72f321af92c25b..fad3e58625938d7dfcda7536da165034d91ba9aa 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -157,78 +157,30 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Inställningar" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Fil" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Mapp" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Bild" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Ljud" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "sekunder sedan" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n minut sedan" -msgstr[1] "%n minuter sedan" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n timme sedan" -msgstr[1] "%n timmar sedan" - -#: js/js.js:1281 -msgid "today" -msgstr "i dag" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "i går" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n dag sedan" -msgstr[1] "%n dagar sedan" - -#: js/js.js:1284 -msgid "last month" -msgstr "förra månaden" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n månad sedan" -msgstr[1] "%n månader sedan" - -#: js/js.js:1286 -msgid "last year" -msgstr "förra året" - -#: js/js.js:1287 -msgid "years ago" -msgstr "år sedan" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Kunde inte skicka återställningsmail. Vänligen kontakta din administratör." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index b83675d516d6c0bbc12baf5e3bb792c510228da9..00e5f455e59f7977cb426526ab0d9b7fd625d678 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 546ba9f46c23ac346af3f1327e2cba0005beaf82..7707f49fcbf9bd9dfc146559a6d28a1a07485783 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -73,7 +73,7 @@ msgstr "Nyckel" msgid "Secret" msgstr "Hemlig" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -90,16 +90,16 @@ msgid "Secret Key" msgstr "Hemlig nyckel" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Värdnamn (valfritt)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Port (valfritt)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Region (valfritt)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -122,8 +122,8 @@ msgstr "App-hemlighet" msgid "Host" msgstr "Server" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Användarnamn" @@ -153,14 +153,6 @@ msgstr "klient secret" msgid "OpenStack Object Storage" msgstr "OpenStack Object Storage" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Användarnamn (måste anges)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (krävs)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Region (valfritt för OpenStack Object Storage)" @@ -186,8 +178,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "URL för identitetens slutpunkt (krävs för OpenStack Object Storage)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Timeout för HTTP-förfrågningar i sekunder (tillval)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -237,33 +229,41 @@ msgstr "Personligt" msgid "System" msgstr "System" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Sparad" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr " OBS: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "och" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -306,39 +306,23 @@ msgstr "Tillgänglig för" msgid "Add storage" msgstr "Lägg till lagring" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Ingen användare eller grupp" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Alla användare" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Grupper" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Användare" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Radera" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Aktivera extern lagring för användare" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Tillåt användare att montera följande extern lagring" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL rotcertifikat" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Importera rotcertifikat" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index c00dd088d8c74d48f90efef083147565774c97ab..10ec2fc763001c8fd4b59e10fb7634420a237120 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -35,15 +35,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "Kunde inte lägga till fjärrutdelning" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Delat med dig" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Delat med andra" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Delad som länk" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 2dd5422e35b601da37a379af742d9dea4cd0f6df..e1cd73a1c225b4775299e324505094c77a6240a0 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 4abf1218ae99f3c52b493b319a6f09071ddab99f..5ead36f8debc17631dfc75667434a8a94a5173f4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -26,33 +26,33 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "Kan inte skriva till \"config\" katalogen!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Detta kan vanligtvis åtgärdas genom att ge skrivrättigheter till config katalgogen" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Se %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -174,12 +174,12 @@ msgstr "Ogiltig token. Ladda om sidan." msgid "Unknown user" msgstr "Okänd användare" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s ange databasanvändare." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s ange databasnamn" @@ -195,7 +195,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL-användaren och/eller lösenordet var inte giltigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." @@ -204,23 +204,23 @@ msgstr "Du måste antingen ange ett befintligt konto eller administratör." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB användarnamn och/eller lösenord är felaktigt" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB error: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -245,15 +245,15 @@ msgstr "MySQL/MariaDB användare '%s'@'%%' existerar redan" msgid "Drop this user from MySQL/MariaDB." msgstr "Radera denna användare från MySQL/MariaDB." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle-anslutning kunde inte etableras" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle-användarnamnet och/eller lösenordet är felaktigt" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" @@ -345,68 +345,68 @@ msgstr "Delning %s misslyckades därför att delning utav länkar inte är till msgid "Share type %s is not valid for %s" msgstr "Delningstyp %s är inte giltig för %s" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Delningsgränssnittet %s hittades inte" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "Delning %s misslyckades därför att användaren %s är den som delade objektet först" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "Delning %s misslyckades därför att vidaredelning inte är tillåten" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 2b9c82d31472b71daf8c3a065bc8dbb793b581ad..b9f04be309785662ff089eb177cf403f4b4d2478 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -64,7 +64,7 @@ msgstr "Du behöver ställa in din användares e-postadress före du kan skicka msgid "Send mode" msgstr "Sändningsläge" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Kryptering" @@ -338,7 +338,7 @@ msgstr "Ett giltigt gruppnamn måste anges" msgid "deleted {groupName}" msgstr "raderade {groupName} " -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "ångra" @@ -362,27 +362,27 @@ msgstr "Radera" msgid "never" msgstr "aldrig" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "raderade {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "lägg till grupp" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varning: Hem katalogen för varje användare \"{användare}\" finns redan" @@ -746,11 +746,11 @@ msgstr "Mer" msgid "Less" msgstr "Mindre" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Version" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Hela namnet" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-post" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord och mottagande av notifieringar" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Ladda upp ny" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Välj ny från filer" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Radera bild" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Din avatar tillhandahålls av ditt ursprungliga konto." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Avbryt" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Välj som profilbild" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Språk" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsapplikationen är inte längre aktiverad, vänligen dekryptera alla dina filer" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Dina krypteringsnycklar flyttas till en backup. Om något gick fel kan du återställa nycklarna. Bara ta bort dem permanent om du är säker på att alla filer dekrypteras korrekt." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Återställ krypteringsnycklar" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Radera krypteringsnycklar" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Inloggningsnamn" @@ -988,19 +996,19 @@ msgstr "Alla" msgid "Admins" msgstr "Administratörer" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Förvald datakvot" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Obegränsad" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Annat" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index a5265bbee8795b1f865997ecc51abe3227d9c93e..834be7c3976da51ed28a5cb65c368875ecffc7c7 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Juho Ojala\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -60,11 +60,11 @@ msgstr "Ingen åtgärd har angetts" msgid "No configuration specified" msgstr "Ingen konfiguration har angetts" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Ingen data har angetts" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "Kunde inte sätta inställning %s" @@ -113,65 +113,65 @@ msgstr "Det gick inte att avgöra Base DN" msgid "Please specify the port" msgstr "Specificera en port" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Konfigurationen är OK" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Felaktig konfiguration" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Konfigurationen är ej komplett" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Välj grupper" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Välj Objekt-klasser" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Välj attribut" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Anslutningstestet lyckades" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Anslutningstestet misslyckades" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vill du verkligen radera den nuvarande serverinställningen?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Bekräfta radering" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grupp hittad" msgstr[1] "%s grupper hittade" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s användare hittad" msgstr[1] "%s användare hittade" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "Det gick inte hitta den önskade funktionen" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Felaktig Host" @@ -263,60 +263,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Definierar filter som tillämpas vid inloggning. %%uid ersätter användarnamn vid inloggningen. Exempel: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1.Server" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Server:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Lägg till serverinställning" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Radera Konfiguration" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Server" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Användare DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN för användaren som skall användas, t.ex. uid=agent, dc=example, dc=com. För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Lösenord" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "För anonym åtkomst, lämna DN och lösenord tomt." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Ett Start DN per rad" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 59ac8a99153c373bd71f31fbd08268f94950bbf3..6b5f70abfdac1fd14f8feef8561b4a3cc3dab30a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+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" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 2e3e59ef2649b13990beba1f8e7153c626fef6e5..4479d6bd0c694449e58052cb4b857f0140f8473a 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 09c0731cef27d19a50b180c55d1da915cc9582de..3fc2febc1785d2ce3bdbf4a7913466fbcd8467e1 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ta_IN/core.po b/l10n/ta_IN/core.po index d8d2fe410ffc789b7771c2186bf3d55a2237cfab..54187f0833de0e690120c063294e9ea4ba492f9e 100644 --- a/l10n/ta_IN/core.po +++ b/l10n/ta_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ta_IN/files_external.po b/l10n/ta_IN/files_external.po index 18c7482b5831973c544f12513f3c2289d62230bf..59f0c676ef5a70f8693ad329023224f1ce4918dd 100644 --- a/l10n/ta_IN/files_external.po +++ b/l10n/ta_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ta_IN/lib.po b/l10n/ta_IN/lib.po index 6e92608830cae92be1aefca90e0239bcad437391..0512b25fb3fbee77a7f56475ccd7ad8509c67e2c 100644 --- a/l10n/ta_IN/lib.po +++ b/l10n/ta_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_IN/settings.po b/l10n/ta_IN/settings.po index 38f5263f95bb4d0dcca6ad72658239b3cec34cd8..b41c8790050096b821a458fad2bdcecc5f2aadfa 100644 --- a/l10n/ta_IN/settings.po +++ b/l10n/ta_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (India) (http://www.transifex.com/projects/p/owncloud/language/ta_IN/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "மேலும்" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 3330cbb1c0b9a5bfbc59be2a584994ac16fd8668..153c6326d21781261d53bba06d4750fde04cf358 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,78 +148,30 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "கோப்புறை" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "செக்கன்களுக்கு முன்" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "இன்று" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "நேற்று" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "கடந்த மாதம்" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "கடந்த வருடம்" - -#: js/js.js:1287 -msgid "years ago" -msgstr "வருடங்களுக்கு முன்" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 4405637036543abb71aa2f214f722513c5b3e3dd..b7cc89b08ae0e082e4796415496a960d12681d08 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index a818de998b1dc53e073b74c452af6107ce4ad92c..ebf869c7861b7256a7ebcf217d6bc5e98e6d5119 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "ஓம்புனர்" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "தனிப்பட்ட" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "பயனாளர்கள் எல்லாம்" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "குழுக்கள்" - -#: templates/settings.php:106 -msgid "Users" -msgstr "பயனாளர்" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "நீக்குக" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL வேர் சான்றிதழ்கள்" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "வேர் சான்றிதழை இறக்குமதி செய்க" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index cf755ec651ea0727ba5a914c7ce710073d9527f7..0228dd90f73cf3b72f1e0be5035b7f28c4b1d840 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index a8a51d499c78749b4ccca5f8065cf194e3be7a6f..dc34c9aeb8904d5d499dc1d792d1a6086c9402be 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 1fd5b14b1099fb9c37948b4a4af9ff8ee6985db6..be9d0aa8a78cf637137601a813ffac18900b6375 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "அடையாளவில்லை காலாவதியாகி msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 8703959828020c0f79e9473107873be4a2b873f2..4d413e30e374f00a39dd0f88952b2361016a4675 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "மறைக்குறியீடு" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "முன் செயல் நீக்கம் " @@ -349,27 +349,27 @@ msgstr "நீக்குக" msgid "never" msgstr "ஒருபோதும்" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "மேலதிக" msgid "Less" msgstr "குறைவான" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "இரத்து செய்க" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "மொழி" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "புகுபதிகை" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "பொது இருப்பு பங்கு" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "மற்றவை" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 6b78faa4d06a7725a28b3f454d6124fc0c121a8a..b5b8c19aabfe92c060ba4351c0ec914cbc384d47 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "ஓம்புனர்" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "நீங்கள் SSL சேவையை தவிர உடன்படு வரைமுறையை தவிர்க்க முடியும். பிறகு ldaps:.// உடன் ஆரம்பிக்கவும்" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "துறை " -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "பயனாளர் DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "நீங்கள் பயனாளர்களுக்கும் மேன்மை தத்தலில் உள்ள குழுவிற்கும் தள DN ஐ குறிப்பிடலாம் " diff --git a/l10n/te/core.po b/l10n/te/core.po index 096f0c0274367dea943c9ad00e6a6a0da9bceb0c..fdc39ac1699f026c2412b36e58ac77b236fc9e63 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "సంచయం" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "క్షణాల క్రితం" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n నిమిషం క్రితం" -msgstr[1] "%n నిమిషాల క్రితం" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n గంట క్రితం" -msgstr[1] "%n గంటల క్రితం" - -#: js/js.js:1281 -msgid "today" -msgstr "ఈరోజు" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "నిన్న" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n రోజు క్రితం" -msgstr[1] "%n రోజుల క్రితం" - -#: js/js.js:1284 -msgid "last month" -msgstr "పోయిన నెల" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n నెల క్రితం" -msgstr[1] "%n నెలల క్రితం" - -#: js/js.js:1286 -msgid "last year" -msgstr "పోయిన సంవత్సరం" - -#: js/js.js:1287 -msgid "years ago" -msgstr "సంవత్సరాల క్రితం" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 1f6305aad78c126d4d6f7f3dfe1a3ecc647b554e..ce20672a4018c18f9ecb901668656efe16df98ac 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 39fc8c8b54ae84303fe6a0dfad3ec8cd27750ca9..6f62f34feeb15574ca5c9b315aad54c6b0b05168 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "వాడుకరి పేరు" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "వ్యక్తిగతం" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "వాడుకరులు" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "తొలగించు" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index fb2924ea40483010a453bd68d08082f0b5b2a56c..50da14a75b7e3ebed1b97afec92269fee9967ba6 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 1360dd18a0c243fc5dd60578ca83ab3c33b01fe5..831d07b2f925d89de8d345c450789aec525ec513 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 0a6f4082c724dcdee5eed6ca509cc31e957c31f5..25edd02b6b9ac71ef4f2a6a293d9008b646ab38d 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index a883f0b33eb3abf8b3469a628403f844802c6870..7c5f8b76a36fabd3bd7bed5c8e4e0ded99203dc4 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "తొలగించు" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "మరిన్ని" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "రద్దుచేయి" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "భాష" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e8d50499d537ff232731eb8148118e5e8d7047ef..40ef8295accc0a1989d4b7af9d7596693945e817 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "సంకేతపదం" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a4b8c0a7dd61023a960ff0dcde549db065660fbd..a67343476fd0710ebfab4a158675943f36d942f7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -149,78 +149,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ecc1eadeea663ff9e781b408badf48155257098d..e14699b0ce5c18c246dacc2a88bddc7026aa49a1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ec1bc83f6364882300d1e8c3486ea42dbbbf249e..d6b0b5e4c88d94f905b05c8c21f105cf5d758e60 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\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 0d6f7d7ef23377fc5c32302a47bd7f37729dfe1c..6a00bd2d962cce3190db590f3d39e8602923e7a6 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of " "%s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please " @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 10f7e0d8e9719df41aaea9cb494581a67cedd496..8cb4bfe71127df02092775786d51afde78c6afb8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\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 a98233353d16c59e3b435be44d524b685d2ca55f..c0c1b44a9653d515585ae8fd8bf66be8b8b269de 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\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 f5710825aae12c9309244c3e20313cbdc59cb58c..f5098c8a08098fa038c87c1eec2abab9419514c2 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\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 65fd8be84e937efebfa56c7bd89599bf9fe86b54..99fd50eee260b192e6fe3ec71dd9258f7aeee7b8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,33 +18,33 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config " "directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can " "break your installation and is unsupported. Please read the documentation " @@ -166,12 +166,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -187,7 +187,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -196,23 +196,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -237,15 +237,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -337,68 +337,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 11ccd89830d08c167fd5dbe0a22a5680b10e5e2a..7ead72129ec76195d8e494b5631c71014eecc350 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -133,12 +133,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: setup/abstractdatabase.php:26 +#: setup/abstractdatabase.php:26 setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:29 +#: setup/abstractdatabase.php:29 setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -153,7 +153,7 @@ msgstr "" msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:128 #: setup/postgresql.php:31 setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -162,18 +162,18 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 -#: setup/oci.php:151 setup/oci.php:162 setup/oci.php:169 setup/oci.php:178 -#: setup/oci.php:186 setup/oci.php:195 setup/oci.php:201 +#: setup/mysql.php:67 setup/oci.php:68 setup/oci.php:135 setup/oci.php:158 +#: setup/oci.php:165 setup/oci.php:176 setup/oci.php:183 setup/oci.php:192 +#: setup/oci.php:200 setup/oci.php:209 setup/oci.php:215 #: setup/postgresql.php:103 setup/postgresql.php:112 setup/postgresql.php:129 #: setup/postgresql.php:139 setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:145 -#: setup/oci.php:152 setup/oci.php:163 setup/oci.php:179 setup/oci.php:187 -#: setup/oci.php:196 setup/postgresql.php:104 setup/postgresql.php:113 +#: setup/mysql.php:68 setup/oci.php:69 setup/oci.php:136 setup/oci.php:159 +#: setup/oci.php:166 setup/oci.php:177 setup/oci.php:193 setup/oci.php:201 +#: setup/oci.php:210 setup/postgresql.php:104 setup/postgresql.php:113 #: setup/postgresql.php:130 setup/postgresql.php:140 setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" @@ -197,15 +197,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: setup/oci.php:34 +#: setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: setup/oci.php:41 setup/oci.php:113 +#: setup/oci.php:55 setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:170 setup/oci.php:202 +#: setup/oci.php:184 setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -296,68 +296,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: share/share.php:862 +#: share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: share/share.php:923 +#: share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: share/share.php:961 +#: share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: share/share.php:969 +#: share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: share/share.php:1094 +#: share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: share/share.php:1101 +#: share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: share/share.php:1107 +#: share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: share/share.php:1525 +#: share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: share/share.php:1534 +#: share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: share/share.php:1550 +#: share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: share/share.php:1562 +#: share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: share/share.php:1576 +#: share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 479a9a43638aa3b61b03291d03026280d53c8ae6..c0217dab5cece302dfda23de67ce66e23dee73eb 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -324,7 +324,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -348,27 +348,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -731,11 +731,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong " "you can restore the keys. Only delete them permanently if you are sure that " "all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -973,19 +981,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2e330a691a998208741e6094506cdfa0507086e2..f991739b6bd1a46801dc613b6f2e1e557f902c6f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,11 +50,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -103,65 +103,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:321 lib/wizard.php:1057 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:864 lib/wizard.php:876 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 030c72788e7ea2e69135732204d9f59a0b8518b3..46fcea9028b25451f8eb82451e0612d78e7025b0 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\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 ad9f4bbd5f4cfea1f63defa790e96dd655027a5a..7acc04d081cbf22c5314050776d61f42277c224c 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -148,74 +148,30 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "รูปภาพ" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "วินาที ก่อนหน้านี้" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "วันนี้" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "เมื่อวานนี้" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "เดือนที่แล้ว" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "ปีที่แล้ว" - -#: js/js.js:1287 -msgid "years ago" -msgstr "ปี ที่ผ่านมา" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index aa321615cd3c8fd19f882bfba5b47be44d1cd9c6..cf7d8d5e508ac5caaaeba129ac52db01dc19e07e 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 34a63a5a3bbd00dd25a86896a099d1a2e8579e37..91bee3890ae7374a6df5d04c90be15fc08e5b79b 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "โฮสต์" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "ส่วนตัว" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "ผู้ใช้งานทั้งหมด" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "กลุ่ม" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ผู้ใช้งาน" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ลบ" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 7d4bc7befb57f576329ead87be185a9c2db3a015..584e8bf7d1885fc59b8b6c9f0ea18c9f0ee047ed 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 97e45bd9b2cbdcb8fe5522c2dfaf7fb931df041e..897b346f5ee8b7c6e3b487900b431b9fd39f7dd1 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 373ac23f77f363b1286829009d4370f520c97a15..e8aafacd6a265ef568174a441608ffd0ef7b2c6f 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -17,33 +17,33 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "รหัสยืนยันความถูกต้องหมด msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 14284189a3cbd5daa4a887a27d9c49a633474547..f90494909174315f36e0d2735ea92412fb2b741f 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "การเข้ารหัส" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "เลิกทำ" @@ -349,27 +349,27 @@ msgstr "ลบ" msgid "never" msgstr "ไม่ต้องเลย" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "มาก" msgid "Less" msgstr "น้อย" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "รูปภาพโปรไฟล์" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ยกเลิก" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "โควต้าที่กำหนดไว้เริ่มต้น" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "ไม่จำกัดจำนวน" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "อื่นๆ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 331bf7279cb31dfbf663f41654acb8694550d66b..00b68550bd90732c4c25bc8879e22c25a1245891 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "เลือกกลุ่ม" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "ทดสอบการเชื่อมต่อสำเร็จ" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "ทดสอบการเชื่อมต่อล้มเหลว" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "ยืนยันการลบทิ้ง" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "เพิ่มการกำหนดค่าเซิร์ฟเวอร์" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "โฮสต์" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "พอร์ต" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN ของผู้ใช้งาน" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN ของผู้ใช้งานที่เป็นลูกค้าอะไรก็ตามที่ผูกอยู่ด้วย เช่น uid=agent, dc=example, dc=com, สำหรับการเข้าถึงโดยบุคคลนิรนาม, ให้เว้นว่าง DN และ รหัสผ่านเอาไว้" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "รหัสผ่าน" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "สำหรับการเข้าถึงโดยบุคคลนิรนาม ให้เว้นว่าง DN และรหัสผ่านไว้" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "หนึ่ง Base DN ต่อบรรทัด" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "คุณสามารถระบุ DN หลักสำหรับผู้ใช้งานและกลุ่มต่างๆในแท็บขั้นสูงได้" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 91ee360ed89a47690d24ed395cb701d7e2d2ba8c..fa6afe171a1885588d25a372ff47865c708d7508 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: Volkan Gezer \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -152,78 +152,30 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Dosya" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Klasör" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "Resim" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "Ses" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "saniyeler önce" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n dakika önce" -msgstr[1] "%n dakika önce" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n saat önce" -msgstr[1] "%n saat önce" - -#: js/js.js:1281 -msgid "today" -msgstr "bugün" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "dün" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n gün önce" -msgstr[1] "%n gün önce" - -#: js/js.js:1284 -msgid "last month" -msgstr "geçen ay" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ay önce" -msgstr[1] "%n ay önce" - -#: js/js.js:1286 -msgid "last year" -msgstr "geçen yıl" - -#: js/js.js:1287 -msgid "years ago" -msgstr "yıllar önce" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "Sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile iletişime geçin." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 952496f3de5559e109cd83262bc2d1aaf0f24823..995ecbc05d179bbd2e915f4fac4e986f0910a9d5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index ea66a4c6ccfcfbb1476360110ce0fe837652dcc5..c587f5f4a3cca23120db05b45faa9bfec98ee54a 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "Anahtar" msgid "Secret" msgstr "Parola" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "Bucket" @@ -85,16 +85,16 @@ msgid "Secret Key" msgstr "Gizli Anahtar" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "Makine Adı (isteğe bağlı)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "Bağl. Nok. (isteğe bağlı)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "Bölge (isteğe bağlı)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -117,8 +117,8 @@ msgstr "Uyg. parolası" msgid "Host" msgstr "Sunucu" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Kullanıcı Adı" @@ -148,14 +148,6 @@ msgstr "İstemci parolası" msgid "OpenStack Object Storage" msgstr "OpenStack Nesne Depolama" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "Kullanıcı adı (gerekli)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (gerekli)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "Bölge (OpenStack Nesne Depolaması için isteğe bağlı)" @@ -181,8 +173,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "Kimlik uç nokta adresi (OpenStack Nesne Depolaması için gerekli)" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "Saniye cinsinden HTTP istek zaman aşımı (isteğe bağlı)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -232,33 +224,41 @@ msgstr "Kişisel" msgid "System" msgstr "Sistem" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "Tüm kullanıcılar. Kullanıcı veya grup seçmek için yazın." + +#: js/settings.js:291 +msgid "(group)" +msgstr "(grup)" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "Kaydedildi" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "Not: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "ve" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "Not: PHP'de cURL desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "Not: PHP'de FTP desteği etkin veya kurulu değil. %s bağlaması mümkün olmayacak. Lütfen kurulumu için sistem yöneticilerinizle iletişime geçin." -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "Kullanabilenler" msgid "Add storage" msgstr "Depo ekle" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "Kullanıcı veya grup yok" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tüm Kullanıcılar" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Gruplar" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Kullanıcılar" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Sil" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL kök sertifikaları" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Kök Sertifikalarını İçe Aktar" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 7dd03f7dfd1808908e80216239d1d1a021290c0a..4931b869caed1e36ce4d60adf1a5c1d88ebd72de 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-18 01:54-0400\n" -"PO-Revision-Date: 2014-08-17 16:01+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -31,15 +31,15 @@ msgstr "Geçersiz veya güvenilmeyen SSL sertifikası" msgid "Couldn't add remote share" msgstr "Uzak paylaşım eklenemedi" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "Sizinle paylaşılmış" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "Diğerleri ile paylaşılmış" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "Bağlantı ile paylaşılmış" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 7a8d7a8169aad51a97b017390bf606aacd9cf57e..503c57dc558a19003021872e3057852e17650a3e 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index ae855a41abea6d68793b81b9f0c59a8b039d4593..6c1b93e2bab656ef38db5afba96d32a91facf83f 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -21,33 +21,33 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "\"config\" dizinine yazılamıyor!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "Bu genellikle, web sunucusuna config dizinine yazma erişimi verilerek çözülebilir" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "Bakınız: %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "Bu genellikle, %sweb sunucusuna config dizinine yazma erişimi verilerek%s çözülebilir" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "Örnek yapılandırma tespit edildi" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -169,12 +169,12 @@ msgstr "Belirteç süresi geçti. Lütfen sayfayı yenileyin." msgid "Unknown user" msgstr "Bilinmeyen kullanıcı" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s veritabanı kullanıcı adını girin." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s veritabanı adını girin." @@ -190,7 +190,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." @@ -199,23 +199,23 @@ msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "VT Hatası: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -240,15 +240,15 @@ msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" msgid "Drop this user from MySQL/MariaDB." msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)." -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "Oracle bağlantısı kurulamadı" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle kullanıcı adı ve/veya parolası geçerli değil" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" @@ -340,68 +340,68 @@ msgstr "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden baş msgid "Share type %s is not valid for %s" msgstr "%s paylaşım türü %s için geçerli değil" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "%s için izinler öge bulunamadığından ayarlanamadı" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "Son kullanma tarihi ayarlanamıyor. Paylaşımlar, paylaşıldıkları süreden %s sonra dolamaz." -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "Son kullanma tarihi ayarlanamıyor. Son kullanma tarihi geçmişte" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "Paylaşım arka ucu %s bulunamadı" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f092d4cd6929294bf7757edb6ee11ae090475307..64c3801ac20c62f0b8754fc90dbe0de5bd82a625 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarla msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Şifreleme" @@ -329,7 +329,7 @@ msgstr "Geçerli bir grup adı mutlaka sağlanmalı" msgid "deleted {groupName}" msgstr "{groupName} silindi" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "geri al" @@ -353,27 +353,27 @@ msgstr "Sil" msgid "never" msgstr "hiçbir zaman" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "{userName} silindi" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "grup ekle" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut" @@ -737,11 +737,11 @@ msgstr "Daha fazla" msgid "Less" msgstr "Daha az" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kullandığınız: %s. Kullanılabilir alan: %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Parola" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Parolanız değiştirildi" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Tam Adı" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "E-posta" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "E-posta adresiniz" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "Profil resmi" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Yeni yükle" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "Dosyalardan seç" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Resmi kaldır" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz." -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor." -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "İptal" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Profil resmi olarak seç" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Dil" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Şifreleme uygulaması artık etkin değil, lütfen tüm dosyalarınızın şifrelemesini kaldırın" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "Oturum açma parolası" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "Tüm Dosyaların Şifrelemesini Kaldır" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "Şifreleme anahtarlarınız yedek bir konuma taşındı. Eğer bir şeyler yanlış gittiyse, anahtarlarınızı geri yükleyebilirsiniz. Bu anahtarları, sadece tüm dosyalarınızın şifrelemelerinin düzgün bir şekilde kaldırıldığından eminseniz kalıcı olarak silin." -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "Şifreleme Anahtarlarını Geri Yükle" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "Şifreleme Anahtarlarını Sil" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "Depolama konumunu göster" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "Son oturum açılma zamanını göster" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Giriş Adı" @@ -979,19 +987,19 @@ msgstr "Herkes" msgid "Admins" msgstr "Yöneticiler" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Öntanımlı Kota" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Sınırsız" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Diğer" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index bd1243628e33dcc993d959b5adfc7e7128b4a24d..3994c224aa4c26c4881b7c549ae30f90c2f073a4 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -52,11 +52,11 @@ msgstr "Eylem belirtilmedi" msgid "No configuration specified" msgstr "Yapılandırma belirtilmemiş" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "Veri belirtilmemiş" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "%s yapılandırması ayarlanamadı" @@ -105,65 +105,65 @@ msgstr "Base DN belirlenemedi" msgid "Please specify the port" msgstr "Lütfen bağlantı noktasını belirtin" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "Yapılandırma tamam" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "Yapılandırma geçersiz" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "Yapılandırma tamamlanmamış" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Grupları seç" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "Nesne sınıflarını seç" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "Nitelikleri seç" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Bağlantı testi başarılı oldu" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Bağlantı testi başarısız oldu" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Şu anki sunucu yapılandırmasını silmek istediğinizden emin misiniz?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Silmeyi onayla" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "%s grup bulundu" msgstr[1] "%s grup bulundu" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "%s kullanıcı bulundu" msgstr[1] "%s kullanıcı bulundu" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "İstenen özellik bulunamadı" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "Geçersiz Makine" @@ -255,60 +255,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "Oturum açma girişimi olduğunda uygulanacak filtreyi tanımlar. %%uid, oturum işleminde kullanıcı adı ile değiştirilir. Örneğin: \"uid=%%uid\"" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "1. Sunucu" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "%s. Sunucu:" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Sunucu Yapılandırması Ekle" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "Yapılandırmayı Sil" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Sunucu" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "SSL gerekmediği takdirde protokol belirtmeyebilirsiniz. Gerekiyorsa ldaps:// ile başlayın" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Port" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Kullanıcı DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "İstemci kullanıcısının yapılacağı atamanın DN'si. Örn. uid=agent,dc=örnek,dc=com. Anonim erişim için DN ve Parolayı boş bırakın." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Parola" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Anonim erişim için DN ve Parola alanlarını boş bırakın." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Her satırda tek bir Base DN" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Gelişmiş sekmesinde, kullanıcılar ve gruplar için Base DN belirtebilirsiniz" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 61c73f43c9b5066075fc88f164cfb4646ac32d7e..d68fbd82f8680fe11ed72cafa25cba95821c8d26 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/tzm/files_external.po b/l10n/tzm/files_external.po index aad0ba274ef1fcd706b0bccdb8ba0e2aaa17aa36..b803729750266a21a384802526467f33f263382e 100644 --- a/l10n/tzm/files_external.po +++ b/l10n/tzm/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 345421c1624af695cbd625a7944aae7044c6b151..ad9c25f42f4230c1539a31ef93eab338ac53f3de 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 7656f1262ce1f7df2320c9c59eae76b8e586b1b7..ab9114972c9eb59a3c1eda1b4a6e835ea3190acd 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "قىسقۇچ" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "بۈگۈن" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "تۈنۈگۈن" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index c890539563a7805530f3e72600a7538cd40a92d1..e454a0d8eeaae8d1c55ad86c8ea5b52d2b316805 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c8b3e12fadd8be8316bc7f551ae61c924dfa1d6e..e1d2cb36fd2a00f0bcb7b2c6621c4bef15c1463d 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "باش ئاپپارات" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "شەخسىي" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "گۇرۇپپا" - -#: templates/settings.php:106 -msgid "Users" -msgstr "ئىشلەتكۈچىلەر" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "ئۆچۈر" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 0391550319aa8eb91e044c42a3182196e239e4c8..0ac687213bfdce55876f62f49e0e88b86b1c1f09 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index ac53db41001083eb9917c621a74eac8f839f7175..865f09bfd2f8c0905359b62be642fdc3121ad0c5 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 0fe7547b49d43a2f3ac2c482a55c86e4d38d5565..54e9881bbcb93fa948899ccd7e966eba8d608f4a 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 75535e90fefbb319693f31b5775add2f6ce5a5b0..e4595485e0fe2b7f63fb657bcf9751f5b317dda9 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "شىفىرلاش" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "يېنىۋال" @@ -350,27 +350,27 @@ msgstr "ئۆچۈر" msgid "never" msgstr "ھەرگىز" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "گۇرۇپپا قوش" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "تېخىمۇ كۆپ" msgid "Less" msgstr "ئاز" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "ئىم" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "ۋاز كەچ" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "تىل" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "چەكسىز" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "باشقا" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 054c8e8a81cc79b881a5b7b3a98f970a664bbf49..c66908b5d65354e4ab1324d7a399877a153520fd 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "باش ئاپپارات" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "ئېغىز" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "ئىم" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 883c3c053c69051d6d94497a59d0ae8895d5842c..fe07d2ff24887e853b384b1e5cf9d30b784234a1 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -150,82 +150,30 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Налаштування" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "Файл" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Тека" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "секунди тому" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n хвилину тому" -msgstr[1] "%n хвилини тому" -msgstr[2] "%n хвилин тому" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n годину тому" -msgstr[1] "%n години тому" -msgstr[2] "%n годин тому" - -#: js/js.js:1281 -msgid "today" -msgstr "сьогодні" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "вчора" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n день тому" -msgstr[1] "%n дні тому" -msgstr[2] "%n днів тому" - -#: js/js.js:1284 -msgid "last month" -msgstr "минулого місяця" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n місяць тому" -msgstr[1] "%n місяці тому" -msgstr[2] "%n місяців тому" - -#: js/js.js:1286 -msgid "last year" -msgstr "минулого року" - -#: js/js.js:1287 -msgid "years ago" -msgstr "роки тому" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 14c891fcb2d412cf2b6e9ac05a5f7162453f0036..10cec145decfc39c439420bec76b09a813e00ded 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 5840cc8f9e70250301939b6b251a8b4d8fe5bb1a..5b4910e6f2655929fd7df98da1cc1cebd327d5d4 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Хост" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Ім'я користувача" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Особисте" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Додати сховище" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Усі користувачі" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Групи" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Користувачі" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Видалити" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Активувати користувацькі зовнішні сховища" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL корневі сертифікати" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Імпортувати корневі сертифікати" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 89305d1de72a26eb4d707e2f5acfa39d3fa9541a..e2922ab4ca1f5a0beb44478c15cbf98b8a867942 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -31,15 +31,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index b2b42c416125e5cdcaf6aff13f23b67a67bfd163..dd786d736689057176ed9de98d54a5b0eb90987e 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: v_2e \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 2bdcfe56e05793d5b5cb35a2f6e35b78ece8b48e..7534e9de4371a0d91a8cef1f7add26f7ec4ec99b 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ 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" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Строк дії токена скінчився. Будь ласка, msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введіть ім'я користувача бази даних." -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введіть назву бази даних." @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL ім'я користувача та/або пароль не дійсні: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." @@ -195,23 +195,23 @@ msgstr "Вам потрібно ввести або існуючий облік msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle ім'я користувача та/або пароль не дійсні" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index b345cd9dde99280894f52b6f2b2c92bfbdc5038d..c30356a39696e43f142ac3406afd019f30dbd07b 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Шифрування" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "відмінити" @@ -350,27 +350,27 @@ msgstr "Видалити" msgid "never" msgstr "ніколи" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "додати групу" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "Більше" msgid "Less" msgstr "Менше" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Версія" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Пароль" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Відмінити" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Мова" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Ім'я Логіну" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Квота за замовчуванням" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Необмежено" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Інше" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 7335868ef6ff3dd33e6181645114916e2881ac97..01fe453c417983b63c764eb3470abc7d26e3b3c4 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,47 +102,47 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Оберіть групи" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "Перевірка з'єднання пройшла успішно" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "Перевірка з'єднання завершилась неуспішно" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "Підтвердіть Видалення" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" @@ -150,7 +150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" @@ -158,11 +158,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "Додати налаштування Сервера" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Хост" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Порт" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "DN Користувача" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "DN клієнтського користувача для прив'язки, наприклад: uid=agent,dc=example,dc=com. Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Пароль" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Для анонімного доступу, залиште DN і Пароль порожніми." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "Один Base DN на одній строчці" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index bab8528c7f1373b6f28f510a1d9caded9e7826e7..48370788f05fce1a82aceecc3c961f3be3357537 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -148,78 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po index 67a31557590541c7e545aa3b2df78c1654785f70..0b43a8f09727a4da44801edad8edefbbb85bae4c 100644 --- a/l10n/ur/files_external.po +++ b/l10n/ur/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index 0e1a65e62666f824e2e7f2a0e6ba78592ed2f55a..887f53e9eb266988c76ee92f813b8091e5464125 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 4328a5c95c9aaca1f9f925bf339c188c3bb6dd13..3acda1e58bad44ed6ec8149018570bc77d0a669a 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -149,78 +149,30 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "ترتیبات" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "محفوظ ھو رہا ہے ..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "سیکنڈز پہلے" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n منٹس پہلے" -msgstr[1] "%n منٹس پہلے" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1281 -msgid "today" -msgstr "آج" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "کل" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "پچھلے مہنیے" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "پچھلے سال" - -#: js/js.js:1287 -msgid "years ago" -msgstr "سالوں پہلے" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 9ffa335a7f256a946f79bc6b6fbef95a4dbf4073..09cc52156ca1e49ecd7a5244daaa45075b5b548f 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 31107c24caf123c939728f2abc5e2f5c681a55b1..37cd6cf7171d88e8086d441cae2bc6101dffc0db 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "یوزر نیم" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "شخصی" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "یوزرز" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "حذف کریں" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index d814c72910bc07590dc73446296f71c6bfda2c10..008c958d706b4c0ed0480827e2670cf4f76f2c42 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3165d1550d5f1ad362c7292f764417f6a97313c8..05b308363490e8f116b3be735dd01016fb45621b 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+0000\n" "Last-Translator: Ahmed Waqar Shah \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 91cbe7a6a2c86958764c92ff562639223cc5db31..e8eebe00a296ba73279b1dd4792b16cb4713dcf5 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index cd17514e7ed57932fc8896e53cd5e16d310d66d0..4293cb7762c8db32e71d154fffa36db92dda91f4 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "حذف کریں" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "مزید" msgid "Less" msgstr "کم" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "منسوخ کریں" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "دیگر" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 6d4dd6a1eddf46ad809e5bc59a81f933dd499677..548354cc7c54664254a9158d66e2135abaae2cdc 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,65 +102,65 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "پاسورڈ" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index aa6ad7de146ada4fedd2b0f9094dfcc811133469..0b0cdc632d8713b4aa8592df0c9407976f1365f2 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-29 01:54-0400\n" +"PO-Revision-Date: 2014-08-29 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -148,74 +148,30 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:501 +#: js/js.js:496 msgid "Settings" msgstr "" -#: js/js.js:590 +#: js/js.js:585 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:586 msgid "Folder" msgstr "" -#: js/js.js:592 +#: js/js.js:587 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:588 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:602 msgid "Saving..." msgstr "" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" - -#: js/js.js:1281 -msgid "today" -msgstr "" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "" - -#: js/js.js:1284 -msgid "last month" -msgstr "" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" - -#: js/js.js:1286 -msgid "last year" -msgstr "" - -#: js/js.js:1287 -msgid "years ago" -msgstr "" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/uz/files_external.po b/l10n/uz/files_external.po index 073b4534b5ca567d4ad619cef78ca98ed1b5a7b0..5e6a66d5b30ab75e126d91e7dad877e90ed8c2b1 100644 --- a/l10n/uz/files_external.po +++ b/l10n/uz/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:712 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:722 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:744 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:746 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:748 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "" - -#: templates/settings.php:106 -msgid "Users" -msgstr "" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index a5738d6010d00f4630db1d2c684f88083f96527b..c3d4a7ec1cb98d43a1211537510ae1ce1f3fec63 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-23 01:54-0400\n" -"PO-Revision-Date: 2014-08-23 05:54+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -349,27 +349,27 @@ msgstr "" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -733,11 +733,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -975,19 +983,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 3c04b518f3bb58feead0dda233b1ed507e235121..3ebc4b406965655597abeadb84c11b703ae8e235 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -152,74 +152,30 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "Thư mục" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "vài giây trước" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n phút trước" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n giờ trước" - -#: js/js.js:1281 -msgid "today" -msgstr "hôm nay" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "hôm qua" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n ngày trước" - -#: js/js.js:1284 -msgid "last month" -msgstr "tháng trước" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n tháng trước" - -#: js/js.js:1286 -msgid "last year" -msgstr "năm trước" - -#: js/js.js:1287 -msgid "years ago" -msgstr "năm trước" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 68a45a7ab2ef95adc88a30fc905241de9aaf3565..89ee2daf132d231efd538e4b4238451e2d7b041d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 3e2fae8d509f33d3e29d4cc478593f8b83304213..ccf245bd0321c7afa5c0b53158017226ef82229b 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -68,7 +68,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -85,15 +85,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -117,8 +117,8 @@ msgstr "" msgid "Host" msgstr "Máy chủ" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "Tên đăng nhập" @@ -148,14 +148,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -181,7 +173,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -232,33 +224,41 @@ msgstr "Cá nhân" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -301,39 +301,23 @@ msgstr "" msgid "Add storage" msgstr "Thêm bộ nhớ" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "Tất cả người dùng" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "Nhóm" - -#: templates/settings.php:106 -msgid "Users" -msgstr "Người dùng" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "Xóa" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "Kích hoạt tính năng lưu trữ ngoài" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "Chứng chỉ SSL root" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "Nhập Root Certificate" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index fed9805aa98e9216e0d08eecb717091e132bd0d6..969fc9dfdfb6e1d4290920219231f8e7c3a6a99b 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 298fd58f0342ac930df458f4d90f86408fc28b2b..784713a8318ac7a1a33e2ff31207f80ed457be9c 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 470c38fbf34a55e466b83c1f4d460578e377abd5..c3b797b25db05eaca29b7f9a4315601d7bf1751b 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,33 +17,33 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "Mã Token đã hết hạn. Hãy tải lại trang." msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 02d3ea291432f5c576f499a82bcebff3dc8ec4e5..d557907a33bf89e8d2662f2380dfb781c28c266b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "Mã hóa" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "lùi lại" @@ -350,27 +350,27 @@ msgstr "Xóa" msgid "never" msgstr "không thay đổi" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "hơn" msgid "Less" msgstr "ít" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "Họ và tên" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "Email" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "Tải lên" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "Xóa " -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "Hủy" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "Chọn hình ảnh như hồ sơ cá nhân" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "Tên đăng nhập" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "Hạn ngạch mặt định" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "Không giới hạn" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "Khác" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index da65fee853d7dae912c55ac84ce442fb80a4a2c5..3d69ae46ac78f243c59a9c222f128c0da3b4cb8f 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "Chọn nhóm" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "Máy chủ" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "Bạn có thể bỏ qua các giao thức, ngoại trừ SSL. Sau đó bắt đầu với ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "Cổng" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "Người dùng DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "Các DN của người sử dụng đã được thực hiện, ví dụ như uid =agent , dc = example, dc = com. Để truy cập nặc danh ,DN và mật khẩu trống." -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "Mật khẩu" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "Cho phép truy cập nặc danh , DN và mật khẩu trống." -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 1ec04f2136fd1622e3f477c54aa92d66cb0bfbdf..b8913aa21421f8f8609c45781144fa92d806ab48 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -156,74 +156,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "设置" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "文件" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "文件夹" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "图像" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "声音" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "保存中" -#: js/js.js:1278 -msgid "seconds ago" -msgstr "秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分钟前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小时前" - -#: js/js.js:1281 -msgid "today" -msgstr "今天" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨天" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 天前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "去年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "未能成功发送重置邮件,请联系管理员。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 380c8014c823516cb29dee24ecb4358ec2760f27..1167907dc2a38e2180229f193af438edb1f7b278 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 268b6fc8c1a66f4a1bd2bf8b6d92a73820d100bb..e5ab06a47b54068cec778fd15f6fdcada316cbdf 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" -"Last-Translator: Kaijia Feng \n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -87,16 +87,16 @@ msgid "Secret Key" msgstr "秘钥" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "域名 (可选)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "端口 (可选)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "区域 (optional)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -119,8 +119,8 @@ msgstr "" msgid "Host" msgstr "主机" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "用户名" @@ -150,14 +150,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "OpenStack 对象存储" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "用户名 (必须)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "Bucket (必须)" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -183,8 +175,8 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "HTTP 请求超时(秒) (可选)" +msgid "Timeout of HTTP requests in seconds" +msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -234,33 +226,41 @@ msgstr "个人" msgid "System" msgstr "系统" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已保存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "注意:" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "和" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -303,39 +303,23 @@ msgstr "可用于" msgid "Add storage" msgstr "增加存储" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "无用户或组" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "所有用户" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "组" - -#: templates/settings.php:106 -msgid "Users" -msgstr "用户" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "删除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "启用用户外部存储" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "允许用户挂载以下外部存储" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL根证书" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "导入根证书" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 0c8ff9585cae73f4b5b73b5734d57e1cdd2c53da..a2188aa825cb9bab98a6fcb0662df2b261ea05bd 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -33,15 +33,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "无法添加远程分享" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "分享给您的文件" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "您分享的文件" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "分享链接的文件" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 336ec96d3223800dfd575b389574c68c1a5d2017..d2e4ea0a227f9dca33660082e435c14c5c8cf1a3 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f84ecb44455f91bb169c35ca77568c9f72f20416..5631fec48a366cf62dc02a28a1d97f26c8fcfd98 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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" @@ -23,33 +23,33 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "无法写入“config”目录!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "查看 %s" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -171,12 +171,12 @@ msgstr "Token 过期,请刷新页面。" msgid "Unknown user" msgstr "未知用户" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 输入数据库用户名。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 输入数据库名称。" @@ -192,7 +192,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 用户名和/或密码无效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" @@ -201,23 +201,23 @@ msgstr "你需要输入一个数据库中已有的账户或管理员账户。" msgid "MySQL/MariaDB username and/or password not valid" msgstr "MySQL/MariaDB 数据库用户名和/或密码无效" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "数据库错误:\"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -242,15 +242,15 @@ msgstr "MySQL/MariaDB 用户 '%s'@'%%' 已存在" msgid "Drop this user from MySQL/MariaDB." msgstr "建议从 MySQL/MariaDB 数据库中删除此用户。" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "不能建立甲骨文连接" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 数据库用户名和/或密码无效" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" @@ -342,68 +342,68 @@ msgstr "共享 %s 失败,因为不允许用链接共享" msgid "Share type %s is not valid for %s" msgstr "%s 不是 %s 的合法共享类型" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "设置 %s 权限失败,因为权限超出了 %s 已有权限。" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "设置 %s 的权限失败,因为未找到到对应项" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "共享后端 %s 必须实现 OCP\\Share_Backend 接口" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "未找到共享后端 %s" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "%s 的共享后端未找到" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "共享 %s 失败,因为用户 %s 不是原始共享者" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "共享 %s 失败,因为权限超过了 %s 已有权限" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "共享 %s 失败,因为不允许二次共享" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "共享 %s 失败,因为 %s 使用的共享后端未找到它的来源" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 81c83cb4b9841618013c9adf9567084276508383..a40839ad39265a1398c0d4566b71a991522170b3 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -60,7 +60,7 @@ msgstr "在发送测试邮件前您需要设置您的用户电子邮件。" msgid "Send mode" msgstr "发送模式" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -334,7 +334,7 @@ msgstr "请提供一个有效的组名称" msgid "deleted {groupName}" msgstr "已删除 {groupName}" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "撤销" @@ -358,27 +358,27 @@ msgstr "删除" msgid "never" msgstr "从不" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "已删除 {userName}" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "增加组" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "创建用户出错" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:用户 \"{user}\" 的家目录已存在" @@ -742,11 +742,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "版本" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the 加入 msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:39 +#: templates/personal.php:40 #, php-format msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密码" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密码" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "全名" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "填入电子邮件地址从而启用密码恢复和接收通知" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "联系人图片" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "上传新的" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "从文件中选择一个新的" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "移除图片" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png 或 jpg。正方形比较理想但你也可以之后对其进行裁剪。" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "您的头像由您的原始账户所提供。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "用作头像" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "语言" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "加密 app 不再被启用,请解密您所有的文件" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "解密所有文件" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "您的加密密钥已经移动到一个备份位置。如果发生了错误您可以恢复密钥,当确认所有文件已经正确解密时才可永久删除密钥。" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "恢复加密密钥" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "删除加密密钥" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "登录名称" @@ -984,19 +992,19 @@ msgstr "所有人" msgid "Admins" msgstr "管理员" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "默认配额" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "无限" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "其它" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 427ebb9958c2e2386135ef3806eccf81a37d957a..bfe2bb7ebb4a2c0ae5a2316aff00b7b881f6c111 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-20 01:54-0400\n" -"PO-Revision-Date: 2014-07-19 07:40+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+0000\n" "Last-Translator: Kaijia Feng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -53,11 +53,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -106,63 +106,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "选择分组" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "连接测试成功" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "连接测试失败" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的想要删除当前服务器配置吗?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "确认删除" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "无效的主机" @@ -254,60 +254,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "增加服务器配置" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "主机" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "可以忽略协议,但如要使用SSL,则需以ldaps://开头" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "端口" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "客户端使用的DN必须与绑定的相同,比如uid=agent,dc=example,dc=com\n如需匿名访问,将DN和密码保留为空" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密码" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "启用匿名访问,将DN和密码保留为空" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "每行一个基本判别名" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在高级选项卡里为用户和组指定Base DN" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 70f19fb783453714958c7b9e2c34e75628836e18..f16b8675504272c4d889be2cf155e1401850b357 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -149,74 +149,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "文件" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "資料夾" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "圖片" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "聲音" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分鐘前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小時前" - -#: js/js.js:1281 -msgid "today" -msgstr "今日" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨日" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 日前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上個月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "上年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 2b722957f6fb4d3dae9adff580dfb7d0e89c76d7..efabe7d113468321aa10eaa7fdaad87edd95226d 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+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" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index c8d3e547ba39e6514fd7a82d9b85d9a643e1f722..29634566bb8db68c8e04be991d7371b7bf31a66a 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -67,7 +67,7 @@ msgstr "" msgid "Secret" msgstr "" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -84,15 +84,15 @@ msgid "Secret Key" msgstr "" #: appinfo/app.php:65 -msgid "Hostname (optional)" +msgid "Hostname" msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" +msgid "Port" msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" +msgid "Region" msgstr "" #: appinfo/app.php:68 @@ -116,8 +116,8 @@ msgstr "" msgid "Host" msgstr "" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "用戶名稱" @@ -147,14 +147,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -180,7 +172,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -231,33 +223,41 @@ msgstr "個人" msgid "System" msgstr "" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已儲存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "" -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -300,39 +300,23 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "群組" - -#: templates/settings.php:106 -msgid "Users" -msgstr "用戶" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "刪除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 82e7965adfaf7bc3f09bedca931d7ffe619eb614..3785bb668143e6610d041966dc35651fe05b1481 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -29,15 +29,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 90d58a184bc1d7d5298a7d6e3f0fc719cbaa9e77..62f97591ea117d4b0728014ec4214542d6b8ebc4 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 70769656478946973e6d99fc73c2db9bf4210463..e7ab0a2dfc5f7bfdd63e1f7ef5a560be49bda9ec 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+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,33 +17,33 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" msgstr "" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -165,12 +165,12 @@ msgstr "" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "" @@ -186,7 +186,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -195,23 +195,23 @@ msgstr "" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -236,15 +236,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" @@ -336,68 +336,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 3c181e2d8e582aa167fad5d81f3b12da6e530944..39212b95460fa453c5ca4ab09df6c7353f353238 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -52,7 +52,7 @@ msgstr "" msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -326,7 +326,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "" @@ -350,27 +350,27 @@ msgstr "刪除" msgid "never" msgstr "" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" @@ -734,11 +734,11 @@ msgstr "更多" msgid "Less" msgstr "" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密碼" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密碼" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "更改密碼" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "電郵" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "" @@ -976,19 +984,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 264a0c9dca3db4e4791ecdc61a2bbd6b78900eac..51874c7bfb3ef025b5c6b4c6266cf57cab1795aa 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -49,11 +49,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -102,63 +102,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -250,60 +250,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "連接埠" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密碼" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 2758e1496fa4e9c3f76df78194b5ed22f712a740..01f9a89b3bfe0ffb17295de33e15905cffd7d4ec 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:22+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" @@ -42,12 +42,12 @@ msgstr "已檢查資料庫格式更新" #: ajax/update.php:22 msgid "Checked database schema update for apps" -msgstr "" +msgstr "已檢查應用程式的資料庫格式更新" #: ajax/update.php:25 #, php-format msgid "Updated \"%s\" to %s" -msgstr "" +msgstr "已更新 %s 到 %s" #: ajax/update.php:33 #, php-format @@ -150,74 +150,30 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:501 +#: js/js.js:497 msgid "Settings" msgstr "設定" -#: js/js.js:590 +#: js/js.js:586 msgid "File" msgstr "檔案" -#: js/js.js:591 +#: js/js.js:587 msgid "Folder" msgstr "資料夾" -#: js/js.js:592 +#: js/js.js:588 msgid "Image" msgstr "圖片" -#: js/js.js:593 +#: js/js.js:589 msgid "Audio" msgstr "音訊" -#: js/js.js:607 +#: js/js.js:603 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1278 -msgid "seconds ago" -msgstr "幾秒前" - -#: js/js.js:1279 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分鐘前" - -#: js/js.js:1280 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小時前" - -#: js/js.js:1281 -msgid "today" -msgstr "今天" - -#: js/js.js:1282 -msgid "yesterday" -msgstr "昨天" - -#: js/js.js:1283 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 天前" - -#: js/js.js:1284 -msgid "last month" -msgstr "上個月" - -#: js/js.js:1285 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 個月前" - -#: js/js.js:1286 -msgid "last year" -msgstr "去年" - -#: js/js.js:1287 -msgid "years ago" -msgstr "幾年前" - #: js/lostpassword.js:3 lostpassword/controller/lostcontroller.php:198 msgid "Couldn't send reset email. Please contact your administrator." msgstr "無法寄送重設 email ,請聯絡系統管理員" @@ -247,7 +203,7 @@ msgstr "重設密碼" #: js/lostpassword.js:16 msgid "Password can not be changed. Please contact your administrator." -msgstr "" +msgstr "無法變更密碼,請聯絡您的系統管理員" #: js/oc-dialogs.js:108 js/oc-dialogs.js:255 msgid "No" @@ -288,7 +244,7 @@ msgstr "新檔案" #: js/oc-dialogs.js:451 msgid "Already existing files" -msgstr "" +msgstr "已經存在的檔案" #: js/oc-dialogs.js:453 msgid "Which files do you want to keep?" @@ -346,7 +302,7 @@ msgstr "已分享" #: js/share.js:257 msgid "Shared with {recipients}" -msgstr "" +msgstr "與 {recipients} 分享" #: js/share.js:266 msgid "Share" @@ -396,7 +352,7 @@ msgstr "密碼保護" #: js/share.js:400 msgid "Choose a password for the public link" -msgstr "" +msgstr "為公開連結選一個密碼" #: js/share.js:406 msgid "Allow Public Upload" @@ -516,15 +472,15 @@ msgstr "沒有選擇要刪除的標籤" #: js/update.js:30 msgid "Updating {productName} to version {version}, this may take a while." -msgstr "" +msgstr "正在更新 {productName} 到版本 {version} ,請稍候" #: js/update.js:43 msgid "Please reload the page." -msgstr "" +msgstr "請重新整理頁面" #: js/update.js:52 msgid "The update was unsuccessful." -msgstr "" +msgstr "更新失敗" #: js/update.js:61 msgid "The update was successful. Redirecting you to ownCloud now." @@ -532,17 +488,17 @@ msgstr "升級成功,正將您重新導向至 ownCloud 。" #: lostpassword/controller/lostcontroller.php:133 msgid "Couldn't reset password because the token is invalid" -msgstr "" +msgstr "無法重設密碼因為 token 無效" #: lostpassword/controller/lostcontroller.php:159 msgid "Couldn't send reset email. Please make sure your username is correct." -msgstr "" +msgstr "無法寄送重設 email ,請確認您的帳號輸入正確" #: lostpassword/controller/lostcontroller.php:174 msgid "" "Couldn't send reset email because there is no email address for this " "username. Please contact your administrator." -msgstr "" +msgstr "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員" #: lostpassword/controller/lostcontroller.php:191 #, php-format @@ -585,19 +541,19 @@ msgstr "新密碼" #: lostpassword/templates/resetpassword.php:6 msgid "New Password" -msgstr "" +msgstr "新密碼" #: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "不支援 Mac OS X 而且 %s 在這個平台上面無法正常運作,請自行衡量風險!" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "請考慮使用 GNU/Linux 伺服器以取得最好的效果" #: strings.php:5 msgid "Personal" @@ -633,7 +589,7 @@ msgstr "刪除標籤出錯" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "貼標籤發生錯誤" #: tags/controller.php:86 msgid "Error untagging" @@ -668,7 +624,7 @@ msgstr "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "這個分享將會於 %s 過期" #. TRANSLATORS term at the end of a mail #: templates/altmail.php:8 templates/mail.php:21 @@ -725,7 +681,7 @@ msgstr "密碼" #: templates/installation.php:72 msgid "Storage & database" -msgstr "" +msgstr "儲存空間和資料庫" #: templates/installation.php:79 msgid "Data folder" @@ -738,7 +694,7 @@ msgstr "設定資料庫" #: templates/installation.php:96 #, php-format msgid "Only %s is available." -msgstr "" +msgstr "剩下 %s 可使用" #: templates/installation.php:111 templates/installation.php:113 msgid "Database user" @@ -764,7 +720,7 @@ msgstr "資料庫主機" msgid "" "SQLite will be used as database. For larger installations we recommend to " "change this." -msgstr "" +msgstr "將會使用 SQLite 作為資料庫,在大型安裝中建議使用其他種資料庫" #: templates/installation.php:159 msgid "Finish setup" @@ -779,7 +735,7 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "這個應用程式需要啟用 Javascript 才能正常運作,請啟用 Javascript 然後重新載入頁面" #: templates/layout.user.php:47 #, php-format @@ -800,7 +756,7 @@ msgstr "請聯絡系統管理員。" #: templates/login.php:42 msgid "Forgot your password? Reset it!" -msgstr "" +msgstr "忘了密碼?重設它!" #: templates/login.php:47 msgid "remember" @@ -819,15 +775,15 @@ msgstr "其他登入方法" msgid "" "Hey there,

    just letting you know that %s shared %s " "with you.
    View it!

    " -msgstr "" +msgstr "嗨,

    %s 與你分享了%s
    檢視

    " #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "這個 ownCloud 伺服器目前運作於單一使用者模式" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "這表示只有系統管理員能夠使用" #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" @@ -841,55 +797,55 @@ msgstr "感謝您的耐心" #: templates/untrustedDomain.php:5 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "你正在從一個未信任的網域存取伺服器" #: templates/untrustedDomain.php:8 msgid "" "Please contact your administrator. If you are an administrator of this " "instance, configure the \"trusted_domain\" setting in config/config.php. An " "example configuration is provided in config/config.sample.php." -msgstr "" +msgstr "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php" #: templates/untrustedDomain.php:10 msgid "" "Depending on your configuration, as an administrator you might also be able " "to use the button below to trust this domain." -msgstr "" +msgstr "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域" #: templates/untrustedDomain.php:14 #, php-format msgid "Add \"%s\" as trusted domain" -msgstr "" +msgstr "將 %s 加入到信任的網域" #: templates/update.admin.php:3 #, php-format msgid "%s will be updated to version %s." -msgstr "" +msgstr "%s 將會被升級到版本 %s" #: templates/update.admin.php:7 msgid "The following apps will be disabled:" -msgstr "" +msgstr "這些應用程式會被停用:" #: templates/update.admin.php:17 #, php-format msgid "The theme %s has been disabled." -msgstr "" +msgstr "主題 %s 已經被停用" #: templates/update.admin.php:21 msgid "" "Please make sure that the database, the config folder and the data folder " "have been backed up before proceeding." -msgstr "" +msgstr "在繼續之前,請備份資料庫、config 目錄及資料目錄" #: templates/update.admin.php:23 msgid "Start update" -msgstr "" +msgstr "開始升級" #: templates/update.admin.php:25 msgid "" "To avoid timeouts with larger installations, you can instead run the " "following command from your installation directory:" -msgstr "" +msgstr "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:" #: templates/update.user.php:3 msgid "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 26c8ad82b9f6c11771ba9c1da0e01e6d598e6337..62faed018a658066ac7d37139a9dc94ca74b598a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:02+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:02+0000\n" +"Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "伺服器上不允許開啓 URL ,請檢查伺服器設定" #: ajax/newfile.php:126 #, php-format msgid "The file exceeds your quota by %s" -msgstr "" +msgstr "這個檔案大小超出配額 %s" #: ajax/newfile.php:141 #, php-format diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 6392ddd0747bf5f96d0d00b793e4cd54fbe1c97c..ebc0f892676a978c521e157b41c9b6cc758017f0 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-31 05:54+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" @@ -69,7 +69,7 @@ msgstr "鑰" msgid "Secret" msgstr "密" -#: appinfo/app.php:55 appinfo/app.php:64 +#: appinfo/app.php:55 appinfo/app.php:64 appinfo/app.php:112 msgid "Bucket" msgstr "" @@ -86,16 +86,16 @@ msgid "Secret Key" msgstr "密鑰" #: appinfo/app.php:65 -msgid "Hostname (optional)" -msgstr "主機名稱 (選填)" +msgid "Hostname" +msgstr "" #: appinfo/app.php:66 -msgid "Port (optional)" -msgstr "埠號 (選填)" +msgid "Port" +msgstr "" #: appinfo/app.php:67 -msgid "Region (optional)" -msgstr "區域 (選填)" +msgid "Region" +msgstr "" #: appinfo/app.php:68 msgid "Enable SSL" @@ -118,8 +118,8 @@ msgstr "" msgid "Host" msgstr "主機" -#: appinfo/app.php:89 appinfo/app.php:130 appinfo/app.php:152 -#: appinfo/app.php:163 appinfo/app.php:174 +#: appinfo/app.php:89 appinfo/app.php:111 appinfo/app.php:130 +#: appinfo/app.php:152 appinfo/app.php:163 appinfo/app.php:174 msgid "Username" msgstr "使用者名稱:" @@ -149,14 +149,6 @@ msgstr "" msgid "OpenStack Object Storage" msgstr "" -#: appinfo/app.php:111 -msgid "Username (required)" -msgstr "使用者名稱 (必填)" - -#: appinfo/app.php:112 -msgid "Bucket (required)" -msgstr "" - #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" msgstr "" @@ -182,7 +174,7 @@ msgid "URL of identity endpoint (required for OpenStack Object Storage)" msgstr "" #: appinfo/app.php:119 -msgid "Timeout of HTTP requests in seconds (optional)" +msgid "Timeout of HTTP requests in seconds" msgstr "" #: appinfo/app.php:132 appinfo/app.php:142 @@ -233,33 +225,41 @@ msgstr "個人" msgid "System" msgstr "系統" -#: js/settings.js:325 js/settings.js:332 +#: js/settings.js:208 +msgid "All users. Type to select user or group." +msgstr "" + +#: js/settings.js:291 +msgid "(group)" +msgstr "" + +#: js/settings.js:467 js/settings.js:474 msgid "Saved" msgstr "已儲存" -#: lib/config.php:716 +#: lib/config.php:717 msgid "Note: " msgstr "警告: " -#: lib/config.php:726 +#: lib/config.php:727 msgid " and " msgstr "與" -#: lib/config.php:748 +#: lib/config.php:749 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "警告: PHP 並未啓用 Curl 的支援,因此無法掛載 %s 。請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:750 +#: lib/config.php:751 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 %s,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:752 +#: lib/config.php:753 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -302,39 +302,23 @@ msgstr "可用的" msgid "Add storage" msgstr "增加儲存區" -#: templates/settings.php:93 -msgid "No user or group" -msgstr "沒有使用者或群組" - -#: templates/settings.php:96 -msgid "All Users" -msgstr "所有使用者" - -#: templates/settings.php:98 -msgid "Groups" -msgstr "群組" - -#: templates/settings.php:106 -msgid "Users" -msgstr "使用者" - -#: templates/settings.php:119 templates/settings.php:120 -#: templates/settings.php:159 templates/settings.php:160 +#: templates/settings.php:96 templates/settings.php:97 +#: templates/settings.php:136 templates/settings.php:137 msgid "Delete" msgstr "刪除" -#: templates/settings.php:133 +#: templates/settings.php:110 msgid "Enable User External Storage" msgstr "啓用使用者外部儲存" -#: templates/settings.php:136 +#: templates/settings.php:113 msgid "Allow users to mount the following external storage" msgstr "允許使用者自行掛載以下的外部儲存" -#: templates/settings.php:151 +#: templates/settings.php:128 msgid "SSL root certificates" msgstr "SSL 根憑證" -#: templates/settings.php:169 +#: templates/settings.php:146 msgid "Import Root Certificate" msgstr "匯入根憑證" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index faa7495e10cc25bd92455f181b24ef5df146ae24..b9dc0e117319db2452d64b8874aad6cf690ad9e4 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-16 01:54-0400\n" -"PO-Revision-Date: 2014-08-16 05:54+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -30,15 +30,15 @@ msgstr "" msgid "Couldn't add remote share" msgstr "無法加入遠端分享" -#: appinfo/app.php:33 js/app.js:34 +#: appinfo/app.php:36 js/app.js:34 msgid "Shared with you" msgstr "與你分享" -#: appinfo/app.php:45 js/app.js:53 +#: appinfo/app.php:48 js/app.js:53 msgid "Shared with others" msgstr "與其他人分享" -#: appinfo/app.php:54 js/app.js:72 +#: appinfo/app.php:57 js/app.js:72 msgid "Shared by link" msgstr "由連結分享" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index a0ffa05e9c42ccdc5b0de84c137554f2609c5677..7338035e187801dbb6782bb1e01278b87aa30cbe 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:03+0000\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:03+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" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 3786c24ac696403e1c37c90543f7496b537c3163..d806a4864b61c4cbf0390ac49b1f8e5bc93dcb65 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -4,14 +4,14 @@ # # Translators: # happy chan , 2014 -# Pellaeon Lin , 2013 +# Pellaeon Lin , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-08-30 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 05:24+0000\n" +"Last-Translator: Pellaeon Lin \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,33 +19,33 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: base.php:200 base.php:207 +#: base.php:201 base.php:208 msgid "Cannot write into \"config\" directory!" -msgstr "" +msgstr "無法寫入 config 目錄!" -#: base.php:201 +#: base.php:202 msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" msgstr "" -#: base.php:203 +#: base.php:204 #, php-format msgid "See %s" msgstr "" -#: base.php:208 private/util.php:442 +#: base.php:209 private/util.php:442 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." msgstr "" -#: base.php:577 +#: base.php:581 msgid "Sample configuration detected" msgstr "" -#: base.php:578 +#: base.php:582 msgid "" "It has been detected that the sample configuration has been copied. This can" " break your installation and is unsupported. Please read the documentation " @@ -167,12 +167,12 @@ msgstr "Token 過期,請重新整理頁面。" msgid "Unknown user" msgstr "" -#: private/setup/abstractdatabase.php:26 +#: private/setup/abstractdatabase.php:26 private/setup/oci.php:26 #, php-format msgid "%s enter the database username." msgstr "%s 輸入資料庫使用者名稱。" -#: private/setup/abstractdatabase.php:29 +#: private/setup/abstractdatabase.php:29 private/setup/oci.php:29 #, php-format msgid "%s enter the database name." msgstr "%s 輸入資料庫名稱。" @@ -188,7 +188,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL 使用者和/或密碼無效:%s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/oci.php:128 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" @@ -197,23 +197,23 @@ msgstr "您必須輸入一個現有的帳號或管理員帳號。" msgid "MySQL/MariaDB username and/or password not valid" msgstr "" -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/mysql.php:67 private/setup/oci.php:68 +#: private/setup/oci.php:135 private/setup/oci.php:158 +#: private/setup/oci.php:165 private/setup/oci.php:176 +#: private/setup/oci.php:183 private/setup/oci.php:192 +#: private/setup/oci.php:200 private/setup/oci.php:209 +#: private/setup/oci.php:215 private/setup/postgresql.php:103 #: private/setup/postgresql.php:112 private/setup/postgresql.php:129 #: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "資料庫錯誤:\"%s\"" -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/mysql.php:68 private/setup/oci.php:69 +#: private/setup/oci.php:136 private/setup/oci.php:159 +#: private/setup/oci.php:166 private/setup/oci.php:177 +#: private/setup/oci.php:193 private/setup/oci.php:201 +#: private/setup/oci.php:210 private/setup/postgresql.php:104 #: private/setup/postgresql.php:113 private/setup/postgresql.php:130 #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format @@ -238,15 +238,15 @@ msgstr "" msgid "Drop this user from MySQL/MariaDB." msgstr "" -#: private/setup/oci.php:34 +#: private/setup/oci.php:48 msgid "Oracle connection could not be established" msgstr "無法建立 Oracle 資料庫連線" -#: private/setup/oci.php:41 private/setup/oci.php:113 +#: private/setup/oci.php:55 private/setup/oci.php:127 msgid "Oracle username and/or password not valid" msgstr "Oracle 用戶名和/或密碼無效" -#: private/setup/oci.php:170 private/setup/oci.php:202 +#: private/setup/oci.php:184 private/setup/oci.php:216 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" @@ -338,68 +338,68 @@ msgstr "" msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:862 +#: private/share/share.php:863 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:923 +#: private/share/share.php:924 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:961 +#: private/share/share.php:962 #, php-format msgid "" "Cannot set expiration date. Shares cannot expire later than %s after they " "have been shared" msgstr "" -#: private/share/share.php:969 +#: private/share/share.php:970 msgid "Cannot set expiration date. Expiration date is in the past" msgstr "" -#: private/share/share.php:1094 +#: private/share/share.php:1095 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:1101 +#: private/share/share.php:1102 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:1107 +#: private/share/share.php:1108 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1525 +#: private/share/share.php:1526 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1534 +#: private/share/share.php:1535 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1550 +#: private/share/share.php:1551 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1562 +#: private/share/share.php:1563 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1576 +#: private/share/share.php:1577 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index b75f81b1a79b4af45776e04f3fe638cb7552401d..09b7ebc4fe1c4d0587e97f5f97ae99307b8a9569 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-08-26 01:54-0400\n" -"PO-Revision-Date: 2014-08-26 05:23+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -53,7 +53,7 @@ msgstr "在準備要寄出測試郵件時您需要設定您的使用者郵件。 msgid "Send mode" msgstr "寄送模式" -#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:156 +#: admin/controller.php:118 templates/admin.php:381 templates/personal.php:157 msgid "Encryption" msgstr "加密" @@ -327,7 +327,7 @@ msgstr "" msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:230 js/users/users.js:300 +#: js/users/groups.js:230 js/users/users.js:299 msgid "undo" msgstr "復原" @@ -351,27 +351,27 @@ msgstr "刪除" msgid "never" msgstr "永不" -#: js/users/users.js:299 +#: js/users/users.js:298 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:435 +#: js/users/users.js:434 msgid "add group" msgstr "新增群組" -#: js/users/users.js:653 +#: js/users/users.js:652 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: js/users/users.js:654 js/users/users.js:660 js/users/users.js:675 +#: js/users/users.js:653 js/users/users.js:659 js/users/users.js:674 msgid "Error creating user" msgstr "建立用戶時出現錯誤" -#: js/users/users.js:659 +#: js/users/users.js:658 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: js/users/users.js:691 +#: js/users/users.js:690 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:使用者 {user} 的家目錄已經存在" @@ -735,11 +735,11 @@ msgstr "更多" msgid "Less" msgstr "更少" -#: templates/admin.php:485 templates/personal.php:208 +#: templates/admin.php:485 templates/personal.php:209 msgid "Version" msgstr "版本" -#: templates/admin.php:489 templates/personal.php:211 +#: templates/admin.php:489 templates/personal.php:212 msgid "" "Developed by the ownCloud community, the %s
    of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:50 templates/users/part.createuser.php:8 +#: templates/personal.php:51 templates/users/part.createuser.php:8 #: templates/users/part.userlist.php:9 msgid "Password" msgstr "密碼" -#: templates/personal.php:51 +#: templates/personal.php:52 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:52 +#: templates/personal.php:53 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:54 +#: templates/personal.php:55 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:57 +#: templates/personal.php:58 msgid "New password" msgstr "新密碼" -#: templates/personal.php:61 +#: templates/personal.php:62 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:73 templates/users/part.userlist.php:8 +#: templates/personal.php:74 templates/users/part.userlist.php:8 msgid "Full Name" msgstr "全名" -#: templates/personal.php:88 +#: templates/personal.php:89 msgid "Email" msgstr "信箱" -#: templates/personal.php:90 +#: templates/personal.php:91 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:93 +#: templates/personal.php:94 msgid "" "Fill in an email address to enable password recovery and receive " "notifications" msgstr "填入電子郵件地址來啟用忘記密碼和接收通知的功能" -#: templates/personal.php:101 +#: templates/personal.php:102 msgid "Profile picture" msgstr "個人資料照片" -#: templates/personal.php:106 +#: templates/personal.php:107 msgid "Upload new" msgstr "上傳新的" -#: templates/personal.php:108 +#: templates/personal.php:109 msgid "Select new from Files" msgstr "從已上傳的檔案中選一個" -#: templates/personal.php:109 +#: templates/personal.php:110 msgid "Remove image" msgstr "移除圖片" -#: templates/personal.php:110 +#: templates/personal.php:111 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它" -#: templates/personal.php:112 +#: templates/personal.php:113 msgid "Your avatar is provided by your original account." msgstr "您的圖像是由您原來的帳號所提供的。" -#: templates/personal.php:116 +#: templates/personal.php:117 msgid "Cancel" msgstr "取消" -#: templates/personal.php:117 +#: templates/personal.php:118 msgid "Choose as profile image" msgstr "設定為大頭貼" -#: templates/personal.php:123 templates/personal.php:124 +#: templates/personal.php:124 templates/personal.php:125 msgid "Language" msgstr "語言" -#: templates/personal.php:143 +#: templates/personal.php:144 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:162 +#: templates/personal.php:163 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "加密的軟體不能長時間啟用,請解密所有您的檔案" -#: templates/personal.php:168 +#: templates/personal.php:169 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:173 +#: templates/personal.php:174 msgid "Decrypt all Files" msgstr "解密所有檔案" -#: templates/personal.php:186 +#: templates/personal.php:187 msgid "" "Your encryption keys are moved to a backup location. If something went wrong" " you can restore the keys. Only delete them permanently if you are sure that" " all files are decrypted correctly." msgstr "" -#: templates/personal.php:190 +#: templates/personal.php:191 msgid "Restore Encryption Keys" msgstr "" -#: templates/personal.php:194 +#: templates/personal.php:195 msgid "Delete Encryption Keys" msgstr "" +#: templates/users/main.php:34 +msgid "Show storage location" +msgstr "" + +#: templates/users/main.php:38 +msgid "Show last log in" +msgstr "" + #: templates/users/part.createuser.php:4 msgid "Login Name" msgstr "登入名稱" @@ -977,19 +985,19 @@ msgstr "" msgid "Admins" msgstr "" -#: templates/users/part.setquota.php:7 +#: templates/users/part.setquota.php:3 msgid "Default Quota" msgstr "預設容量限制" -#: templates/users/part.setquota.php:9 templates/users/part.userlist.php:66 +#: templates/users/part.setquota.php:5 templates/users/part.userlist.php:66 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")" -#: templates/users/part.setquota.php:11 templates/users/part.userlist.php:75 +#: templates/users/part.setquota.php:7 templates/users/part.userlist.php:75 msgid "Unlimited" msgstr "無限制" -#: templates/users/part.setquota.php:26 templates/users/part.userlist.php:90 +#: templates/users/part.setquota.php:22 templates/users/part.userlist.php:90 msgid "Other" msgstr "其他" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index b32f887df9d472e840b6aa8ca881e0b43d52b194..ca419ca33e68a09d5f7fb2cc41166a7a78bffa20 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-08-31 01:54-0400\n" +"PO-Revision-Date: 2014-08-30 16:23+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" @@ -51,11 +51,11 @@ msgstr "" msgid "No configuration specified" msgstr "" -#: ajax/wizard.php:81 +#: ajax/wizard.php:97 msgid "No data specified" msgstr "" -#: ajax/wizard.php:89 +#: ajax/wizard.php:105 #, php-format msgid " Could not set configuration %s" msgstr "" @@ -104,63 +104,63 @@ msgstr "" msgid "Please specify the port" msgstr "" -#: js/settings.js:780 +#: js/settings.js:792 msgid "Configuration OK" msgstr "" -#: js/settings.js:789 +#: js/settings.js:801 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:798 +#: js/settings.js:810 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:827 js/settings.js:836 msgid "Select groups" msgstr "選擇群組" -#: js/settings.js:818 js/settings.js:827 +#: js/settings.js:830 js/settings.js:839 msgid "Select object classes" msgstr "" -#: js/settings.js:821 +#: js/settings.js:833 msgid "Select attributes" msgstr "" -#: js/settings.js:848 +#: js/settings.js:860 msgid "Connection test succeeded" msgstr "連線測試成功" -#: js/settings.js:855 +#: js/settings.js:867 msgid "Connection test failed" msgstr "連線測試失敗" -#: js/settings.js:864 +#: js/settings.js:876 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的要刪除現在的伺服器設定嗎?" -#: js/settings.js:865 +#: js/settings.js:877 msgid "Confirm Deletion" msgstr "確認刪除" -#: lib/wizard.php:97 lib/wizard.php:112 +#: lib/wizard.php:98 lib/wizard.php:113 #, php-format msgid "%s group found" msgid_plural "%s groups found" msgstr[0] "" -#: lib/wizard.php:126 +#: lib/wizard.php:127 #, php-format msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:317 lib/wizard.php:1051 +#: lib/wizard.php:392 lib/wizard.php:1128 msgid "Could not find the desired feature" msgstr "" -#: lib/wizard.php:858 lib/wizard.php:870 +#: lib/wizard.php:935 lib/wizard.php:947 msgid "Invalid Host" msgstr "" @@ -252,60 +252,60 @@ msgid "" "username in the login action. Example: \"uid=%%uid\"" msgstr "" -#: templates/part.wizard-server.php:6 +#: templates/part.wizard-server.php:13 msgid "1. Server" msgstr "" -#: templates/part.wizard-server.php:13 +#: templates/part.wizard-server.php:20 #, php-format msgid "%s. Server:" msgstr "" -#: templates/part.wizard-server.php:18 +#: templates/part.wizard-server.php:25 msgid "Add Server Configuration" msgstr "新增伺服器設定" -#: templates/part.wizard-server.php:21 +#: templates/part.wizard-server.php:28 msgid "Delete Configuration" msgstr "" -#: templates/part.wizard-server.php:30 +#: templates/part.wizard-server.php:37 msgid "Host" msgstr "主機" -#: templates/part.wizard-server.php:31 +#: templates/part.wizard-server.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://" -#: templates/part.wizard-server.php:36 +#: templates/part.wizard-server.php:43 msgid "Port" msgstr "連接埠" -#: templates/part.wizard-server.php:44 +#: templates/part.wizard-server.php:51 msgid "User DN" msgstr "User DN" -#: templates/part.wizard-server.php:45 +#: templates/part.wizard-server.php:52 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 "客戶端使用者的DN與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。" -#: templates/part.wizard-server.php:52 +#: templates/part.wizard-server.php:59 msgid "Password" msgstr "密碼" -#: templates/part.wizard-server.php:53 +#: templates/part.wizard-server.php:60 msgid "For anonymous access, leave DN and Password empty." msgstr "匿名連接時請將 DN 與密碼欄位留白" -#: templates/part.wizard-server.php:60 +#: templates/part.wizard-server.php:67 msgid "One Base DN per line" msgstr "一行一個 Base DN" -#: templates/part.wizard-server.php:61 +#: templates/part.wizard-server.php:68 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" diff --git a/lib/base.php b/lib/base.php index 499ef29f304f0b9a8f74c3c44ac41ae8fe0b5e00..176f799f94de80acaf413b2bf053a65ab80e4553 100644 --- a/lib/base.php +++ b/lib/base.php @@ -71,6 +71,7 @@ class OC { public static $CLI = false; /** + * @deprecated use \OC::$server->getSession() instead * @var \OC\Session\Session */ public static $session = null; @@ -192,7 +193,7 @@ class OC { } public static function checkConfig() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (file_exists(self::$configDir . "/config.php") and !is_writable(self::$configDir . "/config.php") ) { @@ -344,6 +345,7 @@ class OC { OC_Util::addScript("oc-requesttoken"); OC_Util::addScript("apps"); OC_Util::addScript("snap"); + OC_Util::addScript("moment"); // avatars if (\OC_Config::getValue('enable_avatars', true) === true) { @@ -374,19 +376,20 @@ class OC { $cookie_path = OC::$WEBROOT ? : '/'; ini_set('session.cookie_path', $cookie_path); - //set the session object to a dummy session so code relying on the session existing still works - self::$session = new \OC\Session\Memory(''); - // Let the session name be changed in the initSession Hook $sessionName = OC_Util::getInstanceId(); try { // Allow session apps to create a custom session object $useCustomSession = false; - OC_Hook::emit('OC', 'initSession', array('session' => &self::$session, 'sessionName' => &$sessionName, 'useCustomSession' => &$useCustomSession)); - if(!$useCustomSession) { + $session = self::$server->getSession(); + OC_Hook::emit('OC', 'initSession', array('session' => &$session, 'sessionName' => &$sessionName, 'useCustomSession' => &$useCustomSession)); + if($useCustomSession) { + // use the session reference as the new Session + self::$server->setSession($session); + } else { // set the session name to the instance id - which is unique - self::$session = new \OC\Session\Internal($sessionName); + self::$server->setSession(new \OC\Session\Internal($sessionName)); } // if session cant be started break with http 500 error } catch (Exception $e) { @@ -397,15 +400,19 @@ class OC { $sessionLifeTime = self::getSessionLifeTime(); // regenerate session id periodically to avoid session fixation - if (!self::$session->exists('SID_CREATED')) { - self::$session->set('SID_CREATED', time()); - } else if (time() - self::$session->get('SID_CREATED') > $sessionLifeTime / 2) { + /** + * @var \OCP\ISession $session + */ + $session = self::$server->getSession(); + if (!$session->exists('SID_CREATED')) { + $session->set('SID_CREATED', time()); + } else if (time() - $session->get('SID_CREATED') > $sessionLifeTime / 2) { session_regenerate_id(true); - self::$session->set('SID_CREATED', time()); + $session->set('SID_CREATED', time()); } // session timeout - if (self::$session->exists('LAST_ACTIVITY') && (time() - self::$session->get('LAST_ACTIVITY') > $sessionLifeTime)) { + if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) { if (isset($_COOKIE[session_name()])) { setcookie(session_name(), '', time() - 42000, $cookie_path); } @@ -414,7 +421,7 @@ class OC { session_start(); } - self::$session->set('LAST_ACTIVITY', time()); + $session->set('LAST_ACTIVITY', time()); } /** @@ -446,9 +453,6 @@ class OC { self::$loader->registerPrefix('Pimple', '3rdparty/Pimple'); spl_autoload_register(array(self::$loader, 'load')); - // make a dummy session available as early as possible since error pages need it - self::$session = new \OC\Session\Memory(''); - // set some stuff //ob_start(); error_reporting(E_ALL | E_STRICT); @@ -543,7 +547,7 @@ class OC { // User and Groups if (!OC_Config::getValue("installed", false)) { - self::$session->set('user_id', ''); + self::$server->getSession()->set('user_id', ''); } OC_User::useBackend(new OC_User_Database()); @@ -570,7 +574,7 @@ class OC { // Check whether the sample configuration has been copied if(OC_Config::getValue('copied_sample_config', false)) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); header('HTTP/1.1 503 Service Temporarily Unavailable'); header('Status: 503 Service Temporarily Unavailable'); OC_Template::printErrorPage( @@ -668,7 +672,6 @@ class OC { * Handle the request */ public static function handleRequest() { - $l = \OC_L10N::get('lib'); // load all the classpaths from the enabled apps so they are available // in the routing files of each app OC::loadAppClassPaths(); @@ -782,7 +785,7 @@ class OC { if (isset($_COOKIE['oc_ignore_php_auth_user'])) { // Ignore HTTP Authentication for 5 more mintues. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], time() + 300, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); - } elseif ($_SERVER['PHP_AUTH_USER'] === self::$session->get('loginname')) { + } elseif ($_SERVER['PHP_AUTH_USER'] === self::$server->getSession()->get('loginname')) { // Ignore HTTP Authentication to allow a different user to log in. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], 0, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); } @@ -929,7 +932,7 @@ class OC { if (OC_User::login($_POST["user"], $_POST["password"])) { // setting up the time zone if (isset($_POST['timezone-offset'])) { - self::$session->set('timezone', $_POST['timezone-offset']); + self::$server->getSession()->set('timezone', $_POST['timezone-offset']); } $userid = OC_User::getUser(); diff --git a/lib/l10n/az.php b/lib/l10n/az.php index ae7bd7860107647d876bbb44d47f1c7bde82c0e7..a527b8edf5dac6bb21a220c41f417dcb1df56832 100644 --- a/lib/l10n/az.php +++ b/lib/l10n/az.php @@ -3,16 +3,42 @@ $TRANSLATIONS = array( "Cannot write into \"config\" directory!" => "\"configurasiya\" direktoriyasının daxilində yazmaq mümkün deyil", "This can usually be fixed by giving the webserver write access to the config directory" => "Adətən tez həll etmək üçün WEB serverdə yazma yetkisi verilir", "See %s" => "Bax %s", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Bu adətən %s config qovluğuna web server üçün yazma yetkisi verdikdə, %s tərəfindən fix edilə bilir. ", +"Sample configuration detected" => "Konfiqurasiya nüsxəsi təyin edildi", +"Help" => "Kömək", +"Personal" => "Şəxsi", "Settings" => "Quraşdırmalar", "Users" => "İstifadəçilər", "Admin" => "İnzibatçı", "No app name specified" => "Proqram adı təyin edilməyib", "Unknown filetype" => "Fayl tipi bəlli deyil.", "Invalid image" => "Yalnış şəkil", +"App directory already exists" => "Proqram təminatı qovluğu artıq mövcuddur.", +"Can't create app folder. Please fix permissions. %s" => "Proqram təminatı qovluğunu yaratmaq mümkün olmadı. Xahiş edilir yetkiləri düzgün təyin edəsiniz. %s", +"Application is not enabled" => "Proqram təminatı aktiv edilməyib", "Authentication error" => "Təyinat metodikası", +"Token expired. Please reload page." => "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.", +"Unknown user" => "Istifadəçi tanınmır ", +"%s enter the database username." => "Verilənlər bazası istifadəçi adını %s daxil et.", +"%s enter the database name." => "Verilənlər bazası adını %s daxil et.", +"MS SQL username and/or password not valid: %s" => "MS SQL istifadəçi adı və/ya şifrəsi düzgün deyil : %s", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB istifadəçi adı və/ya şifrəsi düzgün deyil :", +"DB Error: \"%s\"" => "DB səhvi: \"%s\"", +"Drop this user from MySQL/MariaDB" => "Bu istifadəçini MySQL/MariaDB-dən sil", +"Drop this user from MySQL/MariaDB." => "Bu istifadəçini MySQL/MariaDB-dən sil.", +"Oracle connection could not be established" => "Oracle qoşulması alınmır", +"Oracle username and/or password not valid" => "Oracle istifadəçi adı və/ya şifrəsi düzgün deyil", +"Set an admin username." => "İnzibatçı istifadəçi adını təyin et.", +"Set an admin password." => "İnzibatçı şifrəsini təyin et.", +"%s shared »%s« with you" => "%s yayımlandı »%s« sizinlə", +"Sharing %s failed, because the file does not exist" => "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil.", +"You are not allowed to share %s" => "%s-in yayimlanmasına sizə izin verilmir", +"Share type %s is not valid for %s" => "Yayımlanma tipi %s etibarlı deyil %s üçün", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"_%n month ago_::_%n months ago_" => array("",""), +"A valid username must be provided" => "Düzgün istifadəçi adı daxil edilməlidir", +"A valid password must be provided" => "Düzgün şifrə daxil edilməlidir" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 82a7fccf47f543b261ea08c2047457a7d1369661..c28f399610e2d6be519d75dc68cb1cc5fc2a4994 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -1,11 +1,21 @@ "\"config\" ডিরেক্টরিতে লেখা যায়না!", +"This can usually be fixed by giving the webserver write access to the config directory" => "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরিতে লেখার অধিকার দিয়ে এই সমস্যা সমাধান করা যায়", +"See %s" => "%s দেখ", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "সাধারণতঃ ওয়বসার্ভারকে কনফিগ ডিরেক্টরি%sতে লেখার অধিকার দিয়ে%s এই সমস্যা সমাধান করা যায়", +"Sample configuration detected" => "নমুনা কনফিগারেশন পাওয়া গেছে", "Help" => "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", "Users" => "ব্যবহারকারী", "Admin" => "প্রশাসন", +"No app name specified" => "কোন অ্যাপ নাম সুনির্দিষ্ট নয়", +"Unknown filetype" => "অজানা প্রকৃতির ফাইল", +"Invalid image" => "অবৈধ চিত্র", "web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", +"App directory already exists" => "এই অ্যাপ ডিরেক্টরিটি পূর্ব থেকেই বিদ্যমান", +"Can't create app folder. Please fix permissions. %s" => "অ্যাপ ফোল্ডার বানানো হেলনা। অনুমতি নির্ধারণ করুন। %s", "Application is not enabled" => "অ্যাপ্লিকেসনটি সক্রিয় নয়", "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Token expired. Please reload page." => "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index a34690c365f96fb047eff545f4298e6c8aacb98e..c5c10a77bf2dfbf7d7179f829b3cdc363b08cf2c 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -1,9 +1,9 @@ "Nelze zapisovat do adresáře \"config\"!", -"This can usually be fixed by giving the webserver write access to the config directory" => "To bývá obyčejně vyřešeno povolením webovému serveru zapisovat do konfiguračního adresáře.", +"This can usually be fixed by giving the webserver write access to the config directory" => "To lze obvykle vyřešit povolením zápisu webovému serveru do konfiguračního adresáře", "See %s" => "Viz %s", -"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do konfiguračního adresáře %s.", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "To lze obvykle vyřešit %spovolením zápisu webovému serveru do konfiguračního adresáře%s.", "Sample configuration detected" => "Byla detekována vzorová konfigurace", "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Pravděpodobně byla zkopírována konfigurační nastavení ze vzorových souborů. Toto není podporováno a může poškodit vaši instalaci. Nahlédněte prosím do dokumentace před prováděním změn v souboru config.php", "Help" => "Nápověda", @@ -66,16 +66,16 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Sdílení typu %s není korektní pro %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nastavení oprávnění pro %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla povolena pro %s", "Setting permissions for %s failed, because the item was not found" => "Nastavení práv pro %s selhalo, protože položka nebyla nalezena", -"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění.", -"Cannot set expiration date. Expiration date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti.", -"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Podpůrná vrstva pro sdílení %s musí obsahovat rozhraní OCP\\Share_Backend", -"Sharing backend %s not found" => "Podpůrná vrstva sdílení %s nenalezena", -"Sharing backend for %s not found" => "Podpůrná vrstva sdílení pro %s nenalezena", -"Sharing %s failed, because the user %s is the original sharer" => "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první.", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nelze nastavit datum vypršení platnosti. Sdílení nemůže vypršet později než za %s po zveřejnění", +"Cannot set expiration date. Expiration date is in the past" => "Nelze nastavit datum vypršení platnosti. Datum vypršení je v minulosti", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Úložiště pro sdílení %s musí implementovat rozhraní OCP\\Share_Backend", +"Sharing backend %s not found" => "Úložiště sdílení %s nenalezeno", +"Sharing backend for %s not found" => "Úložiště sdílení pro %s nenalezeno", +"Sharing %s failed, because the user %s is the original sharer" => "Sdílení položky %s selhalo, protože byla sdílena uživatelem %s jako první", "Sharing %s failed, because the permissions exceed permissions granted to %s" => "Sdílení položky %s selhalo, protože jsou k tomu nutná vyšší oprávnění, než jaká byla %s povolena.", -"Sharing %s failed, because resharing is not allowed" => "Sdílení položky %s selhalo, protože sdílení dále není povoleno", -"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sdílení položky %s selhalo, protože podpůrná vrstva sdílení nenalezla zdrojový %s", -"Sharing %s failed, because the file could not be found in the file cache" => "Sdílení položky %s selhalo, protože soubor nebyl nalezen v dočasném úložišti", +"Sharing %s failed, because resharing is not allowed" => "Sdílení položky %s selhalo, protože znovu-sdílení není povoleno", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sdílení položky %s selhalo, protože úložiště sdílení %s nenalezla zdroj", +"Sharing %s failed, because the file could not be found in the file cache" => "Sdílení položky %s selhalo, protože soubor nebyl nalezen ve vyrovnávací paměti", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), @@ -92,32 +92,32 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Musíte zadat platné heslo", "The username is already being used" => "Uživatelské jméno je již využíváno", "No database drivers (sqlite, mysql, or postgresql) installed." => "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql).", -"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Oprávnění bývají obvykle napravena, když %s povolí webovému serveru zápis do kořenového adresáře %s.", +"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Oprávnění lze obvykle napravit %spovolením zápisu webovému serveru do kořenového adresáře%s.", "Cannot write into \"config\" directory" => "Nelze zapisovat do adresáře \"config\"", "Cannot write into \"apps\" directory" => "Nelze zapisovat do adresáře \"apps\"", -"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "To bývá obyčeně vyřešeno, když %s povolí webovému serveru zápis do apps adresáře%s nebo vypnutím položky appstore v konfiguračním souboru.", -"Cannot create \"data\" directory (%s)" => "Nelze vytvořit \"data\" adresář (%s)", -"This can usually be fixed by giving the webserver write access to the root directory." => "To bývá obvykle vyřešeno, když povolí webovému serveru zápis do kořenového adresáře.", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "To lze obvykle vyřešit %spovolením zápisu webovému serveru do adresáře apps%s nebo zakázáním appstore v konfiguračním souboru.", +"Cannot create \"data\" directory (%s)" => "Nelze vytvořit adresář \"data\" (%s)", +"This can usually be fixed by giving the webserver write access to the root directory." => "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře.", "Setting locale to %s failed" => "Nastavení jazyka na %s selhalo", "Please install one of these locales on your system and restart your webserver." => "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému a restartujte webový server.", -"Please ask your server administrator to install the module." => "Požádejte svého administrátora, ať nainstaluje příslušný modul.", +"Please ask your server administrator to install the module." => "Požádejte svého administrátora o instalaci tohoto modulu.", "PHP module %s not installed." => "PHP modul %s není nainstalován.", "PHP %s or higher is required." => "Je vyžadováno PHP %s nebo vyšší.", -"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Požádejte svého administrátora, aby provedl aktualizaci PHP na nejvyšší verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP.", +"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Požádejte svého administrátora o aktualizaci PHP na nejnovější verzi. Vaše verze PHP již není podporována komunitami ownCloud a PHP.", "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "Je zapnut PHP Safe Mode. Pro správnou funkčnost ownCloud je třeba toto vypnout.", -"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "PHP Safe Mode je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru.", +"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "PHP Safe Mode je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru.", "Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Je povoleno nastavení Magic Quotes. Pro správnou funkčnost ownCloud je třeba toto vypnout.", -"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes je zastaralé a víceméně zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora, ať toto provede v php.ini nebo v nastavení konfigurace webového serveru.", -"PHP modules have been installed, but they are still listed as missing?" => "PHP moduly jsou nainstalovány, ale stále vykázány jako chybějící?", -"Please ask your server administrator to restart the web server." => "Požádejte svého administrátora, ať restartuje webový server.", -"PostgreSQL >= 9 required" => "Je třeba PostgreSQL >= 9", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes je zastaralé a většinou zbytečné nastavení, které je třeba vypnout. Požádejte prosím svého administrátora o zakázání v php.ini nebo v konfiguraci webového serveru.", +"PHP modules have been installed, but they are still listed as missing?" => "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?", +"Please ask your server administrator to restart the web server." => "Požádejte svého administrátora o restart webového serveru.", +"PostgreSQL >= 9 required" => "Je vyžadováno PostgreSQL >= 9", "Please upgrade your database version" => "Aktualizujte prosím verzi své databáze", "Error occurred while checking PostgreSQL version" => "Při zjišťování verze PostgreSQL došlo k chybě", -"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Zajistěte prosím PostgreSQL >=9 nebo zkontrolujte logy pro více informací o chybě.", -"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Změntě prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", -"Data directory (%s) is readable by other users" => "Data adresář (%s) je čitelný i ostatními uživateli", -"Data directory (%s) is invalid" => "Data adresář (%s) je neplatný", +"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Ujistěte se, že máte PostgreSQL >= 9, a zkontrolujte logy pro více informací o chybě.", +"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", +"Data directory (%s) is readable by other users" => "Datový adresář (%s) je čitelný i ostatními uživateli", +"Data directory (%s) is invalid" => "Datový adresář (%s) je neplatný", "Please check that the data directory contains a file \".ocdata\" in its root." => "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocdata\".", -"Could not obtain lock type %d on \"%s\"." => "Nelze zjistit typ zámku %d na \"%s\"." +"Could not obtain lock type %d on \"%s\"." => "Nelze získat zámek typu %d na \"%s\"." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index dd5347c671455d35f3d65b4ed31c76df8889ceeb..e23abf05943212c7c7c21c6d99ded5071941b508 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -4,6 +4,8 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen", "See %s" => "Se %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til config-mappen%s.", +"Sample configuration detected" => "Eksempel for konfiguration registreret", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Der er registreret at eksempel for konfiguration er blevet kopieret. Dette kan ødelægge din installation og understøttes ikke. Læs venligst dokumentationen før der foretages ændringer i config.php", "Help" => "Hjælp", "Personal" => "Personligt", "Settings" => "Indstillinger", @@ -64,6 +66,8 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Delingstypen %s er ikke gyldig for %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Angivelse af tilladelser for %s mislykkedes, fordi tilladelserne overskred de som var tildelt %s", "Setting permissions for %s failed, because the item was not found" => "Angivelse af tilladelser for %s mislykkedes, fordi artiklen ikke blev fundet", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Kan ikke angive udløbsdato. Delinger kan ikke udløbe senere end %s efter at de er blevet delt", +"Cannot set expiration date. Expiration date is in the past" => "Kan ikke angive udløbsdato. Udløbsdato er allerede passeret", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Delingsbackend'en %s skal implementere grænsefladen OCP\\Share_Backend", "Sharing backend %s not found" => "Delingsbackend'en %s blev ikke fundet", "Sharing backend for %s not found" => "Delingsbackend'en for %s blev ikke fundet", @@ -91,9 +95,11 @@ $TRANSLATIONS = array( "Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Rettigheder kan som regel rettes ved %sat give webserveren skriveadgang til rodmappen%s.", "Cannot write into \"config\" directory" => "Kan ikke skrive til mappen \"config\"", "Cannot write into \"apps\" directory" => "Kan ikke skrive til mappen \"apps\"", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "Dette kan som regel rettes ved at %sgive webserveren skriveadgang til apps-mappen%s eller slå appstore fra i config-filen.", "Cannot create \"data\" directory (%s)" => "Kan ikke oprette mappen \"data\" (%s)", "This can usually be fixed by giving the webserver write access to the root directory." => "Dette kan som regel rettes ved give webserveren skriveadgang til rodmappen.", "Setting locale to %s failed" => "Angivelse af %s for lokalitet mislykkedes", +"Please install one of these locales on your system and restart your webserver." => "Installér venligst én af disse lokaliteter på dit system, og genstart din webserver.", "Please ask your server administrator to install the module." => "Du bedes anmode din serveradministrator om at installere modulet.", "PHP module %s not installed." => "PHP-modulet %s er ikke installeret.", "PHP %s or higher is required." => "Der kræves PHP %s eller nyere.", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index a07ef8f249c9a0c01ab716ed5a7ae0a9007f35d4..365c2e1f96aacb2f930eaaefc6fa5a557554aa0f 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Tavaliselt saab selle lahendada andes veebiserverile seatete kataloogile \"config\" kirjutusõigused", "See %s" => "Vaata %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Tavaliselt saab selle lahendada %s andes veebiserverile seadete kataloogile \"config\" kirjutusõigused %s", +"Sample configuration detected" => "Tuvastati näidisseaded", "Help" => "Abiinfo", "Personal" => "Isiklik", "Settings" => "Seaded", @@ -64,6 +65,7 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi", "Setting permissions for %s failed, because the item was not found" => "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud", +"Cannot set expiration date. Expiration date is in the past" => "Aegumiskuupäeva ei saa määrata. Aegumise kuupäev on minevikus", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", "Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", "Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 49fdee6e741be45ce1e121e84498d432101ecc8a..35200643d4b3e0cb2666be419d55928f5f969691 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -1,17 +1,23 @@ "Nem írható a \"config\" könyvtár!", +"This can usually be fixed by giving the webserver write access to the config directory" => "Ez rendszerint úgy oldható meg, hogy írási jogot adunk a webszervernek a config könyvtárra.", +"See %s" => "Lásd %s", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek a config könyvtárra%s.", +"Sample configuration detected" => "A példabeállítások vannak beállítva", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Úgy tűnik a példakonfigurációt próbálja ténylegesen használni. Ez nem támogatott, és működésképtelenné teheti a telepítést. Kérjük olvassa el a dokumentációt és azt követően változtasson a config.php-n!", "Help" => "Súgó", "Personal" => "Személyes", "Settings" => "Beállítások", "Users" => "Felhasználók", "Admin" => "Adminsztráció", +"App \\\"%s\\\" can't be installed because it is not compatible with this version of ownCloud." => " \\\"%s\\\" alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen változatával.", "No app name specified" => "Nincs az alkalmazás név megadva.", "Unknown filetype" => "Ismeretlen file tipús", "Invalid image" => "Hibás kép", "web services under your control" => "webszolgáltatások saját kézben", "App directory already exists" => "Az alkalmazás mappája már létezik", -"Can't create app folder. Please fix permissions. %s" => "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s", +"Can't create app folder. Please fix permissions. %s" => "Nem lehetett létrehozni az alkalmazás mappáját. Kérem ellenőrizze a jogosultságokat. %s", "No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", "No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", "No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", @@ -19,9 +25,9 @@ $TRANSLATIONS = array( "Failed to open archive when installing app" => "Nem sikerült megnyitni a tömörített állományt a telepítés során", "App does not provide an info.xml file" => "Az alkalmazás nem szolgáltatott info.xml file-t", "App can't be installed because of not allowed code in the App" => "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett programkód szerepel", -"App can't be installed because it is not compatible with this version of ownCloud" => "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával.", +"App can't be installed because it is not compatible with this version of ownCloud" => "Az alkalmazás nem telepíthető, mert nem kompatibilis az ownCloud jelen verziójával.", "App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-kiszolgálón feltüntetett verzióval.", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", "Authentication error" => "Azonosítási hiba", "Token expired. Please reload page." => "A token lejárt. Frissítse az oldalt.", @@ -31,8 +37,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", "MS SQL username and/or password not valid: %s" => "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s", "You need to enter either an existing account or the administrator." => "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia", +"MySQL/MariaDB username and/or password not valid" => "A MySQL/MariaDB felhasználónév és/vagy jelszó nem megfelelő", "DB Error: \"%s\"" => "Adatbázis hiba: \"%s\"", "Offending command was: \"%s\"" => "A hibát ez a parancs okozta: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "A MySQL/MariaDB felhasználó '%s'@'localhost' már létezik.", +"Drop this user from MySQL/MariaDB" => "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből", +"MySQL/MariaDB user '%s'@'%%' already exists" => "A MySQL/MariaDB felhasználó '%s'@'%%' már létezik.", +"Drop this user from MySQL/MariaDB." => "Töröljük ez a felhasználót a MySQL/MariaDB-rendszerből.", "Oracle connection could not be established" => "Az Oracle kapcsolat nem hozható létre", "Oracle username and/or password not valid" => "Az Oracle felhasználói név és/vagy jelszó érvénytelen", "Offending command was: \"%s\", name: %s, password: %s" => "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s", @@ -43,7 +54,28 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "%s shared »%s« with you" => "%s megosztotta Önnel ezt: »%s«", "Sharing %s failed, because the file does not exist" => "%s megosztása sikertelen, mert a fájl nem létezik", -"Cannot set expiration date. Expiration date is in the past" => "Nem lehet beállítani a lejárati időt mivel már elmúlt.", +"You are not allowed to share %s" => "Önnek nincs jogosultsága %s megosztására", +"Sharing %s failed, because the user %s is the item owner" => "%s megosztása nem sikerült, mert %s felhasználó az állomány tulajdonosa", +"Sharing %s failed, because the user %s does not exist" => "%s megosztása nem sikerült, mert %s felhasználó nem létezik", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s megosztása nem sikerült, mert %s felhasználó nem tagja egyik olyan csoportnak sem, aminek %s tagja", +"Sharing %s failed, because this item is already shared with %s" => "%s megosztása nem sikerült, mert ez már meg van osztva %s-vel", +"Sharing %s failed, because the group %s does not exist" => "%s megosztása nem sikerült, mert %s csoport nem létezik", +"Sharing %s failed, because %s is not a member of the group %s" => "%s megosztása nem sikerült, mert %s felhasználó nem tagja a %s csoportnak", +"You need to provide a password to create a public link, only protected links are allowed" => "Meg kell adnia egy jelszót is, mert a nyilvános linkek csak jelszóval védetten használhatók", +"Sharing %s failed, because sharing with links is not allowed" => "%s megosztása nem sikerült, mert a linkekkel történő megosztás nincs engedélyezve", +"Share type %s is not valid for %s" => "A %s megosztási típus nem érvényes %s-re", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a megadottak túllépik a %s-re érvényes jogosultságokat", +"Setting permissions for %s failed, because the item was not found" => "Nem sikerült %s-re beállítani az elérési jogosultságokat, mert a kérdéses állomány nem található", +"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" => "Nem lehet beállítani a lejárati időt. A megosztások legfeljebb ennyi idővel járhatnak le a létrehozásukat követően: %s", +"Cannot set expiration date. Expiration date is in the past" => "Nem lehet beállítani a lejárati időt, mivel a megadott lejárati időpont már elmúlt.", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Az %s megosztási alrendszernek támogatnia kell az OCP\\Share_Backend interface-t", +"Sharing backend %s not found" => "A %s megosztási alrendszer nem található", +"Sharing backend for %s not found" => "%s megosztási alrendszere nem található", +"Sharing %s failed, because the user %s is the original sharer" => "%s megosztása nem sikerült, mert %s felhasználó az eredeti megosztó", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s megosztása nem sikerült, mert a jogosultságok túllépik azt, ami %s rendelkezésére áll", +"Sharing %s failed, because resharing is not allowed" => "%s megosztása nem sikerült, mert a megosztás továbbadása nincs engedélyezve", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s megosztása nem sikerült, mert %s megosztási alrendszere nem találja", +"Sharing %s failed, because the file could not be found in the file cache" => "%s megosztása nem sikerült, mert a fájl nem található a gyorsítótárban", "Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"", "seconds ago" => "pár másodperce", "_%n minute ago_::_%n minutes ago_" => array("","%n perccel ezelőtt"), @@ -55,10 +87,37 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), "last year" => "tavaly", "years ago" => "több éve", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "A felhasználónévben csak a következő karakterek fordulhatnak elő: \"a-z\", \"A-Z\", \"0-9\", és \"_.@-\"", "A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", "A valid password must be provided" => "Érvényes jelszót kell megadnia", "The username is already being used" => "Ez a bejelentkezési név már foglalt", +"No database drivers (sqlite, mysql, or postgresql) installed." => "Nincs telepítve adatbázis-meghajtóprogram (sqlite, mysql vagy postgresql).", +"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Az elérési problémák rendszerint megoldhatók azzal, ha a %swebszervernek írásjogot adunk a gyökérkönyvtárra%s.", "Cannot write into \"config\" directory" => "Nem írható a \"config\" könyvtár", -"Please upgrade your database version" => "Kérlek frissítsd az adatbázisodat" +"Cannot write into \"apps\" directory" => "Nem írható az \"apps\" könyvtár", +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "Ez rendszerint úgy oldható meg, hogy %sírási jogot adunk a webszervernek az app könyvtárra%s, vagy letiltjuk a config fájlban az appstore használatát.", +"Cannot create \"data\" directory (%s)" => "Nem sikerült létrehozni a \"data\" könyvtárt (%s)", +"This can usually be fixed by giving the webserver write access to the root directory." => "Ez rendszerint úgy oldható meg, hogy írásjogot adunk a webszervernek a gyökérkönyvtárra.", +"Setting locale to %s failed" => "A lokalizáció %s-re való állítása nem sikerült", +"Please install one of these locales on your system and restart your webserver." => "Kérjük állítsa be a következő lokalizációk valamelyikét a rendszeren és indítsa újra a webszervert!", +"Please ask your server administrator to install the module." => "Kérje meg a rendszergazdát, hogy telepítse a modult!", +"PHP module %s not installed." => "A %s PHP modul nincs telepítve.", +"PHP %s or higher is required." => "PHP %s vagy ennél újabb szükséges.", +"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Kérje meg a rendszergazdát, hogy frissítse a PHP-t újabb változatra! Ezt a PHP változatot már nem támogatja az ownCloud és a PHP fejlesztői közösség.", +"PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "Be van állítva a PHP Safe Mode. Az ownCloud megfelelő működéséhez szükséges, hogy ez ki legyen kapcsolva.", +"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "A PHP Safe Mode egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!", +"Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Be van álltva a Magic Quotes. Az ownCloud megfelelő működéséhez szükséges, hogy ez le legyen tiltva.", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "A Magic Quotes egy régi, már nem támogatott és haszontalan üzemmód, amit érdemes letiltani. Kérje meg a rendszergazdát, hogy tiltsa le vagy a php.ini-ben, vagy a webszerver beállításokban!", +"PHP modules have been installed, but they are still listed as missing?" => "A PHP modulok telepítve vannak, de a listában mégsincsenek felsorolva?", +"Please ask your server administrator to restart the web server." => "Kérje meg a rendszergazdát, hogy indítsa újra a webszervert!", +"PostgreSQL >= 9 required" => "PostgreSQL >= 9 szükséges", +"Please upgrade your database version" => "Kérem frissítse az adatbázis-szoftvert!", +"Error occurred while checking PostgreSQL version" => "Hiba történt a PostgreSQL verziójának ellenőrzése közben", +"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Kérjük gondoskodjon róla, hogy a PostgreSQL legalább 9-es verziójú legyen, vagy ellenőrizze a naplófájlokat, hogy mi okozta a hibát!", +"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Kérjük módosítsa a könyvtár elérhetőségi engedélybeállítását 0770-re, hogy a tartalmát más felhasználó ne listázhassa!", +"Data directory (%s) is readable by other users" => "Az adatkönyvtár (%s) más felhasználók számára is olvasható ", +"Data directory (%s) is invalid" => "Érvénytelen a megadott adatkönyvtár (%s) ", +"Please check that the data directory contains a file \".ocdata\" in its root." => "Kérjük ellenőrizze, hogy az adatkönyvtár tartalmaz a gyökerében egy \".ocdata\" nevű állományt!", +"Could not obtain lock type %d on \"%s\"." => "Nem sikerült %d típusú zárolást elérni itt: \"%s\"." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 3e89a4d7a42b3d32f7cd9bb3156ae0d5ea6cdde7..a142255ce79f5a4a65a22ea540087508eb42d1d5 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -4,6 +4,8 @@ $TRANSLATIONS = array( "This can usually be fixed by giving the webserver write access to the config directory" => "Isto pode ser resolvido normalmente dando ao servidor web direitos de escrita ao directório de configuração", "See %s" => "Ver %s", "This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Isto pode ser resolvido normalmente %sdando ao servidor web direitos de escrita no directório de configuração%s.", +"Sample configuration detected" => "Exemplo de configuração detectada", +"It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" => "Foi detectado que a configuração de amostra foi copiada. Isso pode danificar a sua instalação e não é suportado. Por favor, leia a documentação antes de realizar mudanças no config.php", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Configurações", @@ -97,6 +99,7 @@ $TRANSLATIONS = array( "Cannot create \"data\" directory (%s)" => "Não é possivel criar a directoria \"data\" (%s)", "This can usually be fixed by giving the webserver write access to the root directory." => "Isto pode ser normalmente resolvido dando ao servidor web direito de escrita para o directório do root.", "Setting locale to %s failed" => "Definindo local para %s falhado", +"Please install one of these locales on your system and restart your webserver." => "Por favor instale um destes locais no seu sistema e reinicie o seu servidor web.", "Please ask your server administrator to install the module." => "Por favor pergunte ao seu administrador do servidor para instalar o modulo.", "PHP module %s not installed." => "O modulo %s PHP não está instalado.", "PHP %s or higher is required." => "Necessário PHP %s ou maior.", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 301df298b983530f6d07bf0f06cf20da0fd387e6..bb5ad02c8c95a05bbcf254d541a213a42c322916 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -1,5 +1,6 @@ "無法寫入 config 目錄!", "Help" => "說明", "Personal" => "個人", "Settings" => "設定", diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index eb1145460109ed4d61b0ff9c90ad03a3644b889e..ef8673af2310111eef0ba679f44ba55d46d80d85 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -28,7 +28,7 @@ class AllConfig implements \OCP\IConfig { * * @param string $key the key of the value, under which it was saved * @param mixed $default the default value to be returned if the value isn't set - * @return string the saved value + * @return mixed the value or $default */ public function getSystemValue($key, $default = '') { return \OCP\Config::getSystemValue($key, $default); diff --git a/lib/private/app.php b/lib/private/app.php index 70f8980d2c15e36396ef4be549e4ef2dd00142e4..d10d352b432538c1b038db751ab7f8f6ab247a1f 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -359,7 +359,7 @@ class OC_App { * entries are sorted by the key 'order' ascending. */ public static function getSettingsNavigation() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $settings = array(); // by default, settings only contain the help menu @@ -1094,7 +1094,7 @@ class OC_App { * @throws Exception if no app-name was specified */ public static function installApp($app) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); $appData=OC_OCSClient::getApplication($app); // check if app is a shipped app or not. OCS apps have an integer as id, shipped apps use a string diff --git a/lib/private/appframework/dependencyinjection/dicontainer.php b/lib/private/appframework/dependencyinjection/dicontainer.php index 61a2333eceeb38d4ddad732ebd50098b869d2fc5..e7efa3fa219a73ce64aaba5676716141014a54b7 100644 --- a/lib/private/appframework/dependencyinjection/dicontainer.php +++ b/lib/private/appframework/dependencyinjection/dicontainer.php @@ -191,7 +191,7 @@ class DIContainer extends SimpleContainer implements IAppContainer{ } private function getUserId() { - return \OC::$session->get('user_id'); + return \OC::$server->getSession()->get('user_id'); } /** diff --git a/lib/private/avatar.php b/lib/private/avatar.php index 2286b89687891e584b70e7968a789ef9958db2f2..a9d9346d50a10f115dd7d8cdb6f21de93d6eddf7 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -62,12 +62,12 @@ class OC_Avatar implements \OCP\IAvatar { $type = 'jpg'; } if ($type !== 'jpg' && $type !== 'png') { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); throw new \Exception($l->t("Unknown filetype")); } if (!$img->valid()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); throw new \Exception($l->t("Invalid image")); } diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index b1ef698583d246bade233bd9a6020af0ff2582e5..6e1baca93323aaae9b1bc76618c280996a1ddf4b 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -78,7 +78,7 @@ class OC_Connector_Sabre_Auth extends \Sabre\DAV\Auth\Backend\AbstractBasic { $result = $this->auth($server, $realm); // close the session - right after authentication there is not need to write to the session any more - \OC::$session->close(); + \OC::$server->getSession()->close(); return $result; } diff --git a/lib/private/defaults.php b/lib/private/defaults.php index dfd114cd2fe8aecc2b7bb35b2e7b37e838758557..3996cc081ed5fb33493577839842d7c5967ecfa4 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -27,7 +27,7 @@ class OC_Defaults { private $defaultMailHeaderColor; function __construct() { - $this->l = OC_L10N::get('lib'); + $this->l = \OC::$server->getL10N('lib'); $version = OC_Util::getVersion(); $this->defaultEntity = 'ownCloud'; /* e.g. company name, used for footers and copyright notices */ diff --git a/lib/private/group/database.php b/lib/private/group/database.php index 8d6ea1f50a58668d76707dcb0740f81cd7689f64..e6a5565b20eaca3f98f03645e90858b1f4608beb 100644 --- a/lib/private/group/database.php +++ b/lib/private/group/database.php @@ -168,7 +168,7 @@ class OC_Group_Database extends OC_Group_Backend { * Returns a list with all groups */ public function getGroups($search = '', $limit = null, $offset = null) { - $stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` LIKE ?', $limit, $offset); + $stmt = OC_DB::prepare('SELECT `gid` FROM `*PREFIX*groups` WHERE `gid` LIKE ? ORDER BY `gid` ASC', $limit, $offset); $result = $stmt->execute(array('%' . $search . '%')); $groups = array(); while ($row = $result->fetchRow()) { @@ -200,7 +200,7 @@ class OC_Group_Database extends OC_Group_Backend { * @return array an array of user ids */ public function usersInGroup($gid, $search = '', $limit = null, $offset = null) { - $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?', + $stmt = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ? ORDER BY `uid` ASC', $limit, $offset); $result = $stmt->execute(array($gid, '%'.$search.'%')); diff --git a/lib/private/installer.php b/lib/private/installer.php index dc9a3558b75fa9439a9e0bdcc93a0042107f4509..02e2190aaf24b7168110ad30e19c1bf0f34340ce 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -62,7 +62,7 @@ class OC_Installer{ * @return integer */ public static function installApp( $data = array()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); list($extractDir, $path) = self::downloadApp($data); $info = self::checkAppsIntegrity($data, $extractDir, $path); @@ -229,7 +229,7 @@ class OC_Installer{ * @throws Exception */ public static function downloadApp($data = array()) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if(!isset($data['source'])) { throw new \Exception($l->t("No source specified when installing app")); @@ -285,7 +285,7 @@ class OC_Installer{ * @throws \Exception */ public static function checkAppsIntegrity($data = array(), $extractDir, $path, $isShipped=false) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); //load the info.xml file of the app if(!is_file($extractDir.'/appinfo/info.xml')) { //try to find it in a subdir diff --git a/lib/private/json.php b/lib/private/json.php index da38654997f2eabfd13045c4bd304607069f3755..f2719dd2bc7de5e8d908df044cfcd27ea48e0bb7 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -25,7 +25,7 @@ class OC_JSON{ */ public static function checkAppEnabled($app) { if( !OC_App::isEnabled($app)) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Application is not enabled'), 'error' => 'application_not_enabled' ))); exit(); } @@ -36,7 +36,7 @@ class OC_JSON{ */ public static function checkLoggedIn() { if( !OC_User::isLoggedIn()) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } @@ -47,7 +47,7 @@ class OC_JSON{ */ public static function callCheck() { if( !OC_Util::isCallRegistered()) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Token expired. Please reload page.'), 'error' => 'token_expired' ))); exit(); } @@ -58,7 +58,7 @@ class OC_JSON{ */ public static function checkAdminUser() { if( !OC_User::isAdminUser(OC_User::getUser())) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } @@ -70,7 +70,7 @@ class OC_JSON{ */ public static function checkUserExists($user) { if (!OCP\User::userExists($user)) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); OCP\JSON::error(array('data' => array('message' => $l->t('Unknown user'), 'error' => 'unknown_user' ))); exit; } @@ -83,7 +83,7 @@ class OC_JSON{ */ public static function checkSubAdminUser() { if(!OC_SubAdmin::isSubAdmin(OC_User::getUser())) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); exit(); } diff --git a/lib/private/l10n/factory.php b/lib/private/l10n/factory.php index d0c3799b9c2f55e39ecb4bfea7e525982fe231e0..fcc3f3e339432505cae5d13f9f26eff32c16012a 100644 --- a/lib/private/l10n/factory.php +++ b/lib/private/l10n/factory.php @@ -20,12 +20,15 @@ class Factory { /** * get an L10N instance + * * @param string $app * @param string|null $lang * @return \OC_L10N */ - public function get($app) { - if (!isset($this->instances[$app])) { + public function get($app, $lang = null) { + if (!is_null($lang)) { + return new \OC_L10N($app, $lang); + } else if (!isset($this->instances[$app])) { $this->instances[$app] = new \OC_L10N($app); } return $this->instances[$app]; diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index e4cce6b2260238c508aa3268fda80eb4fe6eb9f8..dc147dea0c9dc90bf1433a72db56666814decc9a 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -28,6 +28,18 @@ class OC_OCSClient{ + /** + * Returns whether the AppStore is enabled (i.e. because the AppStore is disabled for EE) + * @return bool + */ + protected static function isAppstoreEnabled() { + if(OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false OR OC_Util::getEditionString() !== '') { + return false; + } + + return true; + } + /** * Get the url of the OCS AppStore server. * @return string of the AppStore server @@ -36,16 +48,9 @@ class OC_OCSClient{ * to set it in the config file or it will fallback to the default */ private static function getAppStoreURL() { - if(OC_Util::getEditionString()===''){ - $default='https://api.owncloud.com/v1'; - }else{ - $default=''; - } - $url = OC_Config::getValue('appstoreurl', $default); - return($url); + return OC::$server->getConfig()->getSystemValue('appstoreurl', 'https://api.owncloud.com/v1'); } - /** * Get the content of an OCS url call. * @return string of the response @@ -64,7 +69,7 @@ class OC_OCSClient{ * This function returns a list of all the application categories on the OCS server */ public static function getCategories() { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/categories'; @@ -100,7 +105,7 @@ class OC_OCSClient{ * @param string $filter */ public static function getApplications($categories, $page, $filter) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return(array()); } @@ -155,7 +160,7 @@ class OC_OCSClient{ * This function returns an applications from the OCS server */ public static function getApplication($id) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id); @@ -203,7 +208,7 @@ class OC_OCSClient{ * @param integer $item */ public static function getApplicationDownload($id, $item) { - if(OC_Config::getValue('appstoreenabled', true)==false) { + if(!self::isAppstoreEnabled()) { return null; } $url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item); diff --git a/lib/private/request.php b/lib/private/request.php index 5fd5b3a7197d2cd5fb336d48ca7ed5a29a5273a2..b063c1f5967c378aca66fb38aca7c304131371a5 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -15,6 +15,34 @@ class OC_Request { const REGEX_LOCALHOST = '/^(127\.0\.0\.1|localhost)(:[0-9]+|)$/'; + /** + * Returns the remote address, if the connection came from a trusted proxy and `forwarded_for_headers` has been configured + * then the IP address specified in this header will be returned instead. + * Do always use this instead of $_SERVER['REMOTE_ADDR'] + * @return string IP address + */ + public static function getRemoteAddress() { + $remoteAddress = $_SERVER['REMOTE_ADDR']; + $trustedProxies = \OC::$server->getConfig()->getSystemValue('trusted_proxies', array()); + + if(is_array($trustedProxies) && in_array($remoteAddress, $trustedProxies)) { + $forwardedForHeaders = \OC::$server->getConfig()->getSystemValue('forwarded_for_headers', array()); + + foreach($forwardedForHeaders as $header) { + if (array_key_exists($header, $_SERVER) === true) { + foreach (explode(',', $_SERVER[$header]) as $IP) { + $IP = trim($IP); + if (filter_var($IP, FILTER_VALIDATE_IP) !== false) { + return $IP; + } + } + } + } + } + + return $remoteAddress; + } + /** * Check overwrite condition * @param string $type diff --git a/lib/private/server.php b/lib/private/server.php index d67517f13e27aaaea20efcd249ac7dd2a0493a1a..f533d270a958ac938cd08c54de648360301b9f9c 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -12,6 +12,7 @@ use OC\Files\View; use OC\Security\Crypto; use OC\Security\SecureRandom; use OCP\IServerContainer; +use OCP\ISession; /** * Class Server @@ -33,8 +34,8 @@ class Server extends SimpleContainer implements IServerContainer { $urlParams = array(); } - if (\OC::$session->exists('requesttoken')) { - $requestToken = \OC::$session->get('requesttoken'); + if (\OC::$server->getSession()->exists('requesttoken')) { + $requestToken = \OC::$server->getSession()->get('requesttoken'); } else { $requestToken = false; } @@ -102,7 +103,7 @@ class Server extends SimpleContainer implements IServerContainer { * @var \OC\User\Manager $manager */ $manager = $c->query('UserManager'); - $userSession = new \OC\User\Session($manager, \OC::$session); + $userSession = new \OC\User\Session($manager, new \OC\Session\Memory('')); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { \OC_Hook::emit('OC_User', 'pre_createUser', array('run' => true, 'uid' => $uid, 'password' => $password)); }); @@ -270,14 +271,18 @@ class Server extends SimpleContainer implements IServerContainer { /** * Returns a view to ownCloud's files folder * + * @param string $userId user ID * @return \OCP\Files\Folder */ - function getUserFolder() { - $user = $this->getUserSession()->getUser(); - if (!$user) { - return null; + function getUserFolder($userId = null) { + if($userId === null) { + $user = $this->getUserSession()->getUser(); + if (!$user) { + return null; + } + $userId = $user->getUID(); } - $dir = '/' . $user->getUID(); + $dir = '/' . $userId; $root = $this->getRootFolder(); $folder = null; @@ -335,6 +340,20 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('UserSession'); } + /** + * @return \OCP\ISession + */ + function getSession() { + return $this->query('UserSession')->getSession(); + } + + /** + * @param \OCP\ISession $session + */ + function setSession(\OCP\ISession $session) { + return $this->query('UserSession')->setSession($session); + } + /** * @return \OC\NavigationManager */ @@ -362,10 +381,11 @@ class Server extends SimpleContainer implements IServerContainer { * get an L10N instance * * @param string $app appid + * @param string $lang * @return \OC_L10N */ - function getL10N($app) { - return $this->query('L10NFactory')->get($app); + function getL10N($app, $lang = null) { + return $this->query('L10NFactory')->get($app, $lang); } /** @@ -400,15 +420,6 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('MemCacheFactory'); } - /** - * Returns the current session - * - * @return \OCP\ISession - */ - function getSession() { - return \OC::$session; - } - /** * Returns the current session * diff --git a/lib/private/setup.php b/lib/private/setup.php index 9ea1690b6d97bca7bd599135b55f2acc71258bc6..7ea4c1bcd26673ee826f2cc2210c898a1a4e115d 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -15,7 +15,7 @@ class OC_Setup { ); public static function getTrans(){ - return OC_L10N::get('lib'); + return \OC::$server->getL10N('lib'); } public static function install($options) { diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index 24863b9e38a23238fc99bccd614010953854512e..23b5232438a228431d41e8241154ff61a4550a3a 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -14,9 +14,23 @@ class OCI extends AbstractDatabase { } else { $this->dbtablespace = 'USERS'; } + // allow empty hostname for oracle + $this->dbhost = $config['dbhost']; + \OC_Config::setValue('dbhost', $this->dbhost); \OC_Config::setValue('dbtablespace', $this->dbtablespace); } + public function validate($config) { + $errors = array(); + if(empty($config['dbuser'])) { + $errors[] = $this->trans->t("%s enter the database username.", array($this->dbprettyname)); + } + if(empty($config['dbname'])) { + $errors[] = $this->trans->t("%s enter the database name.", array($this->dbprettyname)); + } + return $errors; + } + public function setupDatabase($username) { $e_host = addslashes($this->dbhost); $e_dbname = addslashes($this->dbname); diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php index 1f4645eed9f17479a2f4e51e27a64df91802ae6b..4a92503bdd3b92ff968c9b4485f6e070448dbb1c 100644 --- a/lib/private/share/mailnotifications.php +++ b/lib/private/share/mailnotifications.php @@ -52,7 +52,7 @@ class MailNotifications { * @param string $sender user id (if nothing is set we use the currently logged-in user) */ public function __construct($sender = null) { - $this->l = \OC_L10N::get('core'); + $this->l = \OC::$server->getL10N('core'); $this->senderId = $sender; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 4bf6622c5618f34a1837dde279315562377bf60a..e2e9b94125e8ee7895ea307ad4cf92dcf370b82c 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -479,7 +479,7 @@ class Share extends \OC\Share\Constants { public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null, \DateTime $expirationDate = null) { $uidOwner = \OC_User::getUser(); $shareWithinGroupOnly = self::shareWithGroupMembersOnly(); - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (is_null($itemSourceName)) { $itemSourceName = $itemSource; @@ -719,23 +719,24 @@ class Share extends \OC\Share\Constants { /** * Unshare an item shared with the current user * @param string $itemType - * @param string $itemTarget + * @param string $itemOrigin Item target or source + * @param boolean $originIsSource true if $itemOrigin is the source, false if $itemOrigin is the target (optional) * @return boolean true on success or false on failure * * Unsharing from self is not allowed for items inside collections */ - public static function unshareFromSelf($itemType, $itemTarget) { - + public static function unshareFromSelf($itemType, $itemOrigin, $originIsSource = false) { + $originType = ($originIsSource) ? 'source' : 'target'; $uid = \OCP\User::getUser(); if ($itemType === 'file' || $itemType === 'folder') { - $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `file_target` = ?'; + $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `file_' . $originType . '` = ?'; } else { - $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `item_target` = ?'; + $statement = 'SELECT * FROM `*PREFIX*share` WHERE `item_type` = ? and `item_' . $originType . '` = ?'; } $query = \OCP\DB::prepare($statement); - $result = $query->execute(array($itemType, $itemTarget)); + $result = $query->execute(array($itemType, $itemOrigin)); $shares = $result->fetchAll(); @@ -848,7 +849,7 @@ class Share extends \OC\Share\Constants { * @return boolean true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { // Check if this item is a reshare and verify that the permissions @@ -937,7 +938,7 @@ class Share extends \OC\Share\Constants { * @throws \Exception */ private static function validateExpireDate($expireDate, $shareTime, $itemType, $itemSource) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $date = new \DateTime($expireDate); $today = new \DateTime('now'); @@ -1082,7 +1083,7 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function getBackend($itemType) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (isset(self::$backends[$itemType])) { return self::$backends[$itemType]; } else if (isset(self::$backendTypes[$itemType]['class'])) { @@ -1515,7 +1516,7 @@ class Share extends \OC\Share\Constants { private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null, $itemSourceName = null, \DateTime $expirationDate = null) { $backend = self::getBackend($itemType); - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); // Check if this is a reshare if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { @@ -1854,8 +1855,8 @@ class Share extends \OC\Share\Constants { return true; } - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + if ( \OC::$server->getSession()->exists('public_link_authenticated') + && \OC::$server->getSession()->get('public_link_authenticated') === $linkItem['id'] ) { return true; } diff --git a/lib/private/tags.php b/lib/private/tags.php index 0b62caf2dd89102d280228878b9d9e3fc4bb7481..0e58789ecd58cf3d3cd32e94910682d6199ae03a 100644 --- a/lib/private/tags.php +++ b/lib/private/tags.php @@ -178,7 +178,7 @@ class Tags implements \OCP\ITags { } if($tagId === false) { - $l10n = \OC_L10N::get('core'); + $l10n = \OC::$server->getL10N('core'); throw new \Exception( $l10n->t('Could not find category "%s"', $tag) ); diff --git a/lib/private/template.php b/lib/private/template.php index eaa58b769d7af6adaf895a3ac6dd910b2cb6553b..d95943a714c3ed165b6d747c05cd3250ef4d9c76 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -29,7 +29,7 @@ require_once __DIR__.'/template/functions.php'; class OC_Template extends \OC\Template\Base { private $renderas; // Create a full page? private $path; // The path to the template - private $headers=array(); //custom headers + private $headers = array(); //custom headers protected $app; // app id /** @@ -37,6 +37,7 @@ class OC_Template extends \OC\Template\Base { * @param string $app app providing the template * @param string $name of the template file (without suffix) * @param string $renderas = ""; produce a full page + * @param bool $registerCall = true * @return OC_Template object * * This function creates an OC_Template object. @@ -45,17 +46,17 @@ class OC_Template extends \OC\Template\Base { * according layout. For now, renderas can be set to "guest", "user" or * "admin". */ - public function __construct( $app, $name, $renderas = "" ) { + public function __construct( $app, $name, $renderas = "", $registerCall = true ) { // Read the selected theme from the config file $theme = OC_Util::getTheme(); // Read the detected formfactor and use the right file name. $fext = self::getFormFactorExtension(); - $requesttoken = OC::$session ? OC_Util::callRegister() : ''; + $requesttoken = (OC::$server->getSession() and $registerCall) ? OC_Util::callRegister() : ''; $parts = explode('/', $app); // fix translation when app is something like core/lostpassword - $l10n = OC_L10N::get($parts[0]); + $l10n = \OC::$server->getL10N($parts[0]); $themeDefaults = new OC_Defaults(); list($path, $template) = $this->findTemplate($theme, $app, $name, $fext); @@ -101,20 +102,20 @@ class OC_Template extends \OC\Template\Base { */ static public function getFormFactorExtension() { - if (!\OC::$session) { + if (!\OC::$server->getSession()) { return ''; } // if the formfactor is not yet autodetected do the // autodetection now. For possible formfactors check the // detectFormfactor documentation - if (!\OC::$session->exists('formfactor')) { - \OC::$session->set('formfactor', self::detectFormfactor()); + if (!\OC::$server->getSession()->exists('formfactor')) { + \OC::$server->getSession()->set('formfactor', self::detectFormfactor()); } // allow manual override via GET parameter if(isset($_GET['formfactor'])) { - \OC::$session->set('formfactor', $_GET['formfactor']); + \OC::$server->getSession()->set('formfactor', $_GET['formfactor']); } - $formfactor = \OC::$session->get('formfactor'); + $formfactor = \OC::$server->getSession()->get('formfactor'); if($formfactor==='default') { $fext=''; }elseif($formfactor==='mobile') { @@ -253,7 +254,7 @@ class OC_Template extends \OC\Template\Base { * Warning: All data passed to $hint needs to get sanitized using OC_Util::sanitizeHTML */ public static function printErrorPage( $error_msg, $hint = '' ) { - $content = new OC_Template( '', 'error', 'error' ); + $content = new \OC_Template( '', 'error', 'error', false ); $errors = array(array('error' => $error_msg, 'hint' => $hint)); $content->assign( 'errors', $errors ); $content->printPage(); @@ -272,19 +273,19 @@ class OC_Template extends \OC\Template\Base { if (defined('DEBUG') and DEBUG) { $hint = $exception->getTraceAsString(); if (!empty($hint)) { - $hint = '
    '.$hint.'
    '; + $hint = '
    '.OC_Util::sanitizeHTML($hint).'
    '; } while (method_exists($exception, 'previous') && $exception = $exception->previous()) { $error_msg .= '
    Caused by:' . ' '; if ($exception->getCode()) { - $error_msg .= '['.$exception->getCode().'] '; + $error_msg .= '['.OC_Util::sanitizeHTML($exception->getCode()).'] '; } - $error_msg .= $exception->getMessage(); + $error_msg .= OC_Util::sanitizeHTML($exception->getMessage()); }; } else { $hint = ''; if ($exception instanceof \OC\HintException) { - $hint = $exception->getHint(); + $hint = OC_Util::sanitizeHTML($exception->getHint()); } } self::printErrorPage($error_msg, $hint); diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index 46e48274001ac45662312e10b1a5cbf14e745cbd..3cbf0d9748f8f009585b88f8d545af0cb85306fc 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -117,7 +117,7 @@ function strip_time($timestamp){ * @return OC_L10N_String timestamp */ function relative_modified_date($timestamp, $fromTime = null, $dateOnly = false) { - $l=OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); if (!isset($fromTime) || $fromTime === null){ $fromTime = time(); } diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index a5dd9a0c614af5de8e497d7c4517aa30bd33acff..b9a97186945300d71585013b434b0383aa9c824d 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -59,7 +59,9 @@ class OC_TemplateLayout extends OC_Template { $this->assign( 'user_uid', OC_User::getUser() ); $this->assign( 'appsmanagement_active', strpos(OC_Request::requestUri(), OC_Helper::linkToRoute('settings_apps')) === 0 ); $this->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); - } else if ($renderas == 'guest' || $renderas == 'error') { + } else if ($renderas == 'error') { + parent::__construct('core', 'layout.guest', '', false); + } else if ($renderas == 'guest') { parent::__construct('core', 'layout.guest'); } else { parent::__construct('core', 'layout.base'); diff --git a/lib/private/user.php b/lib/private/user.php index cdef4d8fe652d0c5da1f12200db389d61d648561..c9b1522f85acb9d3dbd200ce9c209dcd2a6efe90 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -300,7 +300,7 @@ class OC_User { * Sets user id for session and triggers emit */ public static function setUserId($uid) { - OC::$session->set('user_id', $uid); + \OC::$server->getSession()->set('user_id', $uid); } /** @@ -337,8 +337,8 @@ class OC_User { * Checks if the user is logged in */ public static function isLoggedIn() { - if (\OC::$session->get('user_id') !== null && self::$incognitoMode === false) { - return self::userExists(\OC::$session->get('user_id')); + if (\OC::$server->getSession()->get('user_id') !== null && self::$incognitoMode === false) { + return self::userExists(\OC::$server->getSession()->get('user_id')); } return false; } @@ -386,7 +386,7 @@ class OC_User { * @return string uid or false */ public static function getUser() { - $uid = OC::$session ? OC::$session->get('user_id') : null; + $uid = \OC::$server->getSession() ? \OC::$server->getSession()->get('user_id') : null; if (!is_null($uid) && self::$incognitoMode === false) { return $uid; } else { diff --git a/lib/private/user/database.php b/lib/private/user/database.php index e9844f0f79ceafcc6fb5a7365871aca9293f4913..3a76adbe7633127a13dc96e7cb77c755592a0d69 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -157,7 +157,7 @@ class OC_User_Database extends OC_User_Backend { $displayNames = array(); $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' - . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + . 'LOWER(`uid`) LIKE LOWER(?) ORDER BY `uid` ASC', $limit, $offset); $result = $query->execute(array('%' . $search . '%', '%' . $search . '%')); $users = array(); while ($row = $result->fetchRow()) { @@ -231,7 +231,7 @@ class OC_User_Database extends OC_User_Backend { * Get a list of all users. */ public function getUsers($search = '', $limit = null, $offset = null) { - $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?) ORDER BY `uid` ASC', $limit, $offset); $result = $query->execute(array('%' . $search . '%')); $users = array(); while ($row = $result->fetchRow()) { diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index a54755e71c54bcfa90da20e4dc3a31cf563ab3c3..5c155c27abab6cd4a1ea3ef8672ab7d8a52e24a1 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -237,7 +237,7 @@ class Manager extends PublicEmitter implements IUserManager { * @return bool|\OC\User\User the created user of false */ public function createUser($uid, $password) { - $l = \OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); // Check the name for bad characters // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" if (preg_match('/[^a-zA-Z0-9 _\.@\-]/', $uid)) { diff --git a/lib/private/user/session.php b/lib/private/user/session.php index 6abf8fb80d2ad4eaecc39dc454c0a01101e713ef..11938db50764301612d3591d9c4159945560f58b 100644 --- a/lib/private/user/session.php +++ b/lib/private/user/session.php @@ -47,10 +47,10 @@ class Session implements IUserSession, Emitter { protected $activeUser; /** - * @param \OC\User\Manager $manager - * @param \OC\Session\Session $session + * @param \OCP\IUserManager $manager + * @param \OCP\ISession $session */ - public function __construct($manager, $session) { + public function __construct(\OCP\IUserManager $manager, \OCP\ISession $session) { $this->manager = $manager; $this->session = $session; } @@ -82,6 +82,44 @@ class Session implements IUserSession, Emitter { return $this->manager; } + /** + * get the session object + * + * @return \OCP\ISession + */ + public function getSession() { + // fetch the deprecated \OC::$session if it changed for backwards compatibility + if (isset(\OC::$session) && \OC::$session !== $this->session) { + \OC::$server->getLogger()->warning( + 'One of your installed apps still seems to use the deprecated '. + '\OC::$session and has replaced it with a new instance. Please file a bug against it.'. + 'Closing and replacing session in UserSession instance.' + ); + $this->setSession(\OC::$session); + } + return $this->session; + } + + /** + * set the session object + * + * @param \OCP\ISession $session + */ + public function setSession(\OCP\ISession $session) { + if ($this->session instanceof \OCP\ISession) { + $this->session->close(); + } + $this->session = $session; + + // maintain deprecated \OC::$session + if (\OC::$session !== $this->session) { + if (\OC::$session instanceof \OCP\ISession) { + \OC::$session->close(); + } + \OC::$session = $session; + } + } + /** * set the currently active user * diff --git a/lib/private/util.php b/lib/private/util.php index b2a9aecb5d03e8a604907c8c941dc5c7947521f1..8fae5189ca2b007e6a5af23b5f62ebda5dc40a92 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -384,15 +384,15 @@ class OC_Util { * @return string timestamp * @description adjust to clients timezone if we know it */ - public static function formatDate($timestamp, $dateOnly = false) { - if (\OC::$session->exists('timezone')) { + public static function formatDate( $timestamp, $dateOnly = false) { + if(\OC::$server->getSession()->exists('timezone')) { $systemTimeZone = intval(date('O')); $systemTimeZone = (round($systemTimeZone / 100, 0) * 60) + ($systemTimeZone % 100); - $clientTimeZone = \OC::$session->get('timezone') * 60; + $clientTimeZone = \OC::$server->getSession()->get('timezone') * 60; $offset = $clientTimeZone - $systemTimeZone; $timestamp = $timestamp + $offset * 60; } - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); return $l->l($dateOnly ? 'date' : 'datetime', $timestamp); } @@ -402,7 +402,7 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkServer() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); $CONFIG_DATADIRECTORY = OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data'); @@ -412,7 +412,7 @@ class OC_Util { } // Assume that if checkServer() succeeded before in this session, then all is fine. - if (\OC::$session->exists('checkServer_succeeded') && \OC::$session->get('checkServer_succeeded')) { + if (\OC::$server->getSession()->exists('checkServer_succeeded') && \OC::$server->getSession()->get('checkServer_succeeded')) { return $errors; } @@ -615,7 +615,7 @@ class OC_Util { $errors = array_merge($errors, self::checkDatabaseVersion()); // Cache the result of this function - \OC::$session->set('checkServer_succeeded', count($errors) == 0); + \OC::$server->getSession()->set('checkServer_succeeded', count($errors) == 0); return $errors; } @@ -626,7 +626,7 @@ class OC_Util { * @return array errors array */ public static function checkDatabaseVersion() { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); $dbType = \OC_Config::getValue('dbtype', 'sqlite'); if ($dbType === 'pgsql') { @@ -707,7 +707,7 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkDataDirectoryPermissions($dataDirectory) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); if (self::runningOnWindows()) { //TODO: permissions checks for windows hosts @@ -738,7 +738,7 @@ class OC_Util { * @return bool true if the data directory is valid, false otherwise */ public static function checkDataDirectoryValidity($dataDirectory) { - $l = OC_L10N::get('lib'); + $l = \OC::$server->getL10N('lib'); $errors = array(); if (!file_exists($dataDirectory . '/.ocdata')) { $errors[] = array( @@ -938,13 +938,13 @@ class OC_Util { */ public static function callRegister() { // Check if a token exists - if (!\OC::$session->exists('requesttoken')) { + if (!\OC::$server->getSession()->exists('requesttoken')) { // No valid token found, generate a new one. $requestToken = self::generateRandomBytes(20); - \OC::$session->set('requesttoken', $requestToken); + \OC::$server->getSession()->set('requesttoken', $requestToken); } else { // Valid token already exists, send it - $requestToken = \OC::$session->get('requesttoken'); + $requestToken = \OC::$server->getSession()->get('requesttoken'); } return ($requestToken); } diff --git a/lib/public/config.php b/lib/public/config.php index ea3e0c1372a52242f1e0a390cf26f99c6f33f842..65dde39cdce25d797c46f24bc0867f977b63d650 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -43,7 +43,7 @@ class Config { * Gets a value from config.php * @param string $key key * @param mixed $default = null default value - * @return string the value or $default + * @return mixed the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. diff --git a/lib/public/files/locknotacquiredexception.php b/lib/public/files/locknotacquiredexception.php index 9fb70e7cbe20e878257641b992452bd725954825..647b07bf878b8618b1e204af8bacd33d5693037d 100644 --- a/lib/public/files/locknotacquiredexception.php +++ b/lib/public/files/locknotacquiredexception.php @@ -36,7 +36,7 @@ class LockNotAcquiredException extends \Exception { public $lockType; public function __construct($path, $lockType, $code = 0, \Exception $previous = null) { - $message = \OC_L10N::get('core')->t('Could not obtain lock type %d on "%s".', array($lockType, $path)); + $message = \OC::$server->getL10N('core')->t('Could not obtain lock type %d on "%s".', array($lockType, $path)); parent::__construct($message, $code, $previous); } @@ -44,4 +44,4 @@ class LockNotAcquiredException extends \Exception { public function __toString() { return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; } -} \ No newline at end of file +} diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php index d4a8cdc7381271ec4bd7c23f535b2fe0b43a6326..4865f8bc85b7c73708db960240da98bb302615da 100644 --- a/lib/public/iconfig.php +++ b/lib/public/iconfig.php @@ -47,7 +47,7 @@ interface IConfig { * * @param string $key the key of the value, under which it was saved * @param string $default the default value to be returned if the value isn't set - * @return string the saved value + * @return mixed the value or $default */ public function getSystemValue($key, $default = ''); diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 9c39ac7ae73c1b6ad66aa14c0f9ca0b01f3363d9..64f5f350b1ecf0a40ef4a2280fe04e75eb1b4b3b 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -81,9 +81,10 @@ interface IServerContainer { /** * Returns a view to ownCloud's files folder * + * @param string $userId user ID * @return \OCP\Files\Folder */ - function getUserFolder(); + function getUserFolder($userId = null); /** * Returns an app-specific view in ownClouds data directory @@ -145,9 +146,10 @@ interface IServerContainer { /** * get an L10N instance * @param string $app appid + * @param string $lang * @return \OCP\IL10N */ - function getL10N($app); + function getL10N($app, $lang = null); /** * Returns the URL generator diff --git a/lib/public/share.php b/lib/public/share.php index bb9c6ec588655cef9b31c81ed228a073e2db3562..c8b64cc187c057c500c91ec9e18f2f8b58d5036e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -265,8 +265,8 @@ class Share extends \OC\Share\Constants { * * Unsharing from self is not allowed for items inside collections */ - public static function unshareFromSelf($itemType, $itemTarget) { - return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget); + public static function unshareFromSelf($itemType, $itemOrigin, $originIsSource = false) { + return \OC\Share\Share::unshareFromSelf($itemType, $itemOrigin, $originIsSource); } /** diff --git a/lib/public/util.php b/lib/public/util.php index 83a6155685b5b5c7ac26156c3552b4b4390f71ce..2f657facfe8a2ca0abc1ffe0b10b0b88e3669f33 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -132,7 +132,7 @@ class Util { * @return \OC_L10N */ public static function getL10N($application, $language = null) { - return \OC_L10N::get($application, $language); + return \OC::$server->getL10N($application, $language); } /** diff --git a/settings/admin/controller.php b/settings/admin/controller.php index 7ced57791e9cad5d0f47cfedd7d182c4872ba940..395bc7c6e494539434bc45ad0c9cbcce290bb3af 100644 --- a/settings/admin/controller.php +++ b/settings/admin/controller.php @@ -27,7 +27,7 @@ class Controller { \OC_Util::checkAdminUser(); \OCP\JSON::callCheck(); - $l = \OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); $smtp_settings = array( 'mail_domain' => null, @@ -80,7 +80,7 @@ class Controller { \OC_Util::checkAdminUser(); \OCP\JSON::callCheck(); - $l = \OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); $email = \OC_Preferences::getValue(\OC_User::getUser(), 'settings', 'email', ''); if (!empty($email)) { $defaults = new \OC_Defaults(); diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index b68083fca6bed85026cb862ceba11fb47afe505b..aad0690e01c55bad71bb3e597c87045e0eddf0fd 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -8,7 +8,7 @@ OC_JSON::checkAdminUser(); -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); if(OC_Config::getValue('appstoreenabled', true)==false) { OCP\JSON::success(array('type' => 'external', 'data' => array())); diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php index 54c8c05dd4b1953da1e12051cc9a8a67eb82f3d4..1e52182ccf6a3352b7cf2008f2408dc3b39146a8 100644 --- a/settings/ajax/changedisplayname.php +++ b/settings/ajax/changedisplayname.php @@ -4,7 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); -$l=OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $displayName = $_POST["displayName"]; diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index 854f2c37189a645a3694fe1390306b34c0c5e6d7..be376bea9dc18655bcc9c37a5a824e3257c3d48d 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -4,7 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkAdminUser(); $groupname = $_POST["groupname"]; -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); // Does the group exist? if( in_array( $groupname, OC_Group::getGroups())) { diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index 55685f778d16b8801ed06b9bf3fee8f5033d7541..527e5b8fcee4c88e37c624d4d71d0f8215067cfb 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -12,7 +12,7 @@ $params = array('uid' => \OCP\User::getUser(), $view = new OC\Files\View('/'); $util = new \OCA\Encryption\Util($view, \OCP\User::getUser()); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $result = $util->initEncryption($params); diff --git a/settings/ajax/deletekeys.php b/settings/ajax/deletekeys.php index 1f84452e1178cf63c8e91cd47c02fe76a0d69082..86a45820af9ae920ec86a6652c080204eafb50e0 100644 --- a/settings/ajax/deletekeys.php +++ b/settings/ajax/deletekeys.php @@ -3,7 +3,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $user = \OC_User::getUser(); $view = new \OC\Files\View('/' . $user . '/files_encryption'); diff --git a/settings/ajax/installapp.php b/settings/ajax/installapp.php index 47f40f2b0cd723324406db533c8dcfc6adc1ad19..80bc1819724b0290dd9a6cc33b493c951f91018e 100644 --- a/settings/ajax/installapp.php +++ b/settings/ajax/installapp.php @@ -14,6 +14,6 @@ $result = OC_App::installApp($appId); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); } diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php index 15b6cbc0122e5e928b84fdf7a66085d05d480ee2..395ba31f92b3abbc3af916244e396118efdb442a 100644 --- a/settings/ajax/lostpassword.php +++ b/settings/ajax/lostpassword.php @@ -3,7 +3,7 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l=OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); // Get data if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) { diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 8732c6518a8194bc6d6f792494b54bab14f71d1e..eda852387801b73b96c9f6525c607db6f26be99d 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -11,7 +11,7 @@ if(OC_User::getUser() === $username) { } if(!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -21,6 +21,6 @@ if( OC_User::deleteUser( $username )) { OC_JSON::success(array("data" => array( "username" => $username ))); } else{ - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); } diff --git a/settings/ajax/restorekeys.php b/settings/ajax/restorekeys.php index 68e19c90457146cab0d418f1770335b54b95d95d..5c263fadab433fa7d9446dd1e86397c89253861c 100644 --- a/settings/ajax/restorekeys.php +++ b/settings/ajax/restorekeys.php @@ -3,7 +3,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$l = \OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $user = \OC_User::getUser(); $view = new \OC\Files\View('/' . $user . '/files_encryption'); diff --git a/settings/ajax/setlanguage.php b/settings/ajax/setlanguage.php index 94773f3dc70beeb2712717f8196a5bed42324999..a3988db85bb18e9b0b44ea8df0219c2bcfe7bd2f 100644 --- a/settings/ajax/setlanguage.php +++ b/settings/ajax/setlanguage.php @@ -1,6 +1,6 @@ getL10N('settings'); OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index 2e6de2b759c32dd0aacb2c2377b58ba627769f96..f19506a0456770089d4f2a1c93a6ec17690aa761 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -13,7 +13,7 @@ $username = isset($_POST["username"])?$_POST["username"]:''; if(($username === '' && !OC_User::isAdminUser(OC_User::getUser())) || (!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username))) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } diff --git a/settings/ajax/togglegroups.php b/settings/ajax/togglegroups.php index 6963f9eb43c15912e21e53ecb2ab06417f1b835d..27cb2b446ecc6c43fea424676936a9914d3dc884 100644 --- a/settings/ajax/togglegroups.php +++ b/settings/ajax/togglegroups.php @@ -8,7 +8,7 @@ $username = $_POST["username"]; $group = $_POST["group"]; if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUser($username)) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Admins can\'t remove themself from the admin group')))); exit(); } @@ -16,7 +16,7 @@ if($username === OC_User::getUser() && $group === "admin" && OC_User::isAdminUs if(!OC_User::isAdminUser(OC_User::getUser()) && (!OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username) || !OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group))) { - $l = OC_L10N::get('core'); + $l = \OC::$server->getL10N('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); exit(); } @@ -25,7 +25,7 @@ if(!OC_Group::groupExists($group)) { OC_Group::createGroup($group); } -$l = OC_L10N::get('settings'); +$l = \OC::$server->getL10N('settings'); $error = $l->t("Unable to add user to group %s", $group); $action = "add"; diff --git a/settings/ajax/uninstallapp.php b/settings/ajax/uninstallapp.php index 5c6371dc16f82b93178e8db7e44b4dab3414fd95..cae7c33f292f7d7926ceda9c270862f2036610d6 100644 --- a/settings/ajax/uninstallapp.php +++ b/settings/ajax/uninstallapp.php @@ -14,6 +14,6 @@ $result = OC_App::removeApp($appId); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); } diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php index afaa9318fb238fe593467804afa455ce179caec0..6375a41024a221768d148057a661b556626b9626 100644 --- a/settings/ajax/updateapp.php +++ b/settings/ajax/updateapp.php @@ -40,6 +40,6 @@ $result = OC_Installer::updateAppByOCSId($appId, $isShipped); if($result !== false) { OC_JSON::success(array('data' => array('appid' => $appId))); } else { - $l = OC_L10N::get('settings'); + $l = \OC::$server->getL10N('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't update app.") ))); } diff --git a/settings/css/settings.css b/settings/css/settings.css index b9ce79bc3b8398e046e34b0f4471228a69f2071d..a62a971b831eb2de435c6ef98b8b417fe854309b 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -92,17 +92,14 @@ td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidde td.password, td.quota, td.displayName { width:12em; cursor:pointer; } td.password>span, td.quota>span, rd.displayName>span { margin-right: 1.2em; color: #C7C7C7; } span.usersLastLoginTooltip { white-space: nowrap; } +th#headerLastLogin, td.lastLogin { display : none; } +th#headerStorageLocation, td.storageLocation { display : none; } td.remove { width:1em; padding-right:1em; } tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; } tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } -div.quota { - margin: 10px; - display: block; -} -div.quota-select-wrapper { position: relative; } div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; } input#recoveryPassword {width:15em;} #controls select.quota { @@ -111,11 +108,6 @@ input#recoveryPassword {width:15em;} height: 37px; } select.quota-user { position:relative; left:0; top:0; width:10em; } -div.quota>span { - white-space: nowrap; - color: #888; - text-shadow: 0 1px 0 #fff; -} select.quota.active { background: #fff; } input.userFilter {width: 200px;} diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 60948bb99f31f14cea4f69e689aec824da72796b..86ed43d958ed2948b0acc38dad7b4f6da9ae3fdf 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -96,9 +96,8 @@ var UserList = { var lastLoginRel = t('settings', 'never'); var lastLoginAbs = lastLoginRel; if(lastLogin !== 0) { - lastLogin = new Date(lastLogin * 1000); - lastLoginRel = relative_modified_date(lastLogin.getTime() / 1000); - lastLoginAbs = formatDate(lastLogin.getTime()); + lastLoginRel = OC.Util.relativeModifiedDate(lastLogin); + lastLoginAbs = OC.Util.formatDate(lastLogin); } var $tdLastLogin = $tr.find('td.lastLogin'); $tdLastLogin.text(lastLoginRel); @@ -708,4 +707,27 @@ $(document).ready(function () { ); }); + // Option to display/hide the "Storage location" column + $('#CheckboxStorageLocation').click(function() { + if ($('#CheckboxStorageLocation').is(':checked')) { + $("#headerStorageLocation").show(); + $("#userlist td.storageLocation").show(); + } else { + $("#headerStorageLocation").hide(); + $("#userlist td.storageLocation").hide(); + } + }); + // Option to display/hide the "Last Login" column + $('#CheckboxLastLogin').click(function() { + if ($('#CheckboxLastLogin').is(':checked')) { + $("#headerLastLogin").show(); + $("#userlist td.lastLogin").show(); + } else { + $("#headerLastLogin").hide(); + $("#userlist td.lastLogin").hide(); + } + }); + + + }); diff --git a/settings/l10n/az.php b/settings/l10n/az.php index 4104aa8ccf91fae66fdf6bd84d9cc397a492a7c1..c45e8db01fa870589a29e229a526238b7d5b73e1 100644 --- a/settings/l10n/az.php +++ b/settings/l10n/az.php @@ -6,6 +6,8 @@ $TRANSLATIONS = array( "If you received this email, the settings seem to be correct." => "Əgər siz bu məktubu aldınızsa, demək quraşdırmalar düzgündür.", "A problem occurred while sending the e-mail. Please revisit your settings." => "Məktubun göndərilməsində səhv baş verdi. Xahiş edirik öz configlərinizə yenidən baxasınız.", "Email sent" => "Məktub göndərildi", +"You need to set your user email before being able to send test emails." => "Test məktubu göndərməzdən öncə, siz öz istifadəçi poçtunuzu təyiin etməlisiniz.", +"Send mode" => "Göndərmə rejimi", "Encryption" => "Şifrələnmə", "Authentication method" => "Qeydiyyat metodikası", "Unable to load list from App Store" => "Listi App Store-dan yükləmək mümkün deyil", @@ -13,10 +15,94 @@ $TRANSLATIONS = array( "Your full name has been changed." => "Sizin tam adınız dəyişdirildi.", "Unable to change full name" => "Tam adı dəyişmək olmur", "Group already exists" => "Qrup artıq mövcuddur", +"Unable to add group" => "Qrupu əlavə etmək olmur", "Files decrypted successfully" => "Fayllar uğurla deşifrə edildi", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Sizin faylları deşifrə etmək olmur, xahiş olunur owncloud.log faylını yoxlaya vəya inzibatçıya müraciət edəsiniz.", +"Couldn't decrypt your files, check your password and try again" => "Sizin faylları deşifrə etmək olmur, xahiş olunur şifrəni yoxlaya və yenidən təkrar edəsiniz.", +"Encryption keys deleted permanently" => "Şifrələmə açarları həmişəlik silindi", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Sizin şifrələnmə açarlarınızı həmişəlik silmək mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", +"Couldn't remove app." => "Proqram təminatını silmək mümkün olmadı.", +"Email saved" => "Məktub yadda saxlanıldı", +"Invalid email" => "Yalnış məktub", +"Unable to delete group" => "Qrupu silmək olmur", +"Unable to delete user" => "İstifadəçini silmək olmur", +"Backups restored successfully" => "Ehtiyyat nüsxələr uğurla geri qaytarıldı", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Sizin şifrələnmə açarlarınızı geri qaytarmaq mümkün olmadı, xahış olunur owncloud.log faylını yoxlaya və ya inzibatçıya müraciət edəsiniz.", +"Language changed" => "Dil dəyişdirildi", "Invalid request" => "Səhv müraciət", +"Admins can't remove themself from the admin group" => "İnzibatçılar özlərini inzibatçı qrupundan silə bilməz", +"Unable to add user to group %s" => "İstifadəçini %s qrupuna əlavə etmək mümkün olmadı", +"Unable to remove user from group %s" => "İstifadəçini %s qrupundan silmək mümkün olmadı", +"Couldn't update app." => "Proqram təminatını yeniləmək mümkün deyil.", +"Wrong password" => "Yalnış şifrə", +"No user supplied" => "Heç bir istifadəçiyə mənimsədilmir", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Xahış olunur inzibatçı geriyə qayıdış şifrəsini təqdim edəsiniz, əks halda bütün istfadəçi datası itəcək.", +"Wrong admin recovery password. Please check the password and try again." => "İnzibatçı geriyə qayıdış şifrəsi yalnışdır. Xahiş olunur şifrəni yoxlayıb yenidən təkrar edəsiniz.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "İnzibatçı mərkəzi şifrə dəyişilməsini dəstəkləmir ancaq, istifadəçi şifrələnmə açarı uğurla yeniləndi.", +"Unable to change password" => "Şifrəni dəyişmək olmur", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "\"{domain}\" adını inamlı domainlər siyahısına əlavə etməyinizdən əminsinizmi?", +"Add trusted domain" => "İnamlı domainlərə əlavə et", +"Sending..." => "Göndərilir...", +"User Documentation" => "İstifadəçi sənədləri", +"Admin Documentation" => "İnzibatçı sənədləri", +"Update to {appversion}" => "{appversion} -a yenilə", +"Uninstall App" => "Proqram təminatını sil", +"Disable" => "Dayandır", +"Enable" => "İşə sal", +"Please wait...." => "Xahiş olunur gözləyəsiniz.", +"Error while disabling app" => "Proqram təminatını dayandırdıqda səhv baş verdi", +"Error while enabling app" => "Proqram təminatını işə saldıqda səhv baş verdi", +"Updating...." => "Yenilənir...", +"Error while updating app" => "Proqram təminatı yeniləndikdə səhv baş verdi", "Error" => "Səhv", +"Update" => "Yenilənmə", +"Updated" => "Yeniləndi", +"Uninstalling ...." => "Silinir...", +"Error while uninstalling app" => "Proqram təminatını sildikdə səhv baş verdi", +"Uninstall" => "Sil", +"Select a profile picture" => "Profil üçün şəkli seç", +"Very weak password" => "Çox asan şifrə", +"Weak password" => "Asan şifrə", +"So-so password" => "Elə-belə şifrə", +"Good password" => "Yaxşı şifrə", +"Strong password" => "Çətin şifrə", +"Decrypting files... Please wait, this can take some time." => "Fayllar deşifrə edilir... Xahiş olunur gözləyəsiniz, bu biraz vaxt alacaq.", +"Delete encryption keys permanently." => "Şifrələnmə açarlarını həmişəlik sil.", +"Restore encryption keys." => "Şifrələnmə açarlarını geri qaytar", +"Unable to delete {objName}" => "{objName} silmək olmur", +"Error creating group" => "Qrup yaranmasında səhv baş verdi", +"A valid group name must be provided" => "Düzgün qrup adı təyin edilməlidir", +"deleted {groupName}" => "{groupName} silindi", +"undo" => "geriyə", +"Groups" => "Qruplar", +"Group Admin" => "Qrup İnzibatçısı", "Delete" => "Sil", +"never" => "heç vaxt", +"deleted {userName}" => "{userName} silindi", +"add group" => "qrupu əlavə et", +"A valid username must be provided" => "Düzgün istifadəçi adı daxil edilməlidir", +"Error creating user" => "İstifadəçi yaratdıqda səhv baş verdi", +"A valid password must be provided" => "Düzgün şifrə daxil edilməlidir", +"Warning: Home directory for user \"{user}\" already exists" => "Xəbərdarlıq: \"{user}\" istfadəçisi üçün ev qovluğu artıq mövcuddur.", +"__language_name__" => "__AZ_Azerbaijan__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Hər şey(ən pis hadisələr, səhvlər, xəbərdarlıqlar, məlmat, araşdırma səhvləri)", +"Info, warnings, errors and fatal issues" => "Məlmat, xəbərdarlıqlar, səhvlər və ən pis hadisələr", +"Warnings, errors and fatal issues" => "Xəbərdarlıqlar, səhvlər və ən pis hadisələr", +"Errors and fatal issues" => "Səhvlər və ən pis hadisələr", +"Fatal issues only" => "Yalnız ən pis hadisələr", +"None" => "Heç bir", +"Login" => "Giriş", +"Plain" => "Adi", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", +"Security Warning" => "Təhlükəsizlik xəbərdarlığı", +"Setup Warning" => "Quruluş xəbərdarlığı", +"Database Performance Info" => "Verilənlər bazasının davamiyyəti məlumatı", +"Module 'fileinfo' missing" => "'fileinfo' modulu çatışmır", +"Your PHP version is outdated" => "Sizin PHP versiyası köhnəlib", +"PHP charset is not set to UTF-8" => "PHP simvol tipi UTF-8 deyil", +"Internet connection not working" => "İnternet qoşulması işləmir", "More" => "Yenə", "Get the apps to sync your files" => "Fayllarınızın sinxronizasiyası üçün proqramları götürün", "Password" => "Şifrə", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 2371ccd6733feae03034a7dfa11215442b16f4e0..7c007675a8976c695eef8b93f0a0254aa684cd68 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,5 +1,6 @@ "সংরক্ষণ করা হলো", "Email sent" => "ই-মেইল পাঠানো হয়েছে", "Encryption" => "সংকেতায়ন", "Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", @@ -46,6 +47,7 @@ $TRANSLATIONS = array( "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"Get the apps to sync your files" => "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", "Show First Run Wizard again" => "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর", "You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Password" => "কূটশব্দ", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 4e9ec716adf55fd800fee7284593b9778b960fd2..540e37cad633977f4b27c0b1a14058af86846388 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -19,9 +19,9 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", -"Encryption keys deleted permanently" => "Šifrovací klíče trvale smazány", +"Encryption keys deleted permanently" => "Šifrovací klíče trvale smazány", "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nebylo možno trvale smazat vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého administrátora", -"Couldn't remove app." => "Nepodařilo se odstranit aplikaci.", +"Couldn't remove app." => "Nepodařilo se odebrat aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatelů byl úspěšně změněn.", "Unable to change password" => "Změna hesla se nezdařila", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Jste si jisti, že chcete přidat \"{domain}\" mezi důvěryhodné domény?", +"Add trusted domain" => "Přidat důvěryhodnou doménu", "Sending..." => "Odesílání...", "User Documentation" => "Uživatelská dokumentace", "Admin Documentation" => "Dokumentace pro administrátory", @@ -65,8 +67,8 @@ $TRANSLATIONS = array( "Good password" => "Dobré heslo", "Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu.", -"Delete encryption keys permanently." => "Trvale smazat šifrovací klíče", -"Restore encryption keys." => "Obnovit šifrovací klíče", +"Delete encryption keys permanently." => "Trvale smazat šifrovací klíče.", +"Restore encryption keys." => "Obnovit šifrovací klíče.", "Unable to delete {objName}" => "Nelze smazat {objName}", "Error creating group" => "Chyba při vytváření skupiny", "A valid group name must be provided" => "Musíte zadat platný název skupiny", @@ -100,16 +102,16 @@ $TRANSLATIONS = array( "Setup Warning" => "Upozornění nastavení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", -"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP je patrně nastaveno tak, aby odstraňovalo vnitřní části dokumentů. Toto bude mít za následek množsví nedostupných hlavních aplikací.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP je patrně nastaveno tak, aby odstraňovalo bloky komentářů. Toto bude mít za následek nedostupnost množství hlavních aplikací.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.", "Database Performance Info" => "Informace o výkonu databáze", -"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít příkaz: 'occ db:convert-type'", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít nástroj pro příkazový řádek: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Your PHP version is outdated" => "Vaše verze PHP je zastaralá", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Vámi používaná verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze obsahují chyby. Je možné, že tato instalace nebude fungovat správně.", "PHP charset is not set to UTF-8" => "Znaková sada PHP není nastavena na UTF-8", -"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "Znaková sada PHP není nastavena na UTF-8. Toto může způsobit závažné problémy ve jménech souborů se znaky neobsaženými v ASCII. Doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'.", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "Znaková sada PHP není nastavena na UTF-8. To může způsobit závažné problémy se jmény souborů se znaky neobsaženými v ASCII. Důrazně doporučujeme změnit hodnotu 'default_charset' v php.ini na 'UTF-8'.", "Locale not working" => "Lokalizace nefunguje", "System locale can not be set to a one which supports UTF-8." => "Není možné nastavit znakovou sadu, která podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", @@ -117,14 +119,14 @@ $TRANSLATIONS = array( "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "URL generation in notification emails" => "Generování adresy URL v oznamovacích e-mailech", -"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění chyb v rozpoznání specifikujte prosím správnou cestu ve svém config.php souboru pod hodnotu \"overwritewebroot\" (Doporučujeme: \"%s\")", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Instalace mimo kořenový adresář domény a používání systémového příkazu cron může způsobit problém s generováním správné URL. Pro zabránění těmto chybám nastavte prosím správnou cestu ve svém config.php souboru v hodnotě \"overwritewebroot\" (Doporučujeme: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "Poslední cron byl spuštěn v %s", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To je více než před hodinou. Vypadá to, že není něco v pořádku.", "Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", -"Use system's cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro spuštění souboru cron.php každých 15 minut.", +"Use system's cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", "Sharing" => "Sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow users to share via link" => "Povolit uživatelům sdílení pomocí odkazů", @@ -202,9 +204,11 @@ $TRANSLATIONS = array( "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory", "Log-in password" => "Přihlašovací heslo", "Decrypt all Files" => "Odšifrovat všechny soubory", -"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány.", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazí, můžete je obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány.", "Restore Encryption Keys" => "Obnovit šifrovací klíče", "Delete Encryption Keys" => "Smazat šifrovací klíče", +"Show storage location" => "Zobrazit umístění úložiště", +"Show last log in" => "Zobrazit poslední přihlášení", "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 1f7309bca076cc14f0c8af5f566b547bdf4ad661..3edaf9f5bbd4c394683eb5bb37eeb527d0532273 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -207,6 +207,7 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Τα κλειδιά κρυπτογράφησής σας μεταφέρονται σε θέση αντιγράφου ασφαλείας. Αν κάτι πάει στραβά, μπορείτε να τα επαναφέρετε. Διαγράψτε τα οριστικά μόνο αν είστε βέβαιοι ότι όλα τα αρχεία αποκρυπτογραφήθηκαν σωστά.", "Restore Encryption Keys" => "Επαναφορά κλειδιών κρυπτογράφησης", "Delete Encryption Keys" => "Διαγραφή κλειδιών κρυπτογράφησης", +"Show last log in" => "Εμφάνιση τελευταίας εισόδου", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 96c2ce6128bcc4cc1807eed938b2a74879f0d73e..7ebfb6286ad56ad1d65bda534b6cc6af68ca0c35 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Incorrect admin recovery password. Please check the password and try again.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end doesn't support password change, but the user's encryption key was successfully updated.", "Unable to change password" => "Unable to change password", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Are you really sure you want add \"{domain}\" as a trusted domain?", +"Add trusted domain" => "Add trusted domain", "Sending..." => "Sending...", "User Documentation" => "User Documentation", "Admin Documentation" => "Admin Documentation", @@ -205,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly.", "Restore Encryption Keys" => "Restore Encryption Keys", "Delete Encryption Keys" => "Delete Encryption Keys", +"Show storage location" => "Show storage location", +"Show last log in" => "Show last log in", "Login Name" => "Login Name", "Create" => "Create", "Admin Recovery Password" => "Admin Recovery Password", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 772ae12bf69345c3b8a31b10ef72a30926394eee..d581c9345444f1c09aaeab22c2ef4879c129f38a 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -119,6 +119,7 @@ $TRANSLATIONS = array( "Internet connection not working" => "La conexión a Internet no está funcionando", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "URL generation in notification emails" => "Generación de URL en mensajes de notificación", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Si su instalación no está ubicada en la raíz del dominio y usa el cron del sistema, puede haber problemas al generarse los URL. Para evitarlos, configure la opción \"overwritewebroot\" en su archivo config.php para que use la ruta de la raíz del sitio web de su instalación (sugerencia: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "Cron fue ejecutado por última vez a las %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal.", @@ -206,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Sus claves de cifrado se archivarán en una localización segura. Así en caso de que algo fuese mal podrá recuperan sus claves. Borre sus claves de cifrado permanentemente solamente si esta seguro de que sus archivos han sido descifrados correctamente.", "Restore Encryption Keys" => "Restaurar claves de cifrado", "Delete Encryption Keys" => "Eliminar claves de cifrado", +"Show storage location" => "Mostrar la ubicación del almacenamiento", +"Show last log in" => "Mostrar el último inicio de sesión", "Login Name" => "Nombre de usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 2c38d9c201bf3f9102cbb801eb35ea1fbef6e273..6bc03841509a71ee40f974a6a2049959b7ff227f 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Vale administraatori taasteparool. Palun kontrolli parooli ning proovi uuesti.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Tagarakend ei toeta parooli vahetust, kuid kasutaja krüptimisvõti uuendati edukalt.", "Unable to change password" => "Ei suuda parooli muuta", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Oled sa kindel, et soovid lisada domeeni \"{domain}\" usaldusväärseks domeeniks?", +"Add trusted domain" => "Lis ausaldusväärne domeen", "Sending..." => "Saadan...", "User Documentation" => "Kasutaja dokumentatsioon", "Admin Documentation" => "Admin dokumentatsioon", @@ -108,12 +110,14 @@ $TRANSLATIONS = array( "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", "Your PHP version is outdated" => "PHP versioon on aegunud", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt.", +"PHP charset is not set to UTF-8" => "PHP märgistik pole UTF-8", "Locale not working" => "Lokalisatsioon ei toimi", "System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", "This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s.", "Internet connection not working" => "Internetiühendus ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", +"URL generation in notification emails" => "URL-ide loomine teavituskirjades", "Cron" => "Cron", "Last cron was executed at %s." => "Cron käivitati viimati %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron käivitati viimati %s. See on rohkem kui tund tagasi, midagi on valesti.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bd6a32d2702eda3f0a371ad462dc9dd92148c5b9..4c35099fb8abf9f4b98b6bd774cc60cd0ef4757e 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Väärä ylläpitäjän salasana. Tarkista salasana ja yritä uudelleen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Taustaosa ei tue salasanan vaihtamista, mutta käyttäjän salausavain päivitettiin onnistuneesti.", "Unable to change password" => "Salasanan vaihto ei onnistunut", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Haluatko varmasti liittää kohteen \"{domain}\" luotetuksi toimialueeksi?", +"Add trusted domain" => "Lisää luotettu toimialue", "Sending..." => "Lähetetään...", "User Documentation" => "Käyttäjäohjeistus", "Admin Documentation" => "Ylläpitäjän ohjeistus", @@ -112,6 +114,7 @@ $TRANSLATIONS = array( "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Tällä palvelimella ei ole toimivaa internetyhteyttä. Sen seurauksena jotkin ominaisuudet, kuten erillisten tallennustilojen liittäminen, ilmoitukset päivityksistä tai kolmansien osapuolten sovellusten asentaminen eivät toimi. Tiedostojen käyttäminen etäältä ja ilmoitusten lähettäminen sähköpostitse eivät myöskään välttämättä toimi. Jos haluat käyttää kaikkia palvelimen ominaisuuksia, kytke palvelin internetiin.", +"URL generation in notification emails" => "Verkko-osoitteiden luominen sähköposti-ilmoituksissa", "Cron" => "Cron", "Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", @@ -196,6 +199,8 @@ $TRANSLATIONS = array( "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Restore Encryption Keys" => "Palauta salausavaimet", "Delete Encryption Keys" => "Poista salausavaimet", +"Show storage location" => "Näytä tallennustilan sijainti", +"Show last log in" => "Näytä viimeisin sisäänkirjautuminen", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", "Admin Recovery Password" => "Ylläpitäjän palautussalasana", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 56200e120e878ff830035d3dd82297ca0780c7fd..a3364a5d33d5c0c35c28359251676300e6192869 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,9 +1,12 @@ "Érvénytelen adatot adott meg erre: %s", "Saved" => "Elmentve", -"test email settings" => "Teszt email beállítások", -"If you received this email, the settings seem to be correct." => "Amennyiben megérkezett ez az email akkor a beállítások megfelelők", +"test email settings" => "e-mail beállítások ellenőrzése", +"If you received this email, the settings seem to be correct." => "Amennyiben megérkezett ez az e-mail akkor a beállítások megfelelők.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Hiba történt az e-mail küldésekor. Kérjük ellenőrizze a beállításokat!", "Email sent" => "Az e-mailt elküldtük", +"You need to set your user email before being able to send test emails." => "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.", "Send mode" => "Küldési mód", "Encryption" => "Titkosítás", "Authentication method" => "A felhasználóazonosítás módszere", @@ -13,11 +16,18 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nem sikerült megváltoztatni a teljes nevét", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", +"Files decrypted successfully" => "A fájlok titkosítását sikeresen megszüntettük.", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Fájljainak titkosítását nem sikerült megszüntetni, kérjük forduljon a rendszergazdához!", +"Couldn't decrypt your files, check your password and try again" => "Fájljainak titkosítását nem sikerült megszüntetni, ellenőrizze a jelszavát, és próbálja újra!", +"Encryption keys deleted permanently" => "A titkosítási kulcsait véglegesen töröltük.", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "A titkosítási kulcsait nem sikerült véglegesen törölni, kérjük ellenőrizze az owncloud.log naplófájlt, vagy forduljon a rendszergazdához!", "Couldn't remove app." => "Az alkalmazást nem sikerült eltávolítani.", "Email saved" => "Elmentettük az e-mail címet", "Invalid email" => "Hibás e-mail", "Unable to delete group" => "A csoport nem törölhető", "Unable to delete user" => "A felhasználó nem törölhető", +"Backups restored successfully" => "A kulcsokat sikereresen visszaállítottuk a mentésekből.", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "A titkosítási kulcsok visszaállítása nem sikerült. Kérjük ellenőrizze az owncloud.log naplófájlt vagy forduljon a rendszergazdához!", "Language changed" => "A nyelv megváltozott", "Invalid request" => "Érvénytelen kérés", "Admins can't remove themself from the admin group" => "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", @@ -28,41 +38,52 @@ $TRANSLATIONS = array( "No user supplied" => "Nincs megadva felhasználó", "Please provide an admin recovery password, otherwise all user data will be lost" => "Adja meg az admin helyreállítási jelszót, máskülönben az összes felhasználói adat elveszik!", "Wrong admin recovery password. Please check the password and try again." => "Hibás admin helyreállítási jelszó. Ellenőrizze a jelszót és próbálja újra!", -"Back-end doesn't support password change, but the users encryption key was successfully updated." => "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "A háttér-alrendszer nem támogatja a jelszómódosítást, de felhasználó titkosítási kulcsát sikeresen frissítettük.", "Unable to change password" => "Nem sikerült megváltoztatni a jelszót", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Biztos abban, hogy hozzá akarja adni \"{domain}\"-t a megbízható tartományokhoz?", +"Add trusted domain" => "Megbízható tartomány hozzáadása", "Sending..." => "Küldés...", "User Documentation" => "Felhasználói leírás", -"Admin Documentation" => "Adminisztrátori Dokumentáció", +"Admin Documentation" => "Adminisztrátori leírás", "Update to {appversion}" => "Frissítés erre a verzióra: {appversion}", +"Uninstall App" => "Az alkalmazás eltávolítása", "Disable" => "Letiltás", -"Enable" => "engedélyezve", +"Enable" => "Engedélyezés", "Please wait...." => "Kérem várjon...", -"Error while disabling app" => "Hiba az alkalmazás kikapcsolása közben", -"Error while enabling app" => "Hiba az alalmazás engedélyezése közben", +"Error while disabling app" => "Hiba az alkalmazás letiltása közben", +"Error while enabling app" => "Hiba az alkalmazás engedélyezése közben", "Updating...." => "Frissítés folyamatban...", -"Error while updating app" => "Hiba történt a programfrissítés közben", +"Error while updating app" => "Hiba történt az alkalmazás frissítése közben", "Error" => "Hiba", "Update" => "Frissítés", "Updated" => "Frissítve", +"Uninstalling ...." => "Eltávolítás ...", +"Error while uninstalling app" => "Hiba történt az alkalmazás eltávolítása közben", +"Uninstall" => "Eltávolítás", "Select a profile picture" => "Válasszon profilképet!", "Very weak password" => "Nagyon gyenge jelszó", "Weak password" => "Gyenge jelszó", "So-so password" => "Nem túl jó jelszó", "Good password" => "Jó jelszó", "Strong password" => "Erős jelszó", -"Decrypting files... Please wait, this can take some time." => "A fájlok titkosítástól történő mentesítése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ...", +"Decrypting files... Please wait, this can take some time." => "A fájlok titkosításának megszüntetése folyamatban. van... Kérem várjon, ez hosszabb ideig is eltarthat ...", "Delete encryption keys permanently." => "A tikosítási kulcsok végleges törlése.", "Restore encryption keys." => "A titkosítási kulcsok visszaállítása.", +"Unable to delete {objName}" => "Ezt nem sikerült törölni: {objName}", +"Error creating group" => "Hiba történt a csoport létrehozása közben", +"A valid group name must be provided" => "Érvényes csoportnevet kell megadni", +"deleted {groupName}" => "törölve: {groupName}", "undo" => "visszavonás", "Groups" => "Csoportok", "Group Admin" => "Csoportadminisztrátor", "Delete" => "Törlés", "never" => "soha", +"deleted {userName}" => "törölve: {userName}", "add group" => "csoport hozzáadása", "A valid username must be provided" => "Érvényes felhasználónevet kell megadnia", "Error creating user" => "A felhasználó nem hozható létre", "A valid password must be provided" => "Érvényes jelszót kell megadnia", -"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett", +"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezik", "__language_name__" => "__language_name__", "Everything (fatal issues, errors, warnings, info, debug)" => "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)", "Info, warnings, errors and fatal issues" => "Információk, figyelmeztetések, hibák és végzetes hibák", @@ -76,21 +97,29 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Biztonsági figyelmeztetés", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "A %s szolgáltatás elérése jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálót úgy állítsa be, hogy az elérés HTTPS-en keresztül történjék.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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 erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Úgy tűnik, hogy a PHP úgy van beállítva, hogy eltávolítja programok belsejében elhelyezett szövegblokkokat. Emiatt a rendszer több alapvető fontosságú eleme működésképtelen lesz.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Ezt valószínűleg egy gyorsítótár ill. kódgyorsító, mint pl, a Zend, OPcache vagy eAccelererator okozza.", +"Database Performance Info" => "Információ az adatbázis teljesítményéről", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "A kiválasztott adatbázis az SQLite. Nagyobb telepítések esetén ezt érdemes megváltoztatni. Másik adatbázisra való áttéréshez használja a következő parancssori eszközt: 'occ db:convert-type'", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", "Your PHP version is outdated" => "A PHP verzió túl régi", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően.", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehetséges, hogy ez a telepítés majd nem működik megfelelően.", +"PHP charset is not set to UTF-8" => "A PHP-karakterkészlet nem UTF-8-ra van állítva", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "A PHP-karakterkészlet nem UTF-8-ra van állítva. Ez komoly problémákat okozhat, ha valaki olyan fájlnevet használ, amiben nem csupán ASCII karakterek fordulnak elő. Feltétlenül javasoljuk, hogy a php.ini-ben a 'default_charset' paramétert állítsa 'UTF-8'-ra!", "Locale not working" => "A nyelvi lokalizáció nem működik", -"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.", -"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.", -"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s", +"System locale can not be set to a one which supports UTF-8." => "A rendszer lokalizációs állományai között nem sikerült olyat beállítani, ami támogatja az UTF-8-at.", +"This means that there might be problems with certain characters in file names." => "Ez azt jelenti, hogy probléma lehet bizonyos karakterekkel a fájlnevekben.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Feltétlenül javasoljuk, hogy telepítse a szükséges csomagokat ahhoz, hogy a rendszere támogassa a következő lokalizációk valamelyikét: %s", "Internet connection not working" => "Az internet kapcsolat nem működik", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nem működik az internetkapcsolata. Ez azt jelenti, hogy bizonyos funkciók nem fognak működni, mint pl. külső tárolók becsatolása, automatikus frissítési értesítések vagy más fejlesztők /3rd party/ által írt alkalmazások telepítése. Az állományok távolról történő elérése valamint e-mail értesítések küldése szintén lehet, hogy nem fog működni. Javasoljuk, hogy engedélyezze a kiszolgáló internetelérését, ha az összes funkciót szeretné használni.", +"URL generation in notification emails" => "URL-képzés az értesítő e-mailekben", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Ha a telepítése nem a webkiszolgáló gyökerében van, és a rendszer cron szolgáltatását használja, akkor problémák lehetnek az URL-ek képzésével. Ezek elkerülése érdekében állítsa be a config.php-ban az \"overwritewebroot\" paramétert a telepítés által használt webútvonalra. (Javasolt beállítás: \"%s\")", "Cron" => "Ütemezett feladatok", "Last cron was executed at %s." => "Az utolsó cron feladat ekkor futott le: %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Az utolsó cron feladat ekkor futott le: %s. Ez több, mint 1 órája történt, valami nincs rendben.", @@ -149,6 +178,7 @@ $TRANSLATIONS = array( "Bugtracker" => "Hibabejelentések", "Commercial Support" => "Megvásárolható támogatás", "Get the apps to sync your files" => "Töltse le az állományok szinkronizációjához szükséges programokat!", +"If you want to support the project\n\t\tjoin development\n\t\tor\n\t\tspread the word!" => "Ha támogatni kívánja a projektet\n csatlakozzon a fejlesztőkhöz\n vagy\n terjessze a program hírét!", "Show First Run Wizard again" => "Nézzük meg újra az első bejelentkezéskori segítséget!", "You have used %s of the available %s" => "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s", "Password" => "Jelszó", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 4298dbc3ae4cc7b39c8802eb7394eb775763c0b4..61080e179058f5a4ddd31fdc436b463104e2cdad 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Le tue chiavi di cifratura sono state spostate in una posizione sicura. Se qualcosa non dovesse funzionare, potrai ripristinare le chiavi. Eliminale definitivamente solo se sei sicuro che tutti i file siano stati decifrati.", "Restore Encryption Keys" => "Ripristina chiavi di cifratura", "Delete Encryption Keys" => "Elimina chiavi di cifratura", +"Show storage location" => "Mostra posizione di archiviazione", +"Show last log in" => "Mostra ultimo accesso", "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index f5cb2f602794b2a45680da7a24388571e69f5600..40fbc704f6d6963f04990c4b60f5b01f07341ccc 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Uw cryptosleutels zijn verplaatst naar een backup locatie. Als iets iets verkeerd ging, kunt u de sleutels herstellen. Verwijder ze alleen permanent als u zeker weet dat de bestanden goed zijn versleuteld.", "Restore Encryption Keys" => "Herstel cryptosleutels", "Delete Encryption Keys" => "Verwijder cryptosleutels", +"Show storage location" => "Toon opslaglocatie", +"Show last log in" => "Toon laatste inlog", "Login Name" => "Inlognaam", "Create" => "Aanmaken", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 025472aff99c7082794d1d785d2f7d27693bc9ec..bd6f82555123bedba630167176e2956ac9e43f19 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -35,6 +35,8 @@ $TRANSLATIONS = array( "Update" => "Oppdater", "Updated" => "Oppdatert", "Select a profile picture" => "Vel eit profilbilete", +"Very weak password" => "Veldig svakt passord", +"Weak password" => "Svakt passord", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund.", "undo" => "angra", "Groups" => "Grupper", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 9f0d5228633902cae22d0a2eebf9eaaf135f2eca..681578caccd6622c7abb4eb724663bf64ba1dd16 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -40,6 +40,8 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.", "Unable to change password" => "Não foi possível alterar a sua password", +"Are you really sure you want add \"{domain}\" as trusted domain?" => "Você tem certeza que quer adicionar \"{domain}\" como domínio confiável?", +"Add trusted domain" => "Adicionar domínio confiável ", "Sending..." => "A enviar...", "User Documentation" => "Documentação de Utilizador", "Admin Documentation" => "Documentação de administrador.", @@ -108,12 +110,16 @@ $TRANSLATIONS = array( "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Your PHP version is outdated" => "A sua versão do PHP está ultrapassada", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente.", +"PHP charset is not set to UTF-8" => "PHP charset não está definido para UTF-8", +"PHP charset is not set to UTF-8. This can cause major issues with non-ASCII characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'." => "PHP charset não está definido como UTF-8. Isso pode causar grandes problemas com caracteres não-ASCII em nomes de arquivo. Recomendamos para alterar o valor de php.ini 'default_charset' para 'UTF-8'.", "Locale not working" => "Internacionalização não está a funcionar", "System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.", "This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", +"URL generation in notification emails" => "Geração URL em e-mails de notificação", +"If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwritewebroot\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" => "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwritewebroot\" no ficheiro config.php para o caminho webroot da sua instalação (sugestão: \"%s\")", "Cron" => "Cron", "Last cron was executed at %s." => "O ultimo cron foi executado em %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "O ultima cron foi executado em %s a mais duma hora. Algo não está certo.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 1742deabc27e1381ff627afac74373bd4461e404..87713b765504acf686023a1ac884e2d41bbb6e4d 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -116,6 +116,7 @@ $TRANSLATIONS = array( "Enforce password protection" => "Vsili zaščito z geslom", "Allow public uploads" => "Dovoli javno pošiljanje datotek v oblak", "Set default expiration date" => "Nastavitev privzetega datuma poteka", +"days" => "dni", "Allow resharing" => "Dovoli nadaljnjo souporabo", "Allow users to send mail notification for shared files" => "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Security" => "Varnost", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 720f7c370a0c72c546795f0f8b43b5532b2fbe93..c45fcef20303f4952a79cb3d410839bcfd9d96e3 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -207,6 +207,8 @@ $TRANSLATIONS = array( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Şifreleme anahtarlarınız yedek bir konuma taşındı. Eğer bir şeyler yanlış gittiyse, anahtarlarınızı geri yükleyebilirsiniz. Bu anahtarları, sadece tüm dosyalarınızın şifrelemelerinin düzgün bir şekilde kaldırıldığından eminseniz kalıcı olarak silin.", "Restore Encryption Keys" => "Şifreleme Anahtarlarını Geri Yükle", "Delete Encryption Keys" => "Şifreleme Anahtarlarını Sil", +"Show storage location" => "Depolama konumunu göster", +"Show last log in" => "Son oturum açılma zamanını göster", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici Kurtarma Parolası", diff --git a/settings/personal.php b/settings/personal.php index a72b293413a363606fcbf071469040da488758ea..b290d6a959e373a21fb082e7fa73ad7d7bdf9c7a 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -46,7 +46,7 @@ $languageNames=include 'languageCodes.php'; $languages=array(); $commonlanguages = array(); foreach($languageCodes as $lang) { - $l=OC_L10N::get('settings', $lang); + $l = \OC::$server->getL10N('settings', $lang); if(substr($l->t('__language_name__'), 0, 1) !== '_') {//first check if the language name is in the translation file $ln=array('code'=>$lang, 'name'=> (string)$l->t('__language_name__')); }elseif(isset($languageNames[$lang])) { diff --git a/settings/templates/personal.php b/settings/templates/personal.php index ecdd6dad24a893742cf489795d76fa6a83d91fa3..c1fb20dce05187b13864c2938bff95925ab67a55 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -34,7 +34,8 @@
    -
    +
    80): ?> class="quota-warning" >

    t('You have used %s of the available %s', array($_['usage'], $_['total_space'])));?> @@ -86,7 +87,7 @@ if($_['passwordChangeSupported']) { ?>

    t('Email'));?>

    -
    diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index c5805d53476cb0171503737cd814c10873c95d96..59284eaabd3c3201818d9663baacdc3be7b2bff9 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -22,7 +22,23 @@ $userlistParams['subadmingroups'] = array_flip($items);
    inc('users/part.grouplist')); ?>
    - inc('users/part.setquota')); ?> +
    + +
    +
    + inc('users/part.setquota')); ?> + +
    +

    +

    +
    +
    diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php index 3dfd27ee52d2ef082ca4de97111c58d208a3bb7a..edec7587eb56cdd4639d161beb0468e094e7bc58 100644 --- a/settings/templates/users/part.createuser.php +++ b/settings/templates/users/part.createuser.php @@ -31,4 +31,4 @@
    -
    \ No newline at end of file +
    diff --git a/settings/templates/users/part.setquota.php b/settings/templates/users/part.setquota.php index afbbee82063ae4c4eec17f0298fd359b128622d1..b58df49998a8b8327d445ee3bac18369651b07d3 100644 --- a/settings/templates/users/part.setquota.php +++ b/settings/templates/users/part.setquota.php @@ -1,39 +1,34 @@ -
    - -
    -
    -
    - - t('Default Quota'));?> - - " data-tipsy-gravity="s"> + + + + - - - - - - -
    + + + + + + +
    diff --git a/tests/lib/appframework/db/EntityTest.php b/tests/lib/appframework/db/EntityTest.php index 9de44b9b3ba83c334fdd015124e18e0737115c4f..d98cb549422dcf1b1b617c619609a036e1ef3907 100644 --- a/tests/lib/appframework/db/EntityTest.php +++ b/tests/lib/appframework/db/EntityTest.php @@ -37,10 +37,10 @@ namespace OCP\AppFramework\Db; * @method void setPreName(string $preName) */ class TestEntity extends Entity { - public $name; - public $email; - public $testId; - public $preName; + protected $name; + protected $email; + protected $testId; + protected $preName; public function __construct($name=null){ $this->addType('testId', 'integer'); @@ -220,4 +220,4 @@ class EntityTest extends \PHPUnit_Framework_TestCase { } -} \ No newline at end of file +} diff --git a/tests/lib/appframework/db/mappertest.php b/tests/lib/appframework/db/mappertest.php index 42aa1ade8106d2e592a6bcaa3d23426960735e8e..fd1acd0367ebc9426fb8fcd7d27678b3811c187a 100644 --- a/tests/lib/appframework/db/mappertest.php +++ b/tests/lib/appframework/db/mappertest.php @@ -36,8 +36,8 @@ use Test\AppFramework\Db\MapperTestUtility; * @method void setPreName(string $preName) */ class Example extends Entity { - public $preName; - public $email; + protected $preName; + protected $email; }; diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php index 530750fabeae7f92251bb71a756721ca3ed36448..534fc21b07aa2e28cbf9c09a33a24098252478f5 100644 --- a/tests/lib/ocs/privatedata.php +++ b/tests/lib/ocs/privatedata.php @@ -26,7 +26,7 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase private $appKey; public function setUp() { - \OC::$session->set('user_id', 'user1'); + \OC::$server->getSession()->set('user_id', 'user1'); $this->appKey = uniqid('app'); } diff --git a/tests/lib/request.php b/tests/lib/request.php index bff84e1b03f73200af6b0d24bed882ae2dfca715..b89bf92ece7246c1eee51683c4205d6a712468d0 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -9,21 +9,53 @@ class Test_Request extends PHPUnit_Framework_TestCase { public function setUp() { - OC_Config::setValue('overwritewebroot', '/domain.tld/ownCloud'); + OC::$server->getConfig()->setSystemValue('overwritewebroot', '/domain.tld/ownCloud'); + + OC::$server->getConfig()->setSystemValue('trusted_proxies', array()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array()); } public function tearDown() { - OC_Config::setValue('overwritewebroot', ''); + OC::$server->getConfig()->setSystemValue('overwritewebroot', ''); + OC::$server->getConfig()->setSystemValue('trusted_proxies', array()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array()); } public function testScriptNameOverWrite() { $_SERVER['REMOTE_ADDR'] = '10.0.0.1'; - $_SERVER["SCRIPT_FILENAME"] = __FILE__; + $_SERVER['SCRIPT_FILENAME'] = __FILE__; $scriptName = OC_Request::scriptName(); $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); } + public function testGetRemoteAddress() { + $_SERVER['REMOTE_ADDR'] = '10.0.0.2'; + $_SERVER['HTTP_X_FORWARDED'] = '10.4.0.5, 10.4.0.4'; + $_SERVER['HTTP_X_FORWARDED_FOR'] = '192.168.0.233'; + + // Without having specified a trusted remote address + $this->assertEquals('10.0.0.2', OC_Request::getRemoteAddress()); + + // With specifying a trusted remote address but no trusted header + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.0.0.2')); + $this->assertEquals('10.0.0.2', OC_Request::getRemoteAddress()); + + // With specifying a trusted remote address and trusted headers + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.0.0.2')); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_X_FORWARDED')); + $this->assertEquals('10.4.0.5', OC_Request::getRemoteAddress()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED')); + $this->assertEquals('192.168.0.233', OC_Request::getRemoteAddress()); + + // With specifying multiple trusted remote addresses and trusted headers + OC::$server->getConfig()->setSystemValue('trusted_proxies', array('10.3.4.2', '10.0.0.2', '127.0.3.3')); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_X_FORWARDED')); + $this->assertEquals('10.4.0.5', OC_Request::getRemoteAddress()); + OC::$server->getConfig()->setSystemValue('forwarded_for_headers', array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED')); + $this->assertEquals('192.168.0.233', OC_Request::getRemoteAddress()); + } + /** * @dataProvider rawPathInfoProvider * @param $expected diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index bb827eece73a68a72678803eedd565c15b7e8a29..0a8d7856915fe662f701262d25dc4d18d85a491d 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -314,6 +314,25 @@ class Test_Share extends PHPUnit_Framework_TestCase { $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); + // Unshare from self + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'test.txt')); + $this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + + // Unshare from self via source + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'share.txt', true)); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + + OC_User::setUserId($this->user1); + $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ)); + OC_User::setUserId($this->user3); + $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\PERMISSION_READ)); + + OC_User::setUserId($this->user2); + $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET); + $this->assertEquals(2, count($to_test)); + $this->assertTrue(in_array('test.txt', $to_test)); + $this->assertTrue(in_array('test1.txt', $to_test)); + // Remove user OC_User::setUserId($this->user1); OC_User::deleteUser($this->user1); @@ -568,6 +587,11 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user2); $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + // Unshare from self via source + OC_User::setUserId($this->user1); + $this->assertTrue(OCP\Share::unshareFromSelf('test', 'share.txt', true)); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + // Remove group OC_Group::deleteGroup($this->group1); OC_User::setUserId($this->user4); @@ -716,7 +740,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { * @param $item */ public function testCheckPasswordProtectedShare($expected, $item) { - \OC::$session->set('public_link_authenticated', 100); + \OC::$server->getSession()->set('public_link_authenticated', 100); $result = \OCP\Share::checkPasswordProtectedShare($item); $this->assertEquals($expected, $result); } @@ -743,8 +767,8 @@ class Test_Share extends PHPUnit_Framework_TestCase { return true; } - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + if ( \OC::$server->getSession()->exists('public_link_authenticated') + && \OC::$server->getSession()->get('public_link_authenticated') === $linkItem['id'] ) { return true; } * */ diff --git a/tests/startsessionlistener.php b/tests/startsessionlistener.php index ba049559c6e5cb74748c67afa3fc2dfb421758a4..1f3573555ca5cce77773e0fcee8020f74fabc8b7 100644 --- a/tests/startsessionlistener.php +++ b/tests/startsessionlistener.php @@ -31,9 +31,9 @@ class StartSessionListener implements PHPUnit_Framework_TestListener { public function endTest(PHPUnit_Framework_Test $test, $time) { // reopen the session - only allowed for memory session - if (\OC::$session instanceof \OC\Session\Memory) { + if (\OC::$server->getSession() instanceof \OC\Session\Memory) { /** @var $session \OC\Session\Memory */ - $session = \OC::$session; + $session = \OC::$server->getSession(); $session->reopen(); } }