From a0fe53d09adcb95b2b4edfd001346206f0a1bd8b Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 29 Nov 2012 15:08:05 +0100 Subject: fix pattern for database names --- core/templates/installation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/templates/installation.php b/core/templates/installation.php index 1e7983eae53..908e7301062 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -111,7 +111,7 @@

- +

-- cgit v1.2.3 From bbe805b665ddf188c2f1b1b88c4e47052629234b Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 17 Dec 2012 12:28:34 +0100 Subject: use regex which was suggested by dragotin --- core/templates/installation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/templates/installation.php b/core/templates/installation.php index 908e7301062..3b81d890cf7 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -111,7 +111,7 @@

- +

-- cgit v1.2.3 From 4a7604daa26d9c79585aa3ba249f879b31f6eaa2 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 2 Jan 2013 17:02:06 +0100 Subject: remove , at end of js. IE8 chokes on this --- core/js/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/js/config.js b/core/js/config.js index f7a29276f7d..563df4e6632 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -50,6 +50,6 @@ OC.AppConfig={ }, deleteApp:function(app){ OC.AppConfig.postCall('deleteApp',{app:app}); - }, + } }; //TODO OC.Preferences -- cgit v1.2.3 From fe4f056a2334f8e6d77c2327eccf9cf3ebc54965 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 2 Jan 2013 17:04:11 +0100 Subject: use jQuery.parseJSON fallback for IE6/7/8 --- core/js/js.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/js/js.js b/core/js/js.js index 7d967321d93..5a24ba19c0c 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -343,8 +343,15 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, getItem:function(name){ - if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;} - return JSON.parse(localStorage.getItem(OC.localStorage.namespace+name)); + var item = localStorage.getItem(OC.localStorage.namespace+name); + if(item===null) { + return null; + } else if (typeof JSON === 'undefined') { + //fallback to jquery for IE6/7/8 + return $.parseJSON(item); + } else { + return JSON.parse(item); + } } }; }else{ -- cgit v1.2.3 From e2f549f6d7cccb348c3975a412055ac395d95800 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Wed, 2 Jan 2013 18:01:33 +0100 Subject: remove css not selector - incompatible with ie8 --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/css/styles.css b/core/css/styles.css index d635916b5ae..0c562cb5354 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -34,7 +34,7 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC /* INPUTS */ input[type="text"], input[type="password"] { cursor:text; } -input:not([type="checkbox"]), textarea, select, button, .button, #quota, div.jp-progress, .pager li a { +input, textarea, select, button, .button, #quota, div.jp-progress, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; font-size:1em; font-family:Arial, Verdana, sans-serif; background:#fff; color:#333; border:1px solid #ddd; outline:none; -- cgit v1.2.3 From 3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 7 Jan 2013 12:23:29 +0100 Subject: attach max upload tipsy to div instead of a to fix tooltip not showing due to new z-index --- apps/files/js/files.js | 4 ++++ apps/files/templates/index.php | 6 +++--- core/js/js.js | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) (limited to 'core') diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6d19a341e9e..038660e6e49 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -322,6 +322,7 @@ $(document).ready(function() { if ($.assocArraySize(uploadingFiles[dirName]) == 0) { delete uploadingFiles[dirName]; } + //TODO update file upload size limit var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -375,6 +376,7 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { Files.cancelUpload(this.files[0].name); @@ -407,8 +409,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + //TODO Files.cancelUpload(/*where do we get the filename*/); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 3bcb865ccdb..2e0772443f2 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -14,7 +14,8 @@ data-type='web'>

t('From link');?>

-
+
- +
diff --git a/core/js/js.js b/core/js/js.js index 9f3e8f92100..95889ac8a27 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -622,7 +622,7 @@ $(document).ready(function(){ $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); - $('#upload a').tipsy({gravity:'w', fade:true}); + $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); -- cgit v1.2.3 From 0dda8f5d1c3288888f1fe96ad31d59b7ccbdc7ba Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Mon, 7 Jan 2013 13:09:52 +0100 Subject: ie8 ignores rgba, show button border in ie8 by adding second border css row --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/css/styles.css b/core/css/styles.css index 6e1cef72eda..59143f9b9a8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -56,7 +56,7 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { width:auto; padding:.4em; - background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid rgba(180,180,180,.5); cursor:pointer; + background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #bbb; border:1px solid rgba(180,180,180,.5); cursor:pointer; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } -- cgit v1.2.3 From b69328e1d1f0888c2541e3f0be27e534f980adb4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 8 Jan 2013 00:31:36 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 2 ++ apps/files/l10n/cs_CZ.php | 2 ++ apps/files/l10n/es.php | 2 ++ apps/files/l10n/fr.php | 4 ++++ apps/files/l10n/it.php | 2 ++ apps/files/l10n/ja_JP.php | 2 ++ apps/files/l10n/ko.php | 4 ++++ apps/files/l10n/nl.php | 4 ++++ apps/files_external/l10n/ko.php | 2 ++ apps/user_ldap/l10n/ko.php | 2 ++ apps/user_webdavauth/l10n/ko.php | 3 ++- core/l10n/ca.php | 1 + core/l10n/cs_CZ.php | 1 + core/l10n/es.php | 1 + core/l10n/fr.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/ko.php | 9 +++++++++ core/l10n/nl.php | 1 + l10n/ca/core.po | 10 +++++----- l10n/ca/files.po | 12 ++++++------ l10n/cs_CZ/core.po | 10 +++++----- l10n/cs_CZ/files.po | 10 +++++----- l10n/es/core.po | 10 +++++----- l10n/es/files.po | 12 ++++++------ l10n/fr/core.po | 10 +++++----- l10n/fr/files.po | 16 ++++++++-------- l10n/it/core.po | 10 +++++----- l10n/it/files.po | 10 +++++----- l10n/ja_JP/core.po | 10 +++++----- l10n/ja_JP/files.po | 10 +++++----- l10n/ko/core.po | 25 +++++++++++++------------ l10n/ko/files.po | 15 ++++++++------- l10n/ko/files_external.po | 17 +++++++++-------- l10n/ko/settings.po | 37 +++++++++++++++++++------------------ l10n/ko/user_ldap.po | 11 ++++++----- l10n/ko/user_webdavauth.po | 11 ++++++----- l10n/nl/core.po | 10 +++++----- l10n/nl/files.po | 16 ++++++++-------- l10n/nl/settings.po | 16 ++++++++-------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/ko.php | 15 +++++++++++++++ settings/l10n/nl.php | 4 ++++ 52 files changed, 220 insertions(+), 152 deletions(-) (limited to 'core') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 981b8ec7ec9..c30f3a97add 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "unshared {files}" => "no compartits {files}", "deleted {files}" => "eliminats {files}", +"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", +"File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index ab21b8a2750..a7ccd3187f6 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "unshared {files}" => "sdílení zrušeno pro {files}", "deleted {files}" => "smazáno {files}", +"'.' is an invalid file name." => "'.' je neplatným názvem souboru.", +"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 2b9bdeeece9..a92720581b8 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "unshared {files}" => "{files} descompartidos", "deleted {files}" => "{files} eliminados", +"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", +"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 8ffb0d351f7..95405a81a86 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Aucun fichier n'a été téléversé", "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", +"Not enough space available" => "Espace disponible insuffisant", +"Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unshare" => "Ne plus partager", "Delete" => "Supprimer", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "unshared {files}" => "Fichiers non partagés : {files}", "deleted {files}" => "Fichiers supprimés : {files}", +"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", +"File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 6c7ca59774e..e74bfae2e8c 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "unshared {files}" => "non condivisi {files}", "deleted {files}" => "eliminati {files}", +"'.' is an invalid file name." => "'.' non è un nome file valido.", +"File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index ca5ba564476..bc7be7ea695 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "unshared {files}" => "未共有 {files}", "deleted {files}" => "削除 {files}", +"'.' is an invalid file name." => "'.' は無効なファイル名です。", +"File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d0a6d57538a..9d46afc97e9 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -7,6 +7,8 @@ "No file was uploaded" => "업로드된 파일 없음", "Missing a temporary folder" => "임시 폴더가 사라짐", "Failed to write to disk" => "디스크에 쓰지 못했습니다", +"Not enough space available" => "여유공간이 부족합니다", +"Invalid directory." => "올바르지 않은 디렉토리입니다.", "Files" => "파일", "Unshare" => "공유 해제", "Delete" => "삭제", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "unshared {files}" => "{files} 공유 해제됨", "deleted {files}" => "{files} 삭제됨", +"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", +"File name cannot be empty." => "파일이름은 공란이 될 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "generating ZIP-file, it may take some time." => "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 998caabf9f5..22fd68214eb 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Geen bestand geüpload", "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", +"Not enough space available" => "Niet genoeg ruimte beschikbaar", +"Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", "Delete" => "Verwijder", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "unshared {files}" => "delen gestopt {files}", "deleted {files}" => "verwijderde {files}", +"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", +"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 74a400303b2..cb691cf5e3d 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "모든 필수 항목을 입력하십시오", "Please provide a valid Dropbox app key and secret." => "올바른 Dropbox 앱 키와 암호를 입력하십시오.", "Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "경고\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "경고PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. ", "External Storage" => "외부 저장소", "Mount point" => "마운트 지점", "Backend" => "백엔드", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index aa775e42b16..37ac3d1bda5 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다.", "Host" => "호스트", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Base DN" => "기본 DN", diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 9bd32954b05..a806df750f7 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index f98922f8f38..c4e134cdf36 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -128,6 +128,7 @@ "You are logged out." => "Heu tancat la sessió.", "prev" => "anterior", "next" => "següent", +"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.", "Security Warning!" => "Avís de seguretat!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya.
Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.", "Verify" => "Comprova" diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 96252ea8bba..3a15bd1ae90 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -128,6 +128,7 @@ "You are logged out." => "Jste odhlášeni.", "prev" => "předchozí", "next" => "následující", +"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat.", "Security Warning!" => "Bezpečnostní upozornění.", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo.
Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.", "Verify" => "Ověřit" diff --git a/core/l10n/es.php b/core/l10n/es.php index 2a9f5682dfb..bc72944340b 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -128,6 +128,7 @@ "You are logged out." => "Has cerrado la sesión.", "prev" => "anterior", "next" => "siguiente", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", "Security Warning!" => "¡Advertencia de seguridad!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña.
Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.", "Verify" => "Verificar" diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 6b1449dd4ba..8777309d9b7 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -128,6 +128,7 @@ "You are logged out." => "Vous êtes désormais déconnecté.", "prev" => "précédent", "next" => "suivant", +"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps.", "Security Warning!" => "Alerte de sécurité !", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe.
Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", "Verify" => "Vérification" diff --git a/core/l10n/it.php b/core/l10n/it.php index e97deb9fb5f..952ae4d06b6 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -128,6 +128,7 @@ "You are logged out." => "Sei uscito.", "prev" => "precedente", "next" => "successivo", +"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo.", "Security Warning!" => "Avviso di sicurezza", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.
Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.", "Verify" => "Verifica" diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 72615d36f62..46d40e2e73e 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -128,6 +128,7 @@ "You are logged out." => "ログアウトしました。", "prev" => "前", "next" => "次", +"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", "Security Warning!" => "セキュリティ警告!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認
セキュリティ上の理由によりパスワードの再入力をお願いします。", "Verify" => "確認" diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 3846dff796b..4b7df81fa85 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,4 +1,8 @@ "User %s 가 당신과 파일을 공유하였습니다.", +"User %s shared a folder with you" => "User %s 가 당신과 폴더를 공유하였습니다.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.", "Category type not provided." => "분류 형식이 제공되지 않았습니다.", "No category to add?" => "추가할 분류가 없습니까?", "This category already exists: " => "이 분류는 이미 존재합니다:", @@ -39,6 +43,8 @@ "Share with link" => "URL 링크로 공유", "Password protect" => "암호 보호", "Password" => "암호", +"Email link to person" => "이메일 주소", +"Send" => "전송", "Set expiration date" => "만료 날짜 설정", "Expiration date" => "만료 날짜", "Share via email:" => "이메일로 공유:", @@ -55,6 +61,8 @@ "Password protected" => "암호로 보호됨", "Error unsetting expiration date" => "만료 날짜 해제 오류", "Error setting expiration date" => "만료 날짜 설정 오류", +"Sending ..." => "전송 중...", +"Email sent" => "이메일 발송됨", "ownCloud password reset" => "ownCloud 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", @@ -120,6 +128,7 @@ "You are logged out." => "로그아웃되었습니다.", "prev" => "이전", "next" => "다음", +"Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다.", "Security Warning!" => "보안 경고!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "암호를 확인해 주십시오.
보안상의 이유로 종종 암호를 물어볼 것입니다.", "Verify" => "확인" diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c3f5c887658..726dbf20161 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -128,6 +128,7 @@ "You are logged out." => "U bent afgemeld.", "prev" => "vorige", "next" => "volgende", +"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren.", "Security Warning!" => "Beveiligingswaarschuwing!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Verifieer uw wachtwoord!
Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven.", "Verify" => "Verifieer" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index be8931fdc55..c41d4cbd8b6 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -4,14 +4,14 @@ # # Translators: # , 2012. -# , 2011-2012. +# , 2011-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:01+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -569,7 +569,7 @@ msgstr "següent" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6f071623c19..45d57b363a4 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -7,15 +7,15 @@ # , 2012. # , 2012. # Josep Tomàs , 2012. -# , 2011-2012. +# , 2011-2013. # , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:03+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,11 +120,11 @@ msgstr "eliminats {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' és un nom no vàlid per un fitxer." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "El nom del fitxer no pot ser buit." #: js/files.js:45 msgid "" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8b202d95172..2148999dc1b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -6,14 +6,14 @@ # Jan Krejci , 2011. # Martin , 2011-2012. # Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 06:20+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -571,7 +571,7 @@ msgstr "následující" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5080b51b462..6f8f77861d1 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 06:21+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,11 +117,11 @@ msgstr "smazáno {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' je neplatným názvem souboru." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Název souboru nemůže být prázdný řetězec." #: js/files.js:45 msgid "" diff --git a/l10n/es/core.po b/l10n/es/core.po index f06edefd26c..ffe01773beb 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # Javier Llorente , 2012. -# , 2011-2012. +# , 2011-2013. # , 2012. # oSiNaReF <>, 2012. # Raul Fernandez Garcia , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:49+0000\n" +"Last-Translator: juanman \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" @@ -578,7 +578,7 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/es/files.po b/l10n/es/files.po index 22d40a3e622..21ff8e3ba72 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -7,7 +7,7 @@ # Agustin Ferrario , 2013. # , 2012. # Javier Llorente , 2012. -# , 2012. +# , 2012-2013. # Rubén Trujillo , 2012. # , 2011-2012. # , 2012. @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:50+0000\n" +"Last-Translator: juanman \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" @@ -122,11 +122,11 @@ msgstr "{files} eliminados" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' es un nombre de archivo inválido." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "El nombre de archivo no puede estar vacío." #: js/files.js:45 msgid "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 2396fb7d1d7..0807b8ed65a 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # , 2013. # , 2012. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 15:29+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -578,7 +578,7 @@ msgstr "suivant" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 3b12e33fe86..61dd57bd6f4 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # Cyril Glapa , 2012. # , 2013. # Geoffrey Guerrier , 2012. @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 15:26+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,11 +66,11 @@ msgstr "Erreur d'écriture sur le disque" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Espace disponible insuffisant" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Dossier invalide." #: appinfo/app.php:10 msgid "Files" @@ -126,11 +126,11 @@ msgstr "Fichiers supprimés : {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' n'est pas un nom de fichier valide." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Le nom de fichier ne peut être vide." #: js/files.js:45 msgid "" diff --git a/l10n/it/core.po b/l10n/it/core.po index fcd13a5c7e5..e2b2ba2f565 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -7,14 +7,14 @@ # Francesco Apruzzese , 2011, 2012. # , 2011, 2012. # , 2011. -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 05:14+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,7 +572,7 @@ msgstr "successivo" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/it/files.po b/l10n/it/files.po index 04eb3b518bd..6787dcc3044 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 05:17+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "eliminati {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' non è un nome file valido." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Il nome del file non può essere vuoto." #: js/files.js:45 msgid "" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 4ea70e822c1..d4c31fe92b0 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 00:41+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -570,7 +570,7 @@ msgstr "次" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 270151e2875..026f90dc6ac 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 00:40+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,11 +118,11 @@ msgstr "削除 {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' は無効なファイル名です。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "ファイル名を空にすることはできません。" #: js/files.js:45 msgid "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 71939ecd09d..24948c06769 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:03+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,26 +24,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "User %s 가 당신과 파일을 공유하였습니다." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "User %s 가 당신과 폴더를 공유하였습니다." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -216,11 +217,11 @@ msgstr "암호" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "이메일 주소" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "전송" #: js/share.js:177 msgid "Set expiration date" @@ -288,11 +289,11 @@ msgstr "만료 날짜 설정 오류" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "전송 중..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "이메일 발송됨" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -570,7 +571,7 @@ msgstr "다음" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 8fcada33fa1..23e43f6d39b 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:05+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,11 +58,11 @@ msgstr "디스크에 쓰지 못했습니다" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "여유공간이 부족합니다" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "올바르지 않은 디렉토리입니다." #: appinfo/app.php:10 msgid "Files" @@ -117,11 +118,11 @@ msgstr "{files} 삭제됨" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 는 올바르지 않은 파일 이름 입니다." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "파일이름은 공란이 될 수 없습니다." #: js/files.js:45 msgid "" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 70d697575d8..f43b8963773 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:07+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,14 +48,14 @@ msgstr "Google 드라이브 저장소 설정 오류" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "경고\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다." #: lib/config.php:435 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "경고PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. " #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" msgstr "사용자" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "삭제" @@ -113,10 +114,10 @@ msgstr "사용자 외부 저장소 사용" msgid "Allow users to mount their own external storage" msgstr "사용자별 외부 저장소 마운트 허용" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ea5f2c1fc67..0d027d7cdfc 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:26+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,23 +121,23 @@ msgstr "-라이선스 보유자 , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:58+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,13 +25,13 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 621bee70462..7baa17ed715 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:31+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." diff --git a/l10n/nl/core.po b/l10n/nl/core.po index ad69e22d393..e7b0b0ce699 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # Erik Bent , 2012. @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:49+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -581,7 +581,7 @@ msgstr "volgende" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Updaten ownCloud naar versie %s, dit kan even duren." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 61eca60948e..02a558e9550 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2011. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:51+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,11 +65,11 @@ msgstr "Schrijven naar schijf mislukt" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Niet genoeg ruimte beschikbaar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ongeldige directory." #: appinfo/app.php:10 msgid "Files" @@ -125,11 +125,11 @@ msgstr "verwijderde {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' is een ongeldige bestandsnaam." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Bestandsnaam kan niet leeg zijn." #: js/files.js:45 msgid "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1828079d894..ed543c241b0 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # , 2012. @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:48+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -255,11 +255,11 @@ msgstr "Creëer" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Default opslag" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ongelimiteerd" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -271,11 +271,11 @@ msgstr "Groep beheerder" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opslag" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Default" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4e7b7b1279e..e0e6d5cdd17 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index bcfc0709455..52d1d0fcdd3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 2acbfdd22f2..76907a7fb04 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 1cdb866c5d4..a0359bc4ff7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c53d94e2b98..023ef632745 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 8d5d1e69f44..a80a2b98e32 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f7616ac54b9..d8b090078b5 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ab8101b4de0..c0a40761420 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index bb356f00380..86251355228 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f86a111ef8a..fd9c1cef4d1 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 6556e1b93b8..21724a1782e 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -23,8 +23,16 @@ "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", +"User Documentation" => "유저 문서", +"Administrator Documentation" => "관리자 문서", +"Online Documentation" => "온라인 문서", +"Forum" => "포럼", +"Bugtracker" => "버그트래커", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", "Clients" => "고객", +"Download Desktop Clients" => "데스크탑 클라이언트 다운로드", +"Download Android Client" => "안드로이드 클라이언트 다운로드", +"Download iOS Client" => "iOS 클라이언트 다운로드", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", "Language" => "언어", "Help translate" => "번역 돕기", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "파일 매니저에서 사용자의 ownCloud에 접속하기 위해 이 주소를 사용하십시요.", +"Version" => "버젼", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", "Name" => "이름", "Groups" => "그룹", "Create" => "만들기", +"Default Storage" => "기본 저장소", +"Unlimited" => "무제한", "Other" => "기타", "Group Admin" => "그룹 관리자", +"Storage" => "저장소", +"Default" => "기본값", "Delete" => "삭제" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 583c044ba47..ca7e84ce6cb 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -53,7 +53,11 @@ "Name" => "Naam", "Groups" => "Groepen", "Create" => "Creëer", +"Default Storage" => "Default opslag", +"Unlimited" => "Ongelimiteerd", "Other" => "Andere", "Group Admin" => "Groep beheerder", +"Storage" => "Opslag", +"Default" => "Default", "Delete" => "verwijderen" ); -- cgit v1.2.3 From 533f0e8e258caef66019377a160e7213fd530f07 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 9 Jan 2013 00:05:49 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/da.php | 1 - apps/files/l10n/de.php | 3 +- apps/files/l10n/de_DE.php | 5 +- apps/files/l10n/el.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/et_EE.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 1 - apps/files/l10n/he.php | 1 - apps/files/l10n/hu_HU.php | 5 +- apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja_JP.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/mk.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 3 +- apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/ru_RU.php | 1 - apps/files/l10n/sk_SK.php | 1 - apps/files/l10n/sl.php | 1 - apps/files/l10n/sr.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/ta_LK.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/vi.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 + core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/pt_PT.php | 1 + l10n/ar/files.po | 76 +++++++++--------- l10n/bg_BG/core.po | 152 ++++++++++++++++++------------------ l10n/bg_BG/files.po | 128 +++++++++++++++--------------- l10n/bg_BG/files_encryption.po | 14 ++-- l10n/bg_BG/files_external.po | 16 ++-- l10n/bg_BG/files_sharing.po | 16 ++-- l10n/bg_BG/files_versions.po | 10 +-- l10n/bg_BG/lib.po | 30 +++---- l10n/bg_BG/settings.po | 60 +++++++------- l10n/bg_BG/user_ldap.po | 6 +- l10n/bg_BG/user_webdavauth.po | 6 +- l10n/bn_BD/files.po | 76 +++++++++--------- l10n/ca/files.po | 80 ++++++++++--------- l10n/cs_CZ/files.po | 80 ++++++++++--------- l10n/da/files.po | 78 +++++++++--------- l10n/de/core.po | 34 ++++---- l10n/de/files.po | 84 ++++++++++---------- l10n/de_DE/core.po | 35 +++++---- l10n/de_DE/files.po | 87 +++++++++++---------- l10n/el/files.po | 78 +++++++++--------- l10n/eo/files.po | 78 +++++++++--------- l10n/es/files.po | 80 ++++++++++--------- l10n/es_AR/files.po | 78 +++++++++--------- l10n/et_EE/files.po | 78 +++++++++--------- l10n/eu/files.po | 78 +++++++++--------- l10n/fa/files.po | 76 +++++++++--------- l10n/fi_FI/files.po | 76 +++++++++--------- l10n/fr/files.po | 82 ++++++++++--------- l10n/gl/files.po | 78 +++++++++--------- l10n/he/files.po | 78 +++++++++--------- l10n/hi/files.po | 76 +++++++++--------- l10n/hr/files.po | 76 +++++++++--------- l10n/hu/files.po | 76 +++++++++--------- l10n/hu_HU/files.po | 87 +++++++++++---------- l10n/hu_HU/settings.po | 15 ++-- l10n/hu_HU/user_ldap.po | 9 ++- l10n/ia/files.po | 76 +++++++++--------- l10n/id/files.po | 76 +++++++++--------- l10n/is/files.po | 78 +++++++++--------- l10n/it/files.po | 80 ++++++++++--------- l10n/ja_JP/files.po | 80 ++++++++++--------- l10n/ka_GE/files.po | 76 +++++++++--------- l10n/ko/files.po | 80 ++++++++++--------- l10n/ku_IQ/files.po | 76 +++++++++--------- l10n/lb/files.po | 76 +++++++++--------- l10n/lt_LT/files.po | 76 +++++++++--------- l10n/lv/files.po | 76 +++++++++--------- l10n/mk/files.po | 78 +++++++++--------- l10n/ms_MY/files.po | 76 +++++++++--------- l10n/nb_NO/files.po | 78 +++++++++--------- l10n/nl/files.po | 80 ++++++++++--------- l10n/nn_NO/files.po | 76 +++++++++--------- l10n/oc/files.po | 76 +++++++++--------- l10n/pl/files.po | 78 +++++++++--------- l10n/pl_PL/files.po | 76 +++++++++--------- l10n/pt_BR/files.po | 78 +++++++++--------- l10n/pt_PT/core.po | 36 ++++----- l10n/pt_PT/files.po | 82 ++++++++++--------- l10n/ro/files.po | 78 +++++++++--------- l10n/ru/files.po | 78 +++++++++--------- l10n/ru_RU/files.po | 78 +++++++++--------- l10n/si_LK/files.po | 76 +++++++++--------- l10n/sk_SK/files.po | 78 +++++++++--------- l10n/sl/files.po | 78 +++++++++--------- l10n/sq/files.po | 76 +++++++++--------- l10n/sr/files.po | 78 +++++++++--------- l10n/sr@latin/files.po | 76 +++++++++--------- l10n/sv/files.po | 78 +++++++++--------- l10n/ta_LK/files.po | 78 +++++++++--------- l10n/templates/core.pot | 28 +++---- l10n/templates/files.pot | 74 +++++++++--------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 78 +++++++++--------- l10n/tr/files.po | 78 +++++++++--------- l10n/uk/files.po | 78 +++++++++--------- l10n/vi/files.po | 78 +++++++++--------- l10n/zh_CN.GB2312/files.po | 76 +++++++++--------- l10n/zh_CN/files.po | 78 +++++++++--------- l10n/zh_HK/files.po | 76 +++++++++--------- l10n/zh_TW/files.po | 78 +++++++++--------- l10n/zu_ZA/files.po | 76 +++++++++--------- settings/l10n/hu_HU.php | 4 + 132 files changed, 2951 insertions(+), 2707 deletions(-) (limited to 'core') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index c30f3a97add..224f0206e10 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} fitxers en pujada", "Upload cancelled." => "La pujada s'ha cancel·lat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud", "{count} files scanned" => "{count} fitxers escannejats", "error while scanning" => "error durant l'escaneig", "Name" => "Nom", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index a7ccd3187f6..abd169245f9 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,7 +34,6 @@ "{count} files uploading" => "odesílám {count} souborů", "Upload cancelled." => "Odesílání zrušeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud.", "{count} files scanned" => "prozkoumáno {count} souborů", "error while scanning" => "chyba při prohledávání", "Name" => "Název", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index e2fd0c8c18f..b5efe1b9136 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 5f4778eb867..1b2694ecf04 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "unshared {files}" => "Freigabe von {files} aufgehoben", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -32,7 +34,6 @@ "{count} files uploading" => "{count} Dateien werden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3ba32229070..7dd8d3dad51 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -7,7 +7,7 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genug Speicher verfügbar", +"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "unshared {files}" => "Freigabe für {files} beendet", "deleted {files}" => "{files} gelöscht", +"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", +"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", @@ -32,7 +34,6 @@ "{count} files uploading" => "{count} Dateien wurden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 60be0bc7aac..4d87c06dd0f 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index c371334933d..478be98bf5c 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} dosieroj alŝutatas", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud", "{count} files scanned" => "{count} dosieroj skaniĝis", "error while scanning" => "eraro dum skano", "Name" => "Nomo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index a92720581b8..b4234e3f3e7 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,7 +34,6 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error escaneando", "Name" => "Nombre", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 9375954c02e..a2e0a102aa6 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -32,7 +32,6 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud.", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0dfc7b5bcd5..a785651559f 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} faili üleslaadimist", "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud ", "{count} files scanned" => "{count} faili skännitud", "error while scanning" => "viga skännimisel", "Name" => "Nimi", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index e141fa65726..83710f02866 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} fitxategi igotzen", "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 95405a81a86..61ab0846784 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} fichiers téléversés", "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud", "{count} files scanned" => "{count} fichiers indexés", "error while scanning" => "erreur lors de l'indexation", "Name" => "Nom", @@ -59,7 +58,7 @@ "Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", -"Download" => "Téléchargement", +"Download" => "Télécharger", "Upload too large" => "Fichier trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index eb9503d6cad..cf0238d7a79 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -32,7 +32,6 @@ "{count} files uploading" => "{count} ficheiros subíndose", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud", "{count} files scanned" => "{count} ficheiros escaneados", "error while scanning" => "erro mentres analizaba", "Name" => "Nome", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 971933f2310..7b4f910bce7 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud", "{count} files scanned" => "{count} קבצים נסרקו", "error while scanning" => "אירעה שגיאה במהלך הסריקה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index cb06fe087e6..4561d9c49e1 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Nem töltődött fel semmi", "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre történő írás", +"Not enough space available" => "Nincs elég szabad hely", +"Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", "Unshare" => "Megosztás visszavonása", "Delete" => "Törlés", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "unshared {files}" => "{files} fájl megosztása visszavonva", "deleted {files}" => "{files} fájl törölve", +"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", +"File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", @@ -30,7 +34,6 @@ "{count} files uploading" => "{count} fájl töltődik föl", "Upload cancelled." => "A feltöltést megszakítottuk.", "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.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index bca878873ac..09312124f8a 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} skrár innsendar", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e74bfae2e8c..e645d9b871a 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} file in fase di caricamentoe", "Upload cancelled." => "Invio annullato", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud", "{count} files scanned" => "{count} file analizzati", "error while scanning" => "errore durante la scansione", "Name" => "Nome", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index bc7be7ea695..fc82c8ef038 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。", "{count} files scanned" => "{count} ファイルをスキャン", "error while scanning" => "スキャン中のエラー", "Name" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 9d46afc97e9..95667df7cbb 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -34,7 +34,6 @@ "{count} files uploading" => "파일 {count}개 업로드 중", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다.", "{count} files scanned" => "파일 {count}개 검색됨", "error while scanning" => "검색 중 오류 발생", "Name" => "이름", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 9eb11360fed..1b1c3946231 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud", "{count} files scanned" => "{count} датотеки скенирани", "error while scanning" => "грешка при скенирање", "Name" => "Име", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f97228ecd1b..1de39f021d4 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -28,7 +28,6 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 22fd68214eb..2421f1be65a 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,7 +34,6 @@ "{count} files uploading" => "{count} bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden", "{count} files scanned" => "{count} bestanden gescanned", "error while scanning" => "Fout tijdens het scannen", "Name" => "Naam", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index e485fdc6c3e..7ac88664ae2 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} przesyłanie plików", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud", "{count} files scanned" => "{count} pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", "Name" => "Nazwa", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 5f266bd7cd4..decb30139eb 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -30,7 +30,6 @@ "{count} files uploading" => "Enviando {count} arquivos", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud", "{count} files scanned" => "{count} arquivos scaneados", "error while scanning" => "erro durante verificação", "Name" => "Nome", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 36c9d6e62aa..97ac32f77fe 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "unshared {files}" => "{files} não partilhado(s)", "deleted {files}" => "{files} eliminado(s)", +"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", +"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", @@ -32,7 +34,6 @@ "{count} files uploading" => "A carregar {count} ficheiros", "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b09c8f39c8b..a8761984b65 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 403bd5c0982..53057ea0844 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} файлов загружается", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud", "{count} files scanned" => "{count} файлов просканировано", "error while scanning" => "ошибка во время санирования", "Name" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index d7d3d37613a..8de277c4b78 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{количество} загружено файлов", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud", "{count} files scanned" => "{количество} файлов отсканировано", "error while scanning" => "ошибка при сканировании", "Name" => "Имя", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 1043e7ae9d9..abcb9358c0f 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} súborov odosielaných", "Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud.", "{count} files scanned" => "{count} súborov prehľadaných", "error while scanning" => "chyba počas kontroly", "Name" => "Meno", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index f07751073c4..7d1594da063 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -30,7 +30,6 @@ "{count} files uploading" => "nalagam {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud.", "{count} files scanned" => "{count} files scanned", "error while scanning" => "napaka med pregledovanjem datotek", "Name" => "Ime", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 48b258862b5..ecde8be4cc0 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -29,7 +29,6 @@ "{count} files uploading" => "Отпремам {count} датотеке/а", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неисправан назив фасцикле. „Дељено“ користи Оунклауд.", "{count} files scanned" => "Скенирано датотека: {count}", "error while scanning" => "грешка при скенирању", "Name" => "Назив", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f04ae0ac228..b5c9049de2c 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -32,7 +32,6 @@ "{count} files uploading" => "{count} filer laddas upp", "Upload cancelled." => "Uppladdning avbruten.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud.", "{count} files scanned" => "{count} filer skannade", "error while scanning" => "fel vid skanning", "Name" => "Namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index b68ad8f02c6..7edaf8e4252 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது", "{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது", "error while scanning" => "வருடும் போதான வழு", "Name" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index f6b3b1c56f1..214cef925df 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,7 +30,6 @@ "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "Name" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 80182d8ec80..7b251d0b8eb 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.", "{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 4daa2d628c7..3a026af6965 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} файлів завантажується", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud", "{count} files scanned" => "{count} файлів проскановано", "error while scanning" => "помилка при скануванні", "Name" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index b14186d9615..3f4d887b57b 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -29,7 +29,6 @@ "{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud", "{count} files scanned" => "{count} tập tin đã được quét", "error while scanning" => "lỗi trong khi quét", "Name" => "Tên", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 1188c252922..7f2bba35e7f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -30,7 +30,6 @@ "{count} files uploading" => "{count} 个文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。", "{count} files scanned" => "{count} 个文件已扫描。", "error while scanning" => "扫描时出错", "Name" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 7b55b547148..ae2430106da 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -24,7 +24,6 @@ "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", -"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用", "error while scanning" => "掃描時發生錯誤", "Name" => "名稱", "Size" => "大小", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 14eb5837ceb..577afcef1c9 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -17,6 +17,7 @@ "Group Filter" => "A csoportok szűrője", "Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", +"Port" => "Port", "Base User Tree" => "A felhasználói fa gyökere", "Base Group Tree" => "A csoportfa gyökere", "Group-Member association" => "A csoporttagság attribútuma", diff --git a/core/l10n/de.php b/core/l10n/de.php index c5867eda8c3..9c80d1cb14e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -128,6 +128,7 @@ "You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitswarnung!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort.
Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", "Verify" => "Bestätigen" diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ed0bc0e0ffb..777725b2cd6 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -128,6 +128,7 @@ "You are logged out." => "Sie wurden abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitshinweis!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort.
Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.", "Verify" => "Überprüfen" diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a2bfcf4f882..d09344fe140 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -128,6 +128,7 @@ "You are logged out." => "Estás desconetado.", "prev" => "anterior", "next" => "seguinte", +"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar.", "Security Warning!" => "Aviso de Segurança!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe.
Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.", "Verify" => "Verificar" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 791afd2e704..91d0318792f 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "محذوف" @@ -77,39 +77,39 @@ msgstr "محذوف" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "" msgid "Close" msgstr "إغلق" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "الاسم" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "حجم" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "معدل" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "مجلد" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "إرفع" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "تحميل" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 946b0984730..d4e0355bead 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \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" @@ -55,7 +55,7 @@ msgstr "" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Категорията вече съществува:" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -76,7 +76,7 @@ msgstr "" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Няма избрани категории за изтриване" +msgstr "" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -85,57 +85,57 @@ msgstr "" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "Настройки" +msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -145,19 +145,19 @@ msgstr "" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "Отказ" +msgstr "" #: js/oc-dialogs.js:162 msgid "No" -msgstr "Не" +msgstr "" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "Да" +msgstr "" #: js/oc-dialogs.js:180 msgid "Ok" -msgstr "Добре" +msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -168,7 +168,7 @@ msgstr "" #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "Грешка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -213,7 +213,7 @@ msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "Парола" +msgstr "" #: js/share.js:172 msgid "Email link to person" @@ -305,7 +305,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Ще получите връзка за нулиране на паролата Ви." +msgstr "" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -318,15 +318,15 @@ msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 msgid "Username" -msgstr "Потребител" +msgstr "" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Нулиране на заявка" +msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Вашата парола е нулирана" +msgstr "" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -334,47 +334,47 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Нова парола" +msgstr "" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Нулиране на парола" +msgstr "" #: strings.php:5 msgid "Personal" -msgstr "Лични" +msgstr "" #: strings.php:6 msgid "Users" -msgstr "Потребители" +msgstr "" #: strings.php:7 msgid "Apps" -msgstr "Програми" +msgstr "" #: strings.php:8 msgid "Admin" -msgstr "Админ" +msgstr "" #: strings.php:9 msgid "Help" -msgstr "Помощ" +msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Достъпът е забранен" +msgstr "" #: templates/404.php:12 msgid "Cloud not found" -msgstr "облакът не намерен" +msgstr "" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Редактиране на категориите" +msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Добавяне" +msgstr "" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -403,36 +403,36 @@ msgstr "" #: templates/installation.php:36 msgid "Create an admin account" -msgstr "Създаване на админ профил" +msgstr "" #: templates/installation.php:50 msgid "Advanced" -msgstr "Разширено" +msgstr "" #: templates/installation.php:52 msgid "Data folder" -msgstr "Директория за данни" +msgstr "" #: templates/installation.php:59 msgid "Configure the database" -msgstr "Конфигуриране на базата" +msgstr "" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "ще се ползва" +msgstr "" #: templates/installation.php:107 msgid "Database user" -msgstr "Потребител за базата" +msgstr "" #: templates/installation.php:111 msgid "Database password" -msgstr "Парола за базата" +msgstr "" #: templates/installation.php:115 msgid "Database name" -msgstr "Име на базата" +msgstr "" #: templates/installation.php:123 msgid "Database tablespace" @@ -440,87 +440,87 @@ msgstr "" #: templates/installation.php:129 msgid "Database host" -msgstr "Хост за базата" +msgstr "" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Завършване на настройките" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "Неделя" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "Понеделник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Вторник" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Сряда" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "Четвъртък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "Петък" +msgstr "" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Събота" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Януари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Февруари" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Март" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Април" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Май" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "Юни" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Юли" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Август" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Септември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Октомври" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Ноември" +msgstr "" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Декември" +msgstr "" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -528,7 +528,7 @@ msgstr "" #: templates/layout.user.php:45 msgid "Log out" -msgstr "Изход" +msgstr "" #: templates/login.php:10 msgid "Automatic logon rejected!" @@ -546,27 +546,27 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Забравена парола?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запомни" +msgstr "" #: templates/login.php:41 msgid "Log in" -msgstr "Вход" +msgstr "" #: templates/logout.php:1 msgid "You are logged out." -msgstr "Вие излязохте." +msgstr "" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "пред." +msgstr "" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "следващо" +msgstr "" #: templates/update.php:3 #, php-format diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 0a3297bd922..c416d7b2d74 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -25,7 +25,7 @@ msgstr "" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" -msgstr "Файлът е качен успешно" +msgstr "" #: ajax/upload.php:22 msgid "" @@ -36,23 +36,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." +msgstr "" #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "Файлът е качен частично" +msgstr "" #: ajax/upload.php:27 msgid "No file was uploaded" -msgstr "Фахлът не бе качен" +msgstr "" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "Липсва временната папка" +msgstr "" #: ajax/upload.php:29 msgid "Failed to write to disk" -msgstr "Грешка при запис на диска" +msgstr "" #: ajax/upload.php:45 msgid "Not enough space available" @@ -64,53 +64,53 @@ msgstr "" #: appinfo/app.php:10 msgid "Files" -msgstr "Файлове" +msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: js/fileactions.js:181 msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -138,13 +138,13 @@ msgstr "" #: js/files.js:224 msgid "Upload Error" -msgstr "Грешка при качване" +msgstr "" #: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "Качването е отменено." +msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" -msgstr "Име" +msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" -msgstr "Размер" +msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" -msgstr "Променено" +msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -211,7 +215,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Макс. размер за качване" +msgstr "" #: templates/admin.php:10 msgid "max. possible: " @@ -227,7 +231,7 @@ msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 означава без ограничение" +msgstr "" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -235,54 +239,54 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Запис" +msgstr "" #: templates/index.php:7 msgid "New" -msgstr "Нов" +msgstr "" #: templates/index.php:10 msgid "Text file" -msgstr "Текстов файл" +msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "Папка" +msgstr "" #: templates/index.php:14 msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" -msgstr "Качване" +msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" -msgstr "Отказване на качването" +msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Няма нищо, качете нещо!" +msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" -msgstr "Изтегляне" +msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" -msgstr "Файлът е прекалено голям" +msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." +msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." -msgstr "Файловете се претърсват, изчакайте." +msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 0db200dba5a..4a39877f9b5 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:33+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -15,20 +15,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" msgstr "" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" +#: templates/settings.php:6 +msgid "Enable Encryption" msgstr "" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" msgstr "" -#: templates/settings.php:10 -msgid "Enable Encryption" +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d4483eadffc..07efdf04dde 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \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" @@ -92,16 +92,16 @@ msgstr "" #: templates/settings.php:87 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/settings.php:95 msgid "Users" msgstr "" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "Изтриване" +msgstr "" #: templates/settings.php:124 msgid "Enable User External Storage" @@ -111,10 +111,10 @@ msgstr "" msgid "Allow users to mount their own external storage" msgstr "" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 3e75975fb63..b19492a550b 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \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" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index df3fc299453..c1f03bc1998 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \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" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Versions" msgstr "" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3ba99f9b10d..d32a2dfcb20 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \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" @@ -17,43 +17,43 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" -msgstr "Лично" +msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" @@ -63,7 +63,7 @@ msgstr "" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "" #: json.php:51 msgid "Token expired. Please reload page." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 37e75b3725c..774f68a7ee1 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \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" @@ -38,19 +38,19 @@ msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Е-пощата е записана" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неправилна е-поща" +msgstr "" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "OpenID е сменено" +msgstr "" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Невалидна заявка" +msgstr "" #: ajax/removegroup.php:13 msgid "Unable to delete group" @@ -58,7 +58,7 @@ msgstr "" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "" #: ajax/removeuser.php:24 msgid "Unable to delete user" @@ -66,7 +66,7 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Езика е сменен" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -84,15 +84,15 @@ msgstr "" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "Изключване" +msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "Включване" +msgstr "" #: js/personal.js:69 msgid "Saving..." -msgstr "Записване..." +msgstr "" #: personal.php:42 personal.php:43 msgid "__language_name__" @@ -108,7 +108,7 @@ msgstr "" #: templates/apps.php:27 msgid "Select an App" -msgstr "Изберете програма" +msgstr "" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "Клиенти" +msgstr "" #: templates/personal.php:13 msgid "Download Desktop Clients" @@ -165,7 +165,7 @@ msgstr "" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "Парола" +msgstr "" #: templates/personal.php:22 msgid "Your password was changed" @@ -173,43 +173,43 @@ msgstr "" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Невъзможна промяна на паролата" +msgstr "" #: templates/personal.php:24 msgid "Current password" -msgstr "Текуща парола" +msgstr "" #: templates/personal.php:25 msgid "New password" -msgstr "Нова парола" +msgstr "" #: templates/personal.php:26 msgid "show" -msgstr "показва" +msgstr "" #: templates/personal.php:27 msgid "Change password" -msgstr "Промяна на парола" +msgstr "" #: templates/personal.php:33 msgid "Email" -msgstr "Е-поща" +msgstr "" #: templates/personal.php:34 msgid "Your email address" -msgstr "Адресът на е-пощата ви" +msgstr "" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Въведете е-поща за възстановяване на паролата" +msgstr "" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" -msgstr "Език" +msgstr "" #: templates/personal.php:47 msgid "Help translate" -msgstr "Помощ за превода" +msgstr "" #: templates/personal.php:52 msgid "WebDAV" @@ -235,15 +235,15 @@ msgstr "" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "Име" +msgstr "" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "Групи" +msgstr "" #: templates/users.php:32 msgid "Create" -msgstr "Ново" +msgstr "" #: templates/users.php:35 msgid "Default Storage" @@ -255,7 +255,7 @@ msgstr "" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Друго" +msgstr "" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" @@ -271,4 +271,4 @@ msgstr "" #: templates/users.php:161 msgid "Delete" -msgstr "Изтриване" +msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 7d102e98bdf..bc621909341 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \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" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index b77ffa970b2..05f8507380b 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \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" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 97f28d3ba80..4e8475171c8 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "ফাইল" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "ভাগাভাগি বাতিল" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "মুছে ফেল" @@ -77,39 +77,39 @@ msgstr "মুছে ফেল" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "নাম সুপারিশ কর" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} ভাগাভাগি বাতিল কর" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} মুছে ফেলা হয়েছে" @@ -143,7 +143,7 @@ msgstr "আপলোড করতে সমস্যা" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "মুলতুবি" @@ -151,56 +151,60 @@ msgstr "মুলতুবি" msgid "1 file uploading" msgstr "১ টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে ।" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "নাম" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "আকার" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "ফোল্ডার" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "আপলোড" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "আপলোডের আকার অনেক বড়" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 45d57b363a4..a8bfbc51336 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 09:03+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,11 +70,11 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Suprimeix" @@ -82,39 +82,39 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substitueix" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "s'ha substituït {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfés" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "no compartits {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminats {files}" @@ -148,7 +148,7 @@ msgstr "Error en la pujada" msgid "Close" msgstr "Tanca" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendents" @@ -156,56 +156,60 @@ msgstr "Pendents" msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Mida" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxers" @@ -257,36 +261,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Puja" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Baixa" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 6f8f77861d1..0b959886042 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 06:21+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Smazat" @@ -79,39 +79,39 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradit" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "nahrazeno {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "zpět" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "sdílení zrušeno pro {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "smazáno {files}" @@ -145,7 +145,7 @@ msgstr "Chyba odesílání" msgid "Close" msgstr "Zavřít" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čekající" @@ -153,56 +153,60 @@ msgstr "Čekající" msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 složka" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 soubor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} soubory" @@ -254,36 +258,36 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odeslat" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/da/files.po b/l10n/da/files.po index 4e1159fc948..0a8c4d05119 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -72,11 +72,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slet" @@ -84,39 +84,39 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstat" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstattede {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettede {files}" @@ -150,7 +150,7 @@ msgstr "Fejl ved upload" msgid "Close" msgstr "Luk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Afventer" @@ -158,56 +158,60 @@ msgstr "Afventer" msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -259,36 +263,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/de/core.po b/l10n/de/core.po index d4b5f08b8f2..3a66b45941b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,7 +7,7 @@ # , 2011. # , 2012. # , 2011. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # , 2012. @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 13:25+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" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -583,7 +583,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de/files.po b/l10n/de/files.po index c2ef3a1360d..5bf3f95305a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -82,11 +82,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -94,49 +94,49 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe von {files} aufgehoben" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:45 msgid "" @@ -160,7 +160,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +168,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +273,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload zu groß" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 9ae1355f88a..b0ce05ca25c 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -16,15 +16,16 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 10:38+0000\n" +"Last-Translator: Valermos \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" @@ -98,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -582,7 +583,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 2712cb099bf..366e965b6cb 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -6,7 +6,7 @@ # , 2012. # , 2012-2013. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -18,6 +18,7 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # Thomas Müller <>, 2012. # , 2012. @@ -25,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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 +73,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "Nicht genug Speicher verfügbar" +msgstr "Nicht genügend Speicherplatz verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." @@ -82,11 +83,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Löschen" @@ -94,49 +95,49 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe für {files} beendet" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:45 msgid "" @@ -160,7 +161,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +169,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +274,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Bitte laden Sie etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6ea3d727114..dbac2bf8a9e 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -71,11 +71,11 @@ msgstr "" msgid "Files" msgstr "Αρχεία" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Διακοπή κοινής χρήσης" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Διαγραφή" @@ -83,39 +83,39 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} αντικαταστάθηκε" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "μη διαμοιρασμένα {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "διαγραμμένα {files}" @@ -149,7 +149,7 @@ msgstr "Σφάλμα Αποστολής" msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Εκκρεμεί" @@ -157,56 +157,60 @@ msgstr "Εκκρεμεί" msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} αρχεία" @@ -258,36 +262,36 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Αποστολή" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Λήψη" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Τρέχουσα αναζήτηση " diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 9a51714012a..3e25e7bc068 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Forigi" @@ -78,39 +78,39 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "anstataŭiĝis {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "malfari" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "malkunhaviĝis {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "foriĝis {files}" @@ -144,7 +144,7 @@ msgstr "Alŝuta eraro" msgid "Close" msgstr "Fermi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Traktotaj" @@ -152,56 +152,60 @@ msgstr "Traktotaj" msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosierujoj" @@ -253,36 +257,36 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Alŝuti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Elŝuto tro larĝa" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/files.po b/l10n/es/files.po index 21ff8e3ba72..0ecf49cede7 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:50+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +72,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -84,39 +84,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" @@ -150,7 +150,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "cerrrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -158,56 +158,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -259,36 +263,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde el enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 54b39b3cc7b..0ffc39a7aa6 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Borrar" @@ -78,39 +78,39 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} se dejaron de compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} borrados" @@ -144,7 +144,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "Cerrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -152,56 +152,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -253,36 +257,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 0f0c412ea06..cca8c5dab85 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Failid" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Kustuta" @@ -78,39 +78,39 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "asenda" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "loobu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "asendatud nimega {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "tagasi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "kustutatud {files}" @@ -144,7 +144,7 @@ msgstr "Üleslaadimise viga" msgid "Close" msgstr "Sulge" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ootel" @@ -152,56 +152,60 @@ msgstr "Ootel" msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fail" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} faili" @@ -253,36 +257,36 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lae üles" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lae alla" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index ddd92ff0f3b..e575e56c4e1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Fitxategiak" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ezabatu" @@ -79,39 +79,39 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ordezkatua {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desegin" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "elkarbanaketa utzita {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ezabatuta {files}" @@ -145,7 +145,7 @@ msgstr "Igotzean errore bat suertatu da" msgid "Close" msgstr "Itxi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Zain" @@ -153,56 +153,60 @@ msgstr "Zain" msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxategi" @@ -254,36 +258,36 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Igo" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Igotakoa handiegia da" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 8ca4747a57a..38ecc85ef7d 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "فایل ها" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "پاک کردن" @@ -79,39 +79,39 @@ msgstr "پاک کردن" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "لغو" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "خطا در بار گذاری" msgid "Close" msgstr "بستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "در انتظار" @@ -153,56 +153,60 @@ msgstr "در انتظار" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "نام" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "اندازه" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "پوشه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارگذاری" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "بارگیری" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "حجم بارگذاری بسیار زیاد است" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index a2dbb70ba56..b35241e5b6a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Poista" @@ -81,39 +81,39 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "korvaa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "peru" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "kumoa" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -147,7 +147,7 @@ msgstr "Lähetysvirhe." msgid "Close" msgstr "Sulje" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Odottaa" @@ -155,56 +155,60 @@ msgstr "Odottaa" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tiedostoa" @@ -256,36 +260,36 @@ msgstr "Kansio" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lähetä" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lataa" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 61dd57bd6f4..8e5c52a6d69 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 15:26+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,11 +76,11 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Supprimer" @@ -88,39 +88,39 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplacer" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuler" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} a été remplacé" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annuler" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Fichiers non partagés : {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" @@ -154,7 +154,7 @@ msgstr "Erreur de chargement" msgid "Close" msgstr "Fermer" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "En cours" @@ -162,56 +162,60 @@ msgstr "En cours" msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Taille" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fichier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fichiers" @@ -263,36 +267,36 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Envoyer" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" -msgstr "Téléchargement" +msgstr "Télécharger" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 991b1aa060e..cba7bd650c1 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eliminar" @@ -78,39 +78,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituír" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituír {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} polo {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" @@ -144,7 +144,7 @@ msgstr "Erro na subida" msgid "Close" msgstr "Pechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendentes" @@ -152,56 +152,60 @@ msgstr "Pendentes" msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -253,36 +257,36 @@ msgstr "Cartafol" msgid "From link" msgstr "Dende a ligazón" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envía algo." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5e4c82a7dc7..e93795fb25d 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "קבצים" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "הסר שיתוף" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "מחיקה" @@ -80,39 +80,39 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "החלפה" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} הוחלף" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ביטול" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "בוטל שיתופם של {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} נמחקו" @@ -146,7 +146,7 @@ msgstr "שגיאת העלאה" msgid "Close" msgstr "סגירה" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "ממתין" @@ -154,56 +154,60 @@ msgstr "ממתין" msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "שם" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "גודל" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} קבצים" @@ -255,36 +259,36 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "העלאה" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "הורדה" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 16c322352c8..b20dbb788e8 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f704578fce1..7d7b02fd4d1 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Briši" @@ -79,39 +79,39 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "odustani" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrati" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "Pogreška pri slanju" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "U tijeku" @@ -153,56 +153,60 @@ msgstr "U tijeku" msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index cb4ea383437..600b37964f5 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 70bb805b100..213d6168db3 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # , 2011. # Peter Borsa , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -57,21 +58,21 @@ msgstr "Nem sikerült a lemezre történő írás" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nincs elég szabad hely" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Érvénytelen mappa." #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Megosztás visszavonása" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Törlés" @@ -79,49 +80,49 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "mégse" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "a(z) {new_name} állományt kicseréltük" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} fájl megosztása visszavonva" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} fájl törölve" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' fájlnév érvénytelen." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "A fájlnév nem lehet semmi." #: js/files.js:45 msgid "" @@ -145,7 +146,7 @@ msgstr "Feltöltési hiba" msgid "Close" msgstr "Bezárás" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Folyamatban" @@ -153,56 +154,60 @@ msgstr "Folyamatban" msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fájlt találtunk" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fájl" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fájl" @@ -254,36 +259,36 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Feltöltés" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Letöltés" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b00e728cc43..b307301795c 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # Peter Borsa , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:17+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \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" @@ -246,11 +247,11 @@ msgstr "Létrehozás" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Alapértelmezett tárhely" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Korlátlan" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,11 +263,11 @@ msgstr "Csoportadminisztrátor" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Tárhely" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 655c88dd46a..3e8274293c3 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:19+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \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" @@ -108,7 +109,7 @@ msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 679f4b62cb6..587a5efe02f 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Deler" @@ -78,39 +78,39 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "Close" msgstr "Clauder" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomine" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Incargar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Discargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7f8b49e2fe4..6984dd0ee54 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Berkas" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Hapus" @@ -79,39 +79,39 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "mengganti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -145,7 +145,7 @@ msgstr "Terjadi Galat Pengunggahan" msgid "Close" msgstr "tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Menunggu" @@ -153,56 +153,60 @@ msgstr "Menunggu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,36 +258,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Unggah" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Unduh" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/is/files.po b/l10n/is/files.po index 32e2dbdcf87..6276c7b4e00 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Skrár" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Hætta deilingu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Eyða" @@ -77,39 +77,39 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "endurskýrði {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Hætti við deilingu á {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eyddi {files}" @@ -143,7 +143,7 @@ msgstr "Villa við innsendingu" msgid "Close" msgstr "Loka" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bíður" @@ -151,56 +151,60 @@ msgstr "Bíður" msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 skrá" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} skrár" @@ -252,36 +256,36 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Senda inn" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Sendu eitthvað inn!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Innsend skrá of stór" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/it/files.po b/l10n/it/files.po index 6787dcc3044..64cad51ff92 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 05:17+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Elimina" @@ -80,39 +80,39 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annulla" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "sostituito {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "annulla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminati {files}" @@ -146,7 +146,7 @@ msgstr "Errore di invio" msgid "Close" msgstr "Chiudi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "In corso" @@ -154,56 +154,60 @@ msgstr "In corso" msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 file" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} file" @@ -255,36 +259,36 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carica" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Scarica" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 026f90dc6ac..f3790f0f9a2 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 00:40+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "共有しない" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "削除" @@ -80,39 +80,39 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "置き換え" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} を置換" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未共有 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "削除 {files}" @@ -146,7 +146,7 @@ msgstr "アップロードエラー" msgid "Close" msgstr "閉じる" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "保留" @@ -154,56 +154,60 @@ msgstr "保留" msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名前" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "サイズ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "更新日時" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ファイル" @@ -255,36 +259,36 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "アップロード" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ファイルサイズが大きすぎます" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 3f8e2c3e87c..f1a23bb260f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "ფაილები" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "წაშლა" @@ -77,39 +77,39 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} შეცვლილია" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "გაზიარება მოხსნილი {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "წაშლილი {files}" @@ -143,7 +143,7 @@ msgstr "შეცდომა ატვირთვისას" msgid "Close" msgstr "დახურვა" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -151,56 +151,60 @@ msgstr "მოცდის რეჟიმში" msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "სახელი" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ზომა" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ფაილი" @@ -252,36 +256,36 @@ msgstr "საქაღალდე" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "ატვირთვა" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 23e43f6d39b..d31779d730d 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:05+0000\n" -"Last-Translator: aoiob4305 \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,11 +68,11 @@ msgstr "올바르지 않은 디렉토리입니다." msgid "Files" msgstr "파일" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "공유 해제" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "삭제" @@ -80,39 +80,39 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "취소" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name}을(를) 대체함" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "실행 취소" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} 공유 해제됨" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} 삭제됨" @@ -146,7 +146,7 @@ msgstr "업로드 오류" msgid "Close" msgstr "닫기" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "보류 중" @@ -154,56 +154,60 @@ msgstr "보류 중" msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "이름" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "크기" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "수정됨" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "파일 1개" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "파일 {count}개" @@ -255,36 +259,36 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "업로드" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "다운로드" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "업로드 용량 초과" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index bf21806a1e4..dd24d811c53 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "داخستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ناو" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "بارکردن" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "داگرتن" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index eb374969b91..37c47936f03 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Läschen" @@ -77,39 +77,39 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "Fehler beim eroplueden" msgid "Close" msgstr "Zoumaachen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Numm" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Eroplueden" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 00d6ea26c63..cb1637670d3 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Failai" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Ištrinti" @@ -79,39 +79,39 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "pakeiskite {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ištrinti {files}" @@ -145,7 +145,7 @@ msgstr "Įkėlimo klaida" msgid "Close" msgstr "Užverti" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Laukiantis" @@ -153,56 +153,60 @@ msgstr "Laukiantis" msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 failas" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} failai" @@ -254,36 +258,36 @@ msgstr "Katalogas" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Įkelti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 3c9ffdcae22..b7b9f2ce1ea 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Faili" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Pārtraukt līdzdalīšanu" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izdzēst" @@ -78,39 +78,39 @@ msgstr "Izdzēst" msgid "Rename" msgstr "Pārdēvēt" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vienu soli atpakaļ" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "Augšuplādēšanas laikā radās kļūda" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Gaida savu kārtu" @@ -152,56 +152,60 @@ msgstr "Gaida savu kārtu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nosaukums" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Mape" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Augšuplādet" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atcelt augšuplādi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lejuplādēt" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fails ir par lielu lai to augšuplādetu" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index d69548174d3..ac3fce69d33 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Датотеки" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Не споделувај" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Избриши" @@ -79,39 +79,39 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "земенета {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "врати" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "без споделување {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "избришани {files}" @@ -145,7 +145,7 @@ msgstr "Грешка при преземање" msgid "Close" msgstr "Затвои" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Чека" @@ -153,56 +153,60 @@ msgstr "Чека" msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Големина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променето" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеки" @@ -254,36 +258,36 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Подигни" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Преземи" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотеката е премногу голема" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b83093920bc..430797847d4 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "fail" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Padam" @@ -80,39 +80,39 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ganti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "Batal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -146,7 +146,7 @@ msgstr "Muat naik ralat" msgid "Close" msgstr "Tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Dalam proses" @@ -154,56 +154,60 @@ msgstr "Dalam proses" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama " -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -255,36 +259,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Muat naik" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Muat turun" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 02e048476e0..e8d80a8549d 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -73,11 +73,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -85,39 +85,39 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstatt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstatt {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "angre" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettet {files}" @@ -151,7 +151,7 @@ msgstr "Opplasting feilet" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ventende" @@ -159,56 +159,60 @@ msgstr "Ventende" msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -260,36 +264,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Opplasting for stor" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 02a558e9550..87bdade255a 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 20:51+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -75,11 +75,11 @@ msgstr "Ongeldige directory." msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Verwijder" @@ -87,39 +87,39 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "vervang" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "verving {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "verwijderde {files}" @@ -153,7 +153,7 @@ msgstr "Upload Fout" msgid "Close" msgstr "Sluit" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Wachten" @@ -161,56 +161,60 @@ msgstr "Wachten" msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 map" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 bestand" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} bestanden" @@ -262,36 +266,36 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 65d549c7677..be388e42dbb 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Slett" @@ -78,39 +78,39 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "Mappe" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 64d593447d7..389d8fc73e0 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Escafa" @@ -77,39 +77,39 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplaça" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulla" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "defar" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "Error d'amontcargar" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Al esperar" @@ -151,56 +151,60 @@ msgstr "Al esperar" msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Talha" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Amontcarga" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index dd91b1fa48b..997678ba5a7 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -71,11 +71,11 @@ msgstr "" msgid "Files" msgstr "Pliki" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Usuwa element" @@ -83,39 +83,39 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zastap" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zastąpiony {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "wróć" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiony {new_name} z {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Udostępniane wstrzymane {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "usunięto {files}" @@ -149,7 +149,7 @@ msgstr "Błąd wczytywania" msgid "Close" msgstr "Zamknij" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Oczekujące" @@ -157,56 +157,60 @@ msgstr "Oczekujące" msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 plik" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} pliki" @@ -258,36 +262,36 @@ msgstr "Katalog" msgid "From link" msgstr "Z linku" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Prześlij" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 10cc6d26079..4459abeae13 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1c9143612bb..7f0d53fee34 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -72,11 +72,11 @@ msgstr "" msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Excluir" @@ -84,39 +84,39 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituído {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não compartilhados" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} apagados" @@ -150,7 +150,7 @@ msgstr "Erro de envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -158,56 +158,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} arquivos" @@ -259,36 +263,36 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carregar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Baixar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b7491efa10f..55b05e3b899 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. # , 2011, 2012. # Helder Meneses , 2012. @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 00:22+0000\n" +"Last-Translator: Mouxy \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" @@ -89,55 +89,55 @@ msgstr "Erro a remover %s dos favoritos." msgid "Settings" msgstr "Definições" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Falta 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoje" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ontem" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultímo mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ano passado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -573,7 +573,7 @@ msgstr "seguinte" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 819ff9bb9f0..e3af44436bc 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Apagar" @@ -81,49 +81,49 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não partilhado(s)" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminado(s)" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' não é um nome de ficheiro válido!" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "O nome do ficheiro não pode estar vazio." #: js/files.js:45 msgid "" @@ -147,7 +147,7 @@ msgstr "Erro no envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -155,56 +155,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -256,36 +260,36 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Transferir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envio muito grande" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 74947c210f5..a52871f402b 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +69,11 @@ msgstr "" msgid "Files" msgstr "Fișiere" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Șterge" @@ -81,39 +81,39 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulare" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "inlocuit {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nedistribuit {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Sterse {files}" @@ -147,7 +147,7 @@ msgstr "Eroare la încărcare" msgid "Close" msgstr "Închide" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "În așteptare" @@ -155,56 +155,60 @@ msgstr "În așteptare" msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fisier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fisiere" @@ -256,36 +260,36 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Încarcă" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descarcă" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 3edf01da676..8f6c9565309 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -74,11 +74,11 @@ msgstr "" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Отменить публикацию" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -86,39 +86,39 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заменить" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отмена" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отмена" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "не опубликованные {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удаленные {files}" @@ -152,7 +152,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидание" @@ -160,56 +160,60 @@ msgstr "Ожидание" msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Название" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменён" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлов" @@ -261,36 +265,36 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Скачать" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл слишком большой" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a05762104ac..ac7059821d7 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Удалить" @@ -78,39 +78,39 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{новое_имя} уже существует" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "отмена" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "отменить" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "заменено {новое_имя}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "заменено {новое_имя} с {старое_имя}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Cовместное использование прекращено {файлы}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "удалено {файлы}" @@ -144,7 +144,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидающий решения" @@ -152,56 +152,60 @@ msgstr "Ожидающий решения" msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Имя" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменен" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{количество} файлов" @@ -253,36 +257,36 @@ msgstr "Папка" msgid "From link" msgstr "По ссылке" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Загрузить " -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Загрузить" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Загрузка слишком велика" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файлы сканируются, пожалуйста, подождите." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 226a32f5c7e..11ed7c5d453 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "ගොනු" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "නොබෙදු" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "මකන්න" @@ -78,39 +78,39 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -144,7 +144,7 @@ msgstr "උඩුගත කිරීමේ දෝශයක්" msgid "Close" msgstr "වසන්න" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +152,60 @@ msgstr "" msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "නම" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,36 +257,36 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "උඩුගත කිරීම" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "බාගත කිරීම" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 353efc86e43..2cdb6444590 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Súbory" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Nezdielať" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Odstrániť" @@ -80,39 +80,39 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "prepísaný {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "zdieľanie zrušené pre {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "zmazané {files}" @@ -146,7 +146,7 @@ msgstr "Chyba odosielania" msgid "Close" msgstr "Zavrieť" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čaká sa" @@ -154,56 +154,60 @@ msgstr "Čaká sa" msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 súbor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} súborov" @@ -255,36 +259,36 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odoslať" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odosielaný súbor je príliš veľký" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Práve prehliadané" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f860a206607..1830b257af0 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Izbriši" @@ -80,39 +80,39 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zamenjano je ime {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "izbrisano {files}" @@ -146,7 +146,7 @@ msgstr "Napaka med nalaganjem" msgid "Close" msgstr "Zapri" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "V čakanju ..." @@ -154,56 +154,60 @@ msgstr "V čakanju ..." msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} datotek" @@ -255,36 +259,36 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošlji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Prejmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 630aae282ae..de7fb9dc0e1 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index e9bbfde5224..87237d1608e 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Датотеке" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Укини дељење" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Обриши" @@ -79,39 +79,39 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "замени" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "откажи" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замењено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "опозови" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "укинуто дељење {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "обрисано {files}" @@ -145,7 +145,7 @@ msgstr "Грешка при отпремању" msgid "Close" msgstr "Затвори" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "На чекању" @@ -153,56 +153,60 @@ msgstr "На чекању" msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Назив" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Величина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Измењено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеке/а" @@ -254,36 +258,36 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Отпреми" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Преузми" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 05623f16057..88f665807ac 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Obriši" @@ -77,39 +77,39 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -143,7 +143,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +151,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,36 +256,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 8363e4c37a6..ab8cb18858d 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -70,11 +70,11 @@ msgstr "Felaktig mapp." msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Radera" @@ -82,39 +82,39 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersätt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ersatt {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "ångra" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "raderade {files}" @@ -148,7 +148,7 @@ msgstr "Uppladdningsfel" msgid "Close" msgstr "Stäng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Väntar" @@ -156,56 +156,60 @@ msgstr "Väntar" msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -257,36 +261,36 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Ladda upp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 159a5621888..3d07c851a95 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -65,11 +65,11 @@ msgstr "" msgid "Files" msgstr "கோப்புகள்" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "அழிக்க" @@ -77,39 +77,39 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "மாற்றப்பட்டது {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "பகிரப்படாதது {கோப்புகள்}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" @@ -143,7 +143,7 @@ msgstr "பதிவேற்றல் வழு" msgid "Close" msgstr "மூடுக" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -151,56 +151,60 @@ msgstr "நிலுவையிலுள்ள" msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "பெயர்" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "அளவு" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -252,36 +256,36 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e0e6d5cdd17..5427372f7ab 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 52d1d0fcdd3..e4cd6b3fe97 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 76907a7fb04..65df77d5574 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a0359bc4ff7..ceeff849fb8 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 023ef632745..7713ffeb8ed 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a80a2b98e32..6cd39fb586a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d8b090078b5..2e21994f8e1 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c0a40761420..9305c50aa37 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 86251355228..7368c2c5073 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index fd9c1cef4d1..c24434bebe4 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2a74335e2b3..b0b1b317fda 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "ลบ" @@ -78,39 +78,39 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "แทนที่ {new_name} แล้ว" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" @@ -144,7 +144,7 @@ msgstr "เกิดข้อผิดพลาดในการอัพโห msgid "Close" msgstr "ปิด" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -152,56 +152,60 @@ msgstr "อยู่ระหว่างดำเนินการ" msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ชื่อ" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ขนาด" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ไฟล์" @@ -253,36 +257,36 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "อัพโหลด" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c04a2d2ebd1..4e3a4f7b763 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "" msgid "Files" msgstr "Dosyalar" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Sil" @@ -81,39 +81,39 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "değiştir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "iptal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "değiştirilen {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "geri al" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "paylaşılmamış {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "silinen {files}" @@ -147,7 +147,7 @@ msgstr "Yükleme hatası" msgid "Close" msgstr "Kapat" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bekliyor" @@ -155,56 +155,60 @@ msgstr "Bekliyor" msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosya" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosya" @@ -256,36 +260,36 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Yükle" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "İndir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index eb36e0d5bc2..a7c8eb48db0 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -67,11 +67,11 @@ msgstr "" msgid "Files" msgstr "Файли" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Заборонити доступ" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Видалити" @@ -79,39 +79,39 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "заміна" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "відміна" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "замінено {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "відмінити" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "неопубліковано {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "видалено {files}" @@ -145,7 +145,7 @@ msgstr "Помилка завантаження" msgid "Close" msgstr "Закрити" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Очікування" @@ -153,56 +153,60 @@ msgstr "Очікування" msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ім'я" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Розмір" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Змінено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлів" @@ -254,36 +258,36 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Відвантажити" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Завантажити" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 3fae659a1dc..d8c69f7cf39 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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,11 +68,11 @@ msgstr "" msgid "Files" msgstr "Tập tin" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "Không chia sẽ" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "Xóa" @@ -80,39 +80,39 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "thay thế" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hủy" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "đã thay thế {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "hủy chia sẽ {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "đã xóa {files}" @@ -146,7 +146,7 @@ msgstr "Tải lên lỗi" msgid "Close" msgstr "Đóng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Chờ" @@ -154,56 +154,60 @@ msgstr "Chờ" msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tập tin" @@ -255,36 +259,36 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Tải lên" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Tải xuống" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 42c58c88cbf..959861ec8a4 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -66,11 +66,11 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -78,39 +78,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已替换 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "未分享的 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "已删除的 {files}" @@ -144,7 +144,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pending" @@ -152,56 +152,60 @@ msgstr "Pending" msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名字" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -253,36 +257,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传的文件太大了" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 2ce09f94756..902c189173c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -69,11 +69,11 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消分享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "删除" @@ -81,39 +81,39 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "替换" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "替换 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "撤销" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "取消了共享 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "删除了 {files}" @@ -147,7 +147,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "操作等待中" @@ -155,56 +155,60 @@ msgstr "操作等待中" msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -256,36 +260,36 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上传" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下载" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 5c06f6af94d..f992ea0de48 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5dda16d794a..280e082e48b 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+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" @@ -68,11 +68,11 @@ msgstr "" msgid "Files" msgstr "檔案" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "取消共享" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "刪除" @@ -80,39 +80,39 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "取代" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "取消" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "已取代 {new_name}" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "復原" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -146,7 +146,7 @@ msgstr "上傳發生錯誤" msgid "Close" msgstr "關閉" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -154,56 +154,60 @@ msgstr "" msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中. 離開此頁面將會取消上傳." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名稱" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 個檔案" @@ -255,36 +259,36 @@ msgstr "資料夾" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "上傳" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "沒有任何東西。請上傳內容!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "下載" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你試圖上傳的檔案已超過伺服器的最大容量限制。 " -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 2760f9f95af..bf2e0ce6151 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -64,11 +64,11 @@ msgstr "" msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "" @@ -76,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +150,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." msgstr "" -#: js/files.js:711 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,36 +255,36 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "" -#: templates/index.php:106 +#: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "" diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 5fdc11e44f9..26a52bd616c 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -53,7 +53,11 @@ "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", +"Default Storage" => "Alapértelmezett tárhely", +"Unlimited" => "Korlátlan", "Other" => "Más", "Group Admin" => "Csoportadminisztrátor", +"Storage" => "Tárhely", +"Default" => "Alapértelmezett", "Delete" => "Törlés" ); -- cgit v1.2.3 From 912050afa0bd963fdde7d7b223c32bb9bd8e1479 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 10 Jan 2013 00:05:53 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/bg_BG.php | 28 ++++++-------- apps/files/l10n/ca.php | 2 + apps/files/l10n/cs_CZ.php | 2 + apps/files/l10n/da.php | 1 + apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 1 + apps/files/l10n/el.php | 1 + apps/files/l10n/eo.php | 1 + apps/files/l10n/es.php | 1 + apps/files/l10n/es_AR.php | 1 + apps/files/l10n/et_EE.php | 1 + apps/files/l10n/eu.php | 1 + apps/files/l10n/fi_FI.php | 4 ++ apps/files/l10n/fr.php | 2 + apps/files/l10n/gl.php | 1 + apps/files/l10n/he.php | 1 + apps/files/l10n/hu_HU.php | 1 + apps/files/l10n/id.php | 1 + apps/files/l10n/is.php | 1 + apps/files/l10n/it.php | 2 + apps/files/l10n/ja_JP.php | 2 + apps/files/l10n/ko.php | 1 + apps/files/l10n/ku_IQ.php | 1 + apps/files/l10n/mk.php | 1 + apps/files/l10n/nb_NO.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 6 +++ apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/ro.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/ru_RU.php | 1 + apps/files/l10n/si_LK.php | 1 + apps/files/l10n/sk_SK.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/sv.php | 4 ++ apps/files/l10n/ta_LK.php | 1 + apps/files/l10n/th_TH.php | 1 + apps/files/l10n/tr.php | 1 + apps/files/l10n/uk.php | 1 + apps/files/l10n/vi.php | 1 + apps/files/l10n/zh_CN.GB2312.php | 1 + apps/files/l10n/zh_CN.php | 1 + apps/files/l10n/zh_TW.php | 14 +++++++ apps/files_encryption/l10n/bg_BG.php | 6 +++ apps/files_external/l10n/bg_BG.php | 16 +++++++- apps/files_sharing/l10n/bg_BG.php | 9 +++++ apps/files_versions/l10n/bg_BG.php | 6 +++ apps/user_ldap/l10n/bg_BG.php | 4 ++ apps/user_webdavauth/l10n/fr.php | 3 +- core/l10n/bg_BG.php | 63 +++++--------------------------- core/l10n/pl.php | 1 + core/l10n/sv.php | 1 + core/l10n/zh_TW.php | 11 ++++++ l10n/ar/files.po | 18 ++++++++- l10n/bg_BG/core.po | 36 +++++++++--------- l10n/bg_BG/files.po | 60 ++++++++++++++++++------------ l10n/bg_BG/files_encryption.po | 15 ++++---- l10n/bg_BG/files_external.po | 39 ++++++++++---------- l10n/bg_BG/files_sharing.po | 21 ++++++----- l10n/bg_BG/files_versions.po | 15 ++++---- l10n/bg_BG/lib.po | 71 ++++++++++++++++++------------------ l10n/bg_BG/settings.po | 16 ++++---- l10n/bg_BG/user_ldap.po | 6 +-- l10n/bn_BD/files.po | 18 ++++++++- l10n/ca/files.po | 22 +++++++++-- l10n/cs_CZ/files.po | 22 +++++++++-- l10n/da/files.po | 20 ++++++++-- l10n/de/files.po | 20 ++++++++-- l10n/de_DE/files.po | 20 ++++++++-- l10n/el/files.po | 20 ++++++++-- l10n/eo/files.po | 20 ++++++++-- l10n/es/files.po | 20 ++++++++-- l10n/es_AR/files.po | 20 ++++++++-- l10n/et_EE/files.po | 20 ++++++++-- l10n/eu/files.po | 20 ++++++++-- l10n/fa/files.po | 18 ++++++++- l10n/fi_FI/files.po | 26 ++++++++++--- l10n/fr/files.po | 22 +++++++++-- l10n/fr/user_webdavauth.po | 9 +++-- l10n/gl/files.po | 20 ++++++++-- l10n/he/files.po | 20 ++++++++-- l10n/hi/files.po | 18 ++++++++- l10n/hr/files.po | 18 ++++++++- l10n/hu/files.po | 18 ++++++++- l10n/hu_HU/files.po | 20 ++++++++-- l10n/ia/files.po | 18 ++++++++- l10n/id/files.po | 20 ++++++++-- l10n/is/files.po | 20 ++++++++-- l10n/it/files.po | 22 +++++++++-- l10n/ja_JP/files.po | 22 +++++++++-- l10n/ka_GE/files.po | 18 ++++++++- l10n/ko/files.po | 20 ++++++++-- l10n/ku_IQ/files.po | 20 ++++++++-- l10n/lb/files.po | 18 ++++++++- l10n/lt_LT/files.po | 18 ++++++++- l10n/lv/files.po | 18 ++++++++- l10n/mk/files.po | 20 ++++++++-- l10n/ms_MY/files.po | 18 ++++++++- l10n/nb_NO/files.po | 20 ++++++++-- l10n/nl/files.po | 20 ++++++++-- l10n/nn_NO/files.po | 18 ++++++++- l10n/oc/files.po | 18 ++++++++- l10n/pl/core.po | 36 +++++++++--------- l10n/pl/files.po | 32 +++++++++++----- l10n/pl/settings.po | 40 ++++++++++---------- l10n/pl_PL/files.po | 18 ++++++++- l10n/pt_BR/files.po | 20 ++++++++-- l10n/pt_PT/files.po | 20 ++++++++-- l10n/ro/files.po | 20 ++++++++-- l10n/ru/files.po | 20 ++++++++-- l10n/ru_RU/files.po | 20 ++++++++-- l10n/si_LK/files.po | 20 ++++++++-- l10n/sk_SK/files.po | 20 ++++++++-- l10n/sl/files.po | 20 ++++++++-- l10n/sq/files.po | 18 ++++++++- l10n/sr/files.po | 18 ++++++++- l10n/sr@latin/files.po | 18 ++++++++- l10n/sv/core.po | 36 +++++++++--------- l10n/sv/files.po | 26 ++++++++++--- l10n/ta_LK/files.po | 20 ++++++++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 16 +++++++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 20 ++++++++-- l10n/tr/files.po | 20 ++++++++-- l10n/uk/files.po | 20 ++++++++-- l10n/vi/files.po | 20 ++++++++-- l10n/zh_CN.GB2312/files.po | 20 ++++++++-- l10n/zh_CN/files.po | 20 ++++++++-- l10n/zh_HK/files.po | 18 ++++++++- l10n/zh_TW/core.po | 55 ++++++++++++++-------------- l10n/zh_TW/files.po | 47 ++++++++++++++++-------- l10n/zu_ZA/files.po | 18 ++++++++- lib/l10n/bg_BG.php | 34 ++++++++++++++++- settings/l10n/bg_BG.php | 26 ++----------- settings/l10n/pl.php | 16 ++++++++ 144 files changed, 1543 insertions(+), 523 deletions(-) create mode 100644 apps/files_encryption/l10n/bg_BG.php create mode 100644 apps/files_sharing/l10n/bg_BG.php create mode 100644 apps/files_versions/l10n/bg_BG.php create mode 100644 apps/user_ldap/l10n/bg_BG.php (limited to 'core') diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b527b0e027f..bc10979611b 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,28 +1,22 @@ "Файлът е качен успешно", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", -"The uploaded file was only partially uploaded" => "Файлът е качен частично", -"No file was uploaded" => "Фахлът не бе качен", -"Missing a temporary folder" => "Липсва временната папка", -"Failed to write to disk" => "Грешка при запис на диска", +"Missing a temporary folder" => "Липсва временна папка", "Files" => "Файлове", "Delete" => "Изтриване", -"Upload Error" => "Грешка при качване", -"Upload cancelled." => "Качването е отменено.", +"Rename" => "Преименуване", +"replace" => "препокриване", +"cancel" => "отказ", +"undo" => "възтановяване", +"Upload cancelled." => "Качването е спряно.", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Maximum upload size" => "Макс. размер за качване", -"0 is unlimited" => "0 означава без ограничение", +"Maximum upload size" => "Максимален размер за качване", +"0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", -"New" => "Нов", -"Text file" => "Текстов файл", +"New" => "Ново", "Folder" => "Папка", "Upload" => "Качване", -"Cancel upload" => "Отказване на качването", -"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", +"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", -"Upload too large" => "Файлът е прекалено голям", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Upload too large" => "Файлът който сте избрали за качване е прекалено голям" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 224f0206e10..df099c6331d 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} fitxers en pujada", "Upload cancelled." => "La pujada s'ha cancel·lat.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", +"URL cannot be empty." => "La URL no pot ser buida", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", "{count} files scanned" => "{count} fitxers escannejats", "error while scanning" => "error durant l'escaneig", "Name" => "Nom", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index abd169245f9..301a54c343a 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -34,6 +34,8 @@ "{count} files uploading" => "odesílám {count} souborů", "Upload cancelled." => "Odesílání zrušeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", +"URL cannot be empty." => "URL nemůže být prázdná", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", "{count} files scanned" => "prozkoumáno {count} souborů", "error while scanning" => "chyba při prohledávání", "Name" => "Název", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index b5efe1b9136..02c177a2f1c 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", +"URL cannot be empty." => "URLen kan ikke være tom.", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 1b2694ecf04..1c0af30be5c 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} Dateien werden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", +"URL cannot be empty." => "Die URL darf nicht leer sein.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 7dd8d3dad51..a7526d35646 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} Dateien wurden hochgeladen", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", +"URL cannot be empty." => "Die URL darf nicht leer sein.", "{count} files scanned" => "{count} Dateien wurden gescannt", "error while scanning" => "Fehler beim Scannen", "Name" => "Name", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 4d87c06dd0f..3c1ac538091 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} αρχεία ανεβαίνουν", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", +"URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 478be98bf5c..92c03ee8826 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} dosieroj alŝutatas", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", +"URL cannot be empty." => "URL ne povas esti malplena.", "{count} files scanned" => "{count} dosieroj skaniĝis", "error while scanning" => "eraro dum skano", "Name" => "Nomo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index b4234e3f3e7..7489d3b555e 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -34,6 +34,7 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", +"URL cannot be empty." => "La URL no puede estar vacía.", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error escaneando", "Name" => "Nombre", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index a2e0a102aa6..6863f701e65 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -32,6 +32,7 @@ "{count} files uploading" => "Subiendo {count} archivos", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", +"URL cannot be empty." => "La URL no puede estar vacía", "{count} files scanned" => "{count} archivos escaneados", "error while scanning" => "error mientras se escaneaba", "Name" => "Nombre", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index a785651559f..6996b0a7918 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} faili üleslaadimist", "Upload cancelled." => "Üleslaadimine tühistati.", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", +"URL cannot be empty." => "URL ei saa olla tühi.", "{count} files scanned" => "{count} faili skännitud", "error while scanning" => "viga skännimisel", "Name" => "Nimi", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 83710f02866..96f59a668e9 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} fitxategi igotzen", "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", +"URL cannot be empty." => "URLa ezin da hutsik egon.", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 00f8ded5163..3847590c99e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -17,6 +17,8 @@ "suggest name" => "ehdota nimeä", "cancel" => "peru", "undo" => "kumoa", +"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", +"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", @@ -25,6 +27,7 @@ "Pending" => "Odottaa", "Upload cancelled." => "Lähetys peruttu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", +"URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", @@ -43,6 +46,7 @@ "New" => "Uusi", "Text file" => "Tekstitiedosto", "Folder" => "Kansio", +"From link" => "Linkistä", "Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 61ab0846784..9e911324d25 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} fichiers téléversés", "Upload cancelled." => "Chargement annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", +"URL cannot be empty." => "L'URL ne peut-être vide", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", "{count} files scanned" => "{count} fichiers indexés", "error while scanning" => "erreur lors de l'indexation", "Name" => "Nom", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index cf0238d7a79..5bd30e95d17 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -32,6 +32,7 @@ "{count} files uploading" => "{count} ficheiros subíndose", "Upload cancelled." => "Subida cancelada.", "File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.", +"URL cannot be empty." => "URL non pode quedar baleiro.", "{count} files scanned" => "{count} ficheiros escaneados", "error while scanning" => "erro mentres analizaba", "Name" => "Nome", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 7b4f910bce7..bac9a8a6a53 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", +"URL cannot be empty." => "קישור אינו יכול להיות ריק.", "{count} files scanned" => "{count} קבצים נסרקו", "error while scanning" => "אירעה שגיאה במהלך הסריקה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 4561d9c49e1..b0d46ee7a2c 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} fájl töltődik föl", "Upload cancelled." => "A feltöltést megszakítottuk.", "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 nem lehet semmi.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 1f8cb444d26..5d934e97e7b 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -17,6 +17,7 @@ "Close" => "tutup", "Pending" => "Menunggu", "Upload cancelled." => "Pengunggahan dibatalkan.", +"URL cannot be empty." => "tautan tidak boleh kosong", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 09312124f8a..b70d212c9c7 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} skrár innsendar", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", +"URL cannot be empty." => "Vefslóð má ekki vera tóm.", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e645d9b871a..8c3173d5d50 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} file in fase di caricamentoe", "Upload cancelled." => "Invio annullato", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", +"URL cannot be empty." => "L'URL non può essere vuoto.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud", "{count} files scanned" => "{count} file analizzati", "error while scanning" => "errore durante la scansione", "Name" => "Nome", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index fc82c8ef038..eab693c3431 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -34,6 +34,8 @@ "{count} files uploading" => "{count} ファイルをアップロード中", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", +"URL cannot be empty." => "URLは空にできません。", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。", "{count} files scanned" => "{count} ファイルをスキャン", "error while scanning" => "スキャン中のエラー", "Name" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 95667df7cbb..dd7df1c0862 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -34,6 +34,7 @@ "{count} files uploading" => "파일 {count}개 업로드 중", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", +"URL cannot be empty." => "URL을 입력해야 합니다.", "{count} files scanned" => "파일 {count}개 검색됨", "error while scanning" => "검색 중 오류 발생", "Name" => "이름", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 49995f8df86..d6cf6450792 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ "داخستن", +"URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Name" => "ناو", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 1b1c3946231..3f48a69874e 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", +"URL cannot be empty." => "Адресата неможе да биде празна.", "{count} files scanned" => "{count} датотеки скенирани", "error while scanning" => "грешка при скенирање", "Name" => "Име", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 1de39f021d4..9be868164b1 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -28,6 +28,7 @@ "{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", +"URL cannot be empty." => "URL-en kan ikke være tom.", "{count} files scanned" => "{count} filer lest inn", "error while scanning" => "feil under skanning", "Name" => "Navn", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 2421f1be65a..77219abcf20 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,6 +34,7 @@ "{count} files uploading" => "{count} bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", +"URL cannot be empty." => "URL kan niet leeg zijn.", "{count} files scanned" => "{count} bestanden gescanned", "error while scanning" => "Fout tijdens het scannen", "Name" => "Naam", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 7ac88664ae2..b96048cf002 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,6 +7,8 @@ "No file was uploaded" => "Nie przesłano żadnego pliku", "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", +"Not enough space available" => "Za mało miejsca", +"Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", "Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", @@ -20,6 +22,8 @@ "replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}", "unshared {files}" => "Udostępniane wstrzymane {files}", "deleted {files}" => "usunięto {files}", +"'.' is an invalid file name." => "'.' jest nieprawidłową nazwą pliku.", +"File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone.", "generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", @@ -30,6 +34,8 @@ "{count} files uploading" => "{count} przesyłanie plików", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.", +"URL cannot be empty." => "URL nie może być pusty.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud", "{count} files scanned" => "{count} pliki skanowane", "error while scanning" => "Wystąpił błąd podczas skanowania", "Name" => "Nazwa", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index decb30139eb..ece24c7a2fa 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -30,6 +30,7 @@ "{count} files uploading" => "Enviando {count} arquivos", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", +"URL cannot be empty." => "URL não pode ficar em branco", "{count} files scanned" => "{count} arquivos scaneados", "error while scanning" => "erro durante verificação", "Name" => "Nome", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 97ac32f77fe..447cd6bdeb6 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -34,6 +34,7 @@ "{count} files uploading" => "A carregar {count} ficheiros", "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", +"URL cannot be empty." => "O URL não pode estar vazio.", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index a8761984b65..b816311fac7 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} fisiere incarcate", "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", +"URL cannot be empty." => "Adresa URL nu poate fi goală.", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 53057ea0844..bbbeebc93d0 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} файлов загружается", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", +"URL cannot be empty." => "Ссылка не может быть пустой.", "{count} files scanned" => "{count} файлов просканировано", "error while scanning" => "ошибка во время санирования", "Name" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 8de277c4b78..16bcc54e59f 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{количество} загружено файлов", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", +"URL cannot be empty." => "URL не должен быть пустым.", "{count} files scanned" => "{количество} файлов отсканировано", "error while scanning" => "ошибка при сканировании", "Name" => "Имя", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index be33077f811..e1e06c4f814 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -20,6 +20,7 @@ "1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", "Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී", "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", +"URL cannot be empty." => "යොමුව හිස් විය නොහැක", "error while scanning" => "පරීක්ෂා කිරීමේදී දෝෂයක්", "Name" => "නම", "Size" => "ප්‍රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index abcb9358c0f..003b1aff225 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} súborov odosielaných", "Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", +"URL cannot be empty." => "URL nemôže byť prázdne", "{count} files scanned" => "{count} súborov prehľadaných", "error while scanning" => "chyba počas kontroly", "Name" => "Meno", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 7d1594da063..2a0f4506386 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -30,6 +30,7 @@ "{count} files uploading" => "nalagam {count} datotek", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", +"URL cannot be empty." => "Naslov URL ne sme biti prazen.", "{count} files scanned" => "{count} files scanned", "error while scanning" => "napaka med pregledovanjem datotek", "Name" => "Ime", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index b5c9049de2c..7277ec17852 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -22,6 +22,8 @@ "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "unshared {files}" => "stoppad delning {files}", "deleted {files}" => "raderade {files}", +"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", +"File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", @@ -32,6 +34,8 @@ "{count} files uploading" => "{count} filer laddas upp", "Upload cancelled." => "Uppladdning avbruten.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", +"URL cannot be empty." => "URL kan inte vara tom.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "{count} files scanned" => "{count} filer skannade", "error while scanning" => "fel vid skanning", "Name" => "Namn", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 7edaf8e4252..16cab5cf963 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", +"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது", "error while scanning" => "வருடும் போதான வழு", "Name" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 214cef925df..3fda142a4e9 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -30,6 +30,7 @@ "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", +"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "Name" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 7b251d0b8eb..b32da7de25e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} dosya yükleniyor", "Upload cancelled." => "Yükleme iptal edildi.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", +"URL cannot be empty." => "URL boş olamaz.", "{count} files scanned" => "{count} dosya tarandı", "error while scanning" => "tararamada hata oluşdu", "Name" => "Ad", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3a026af6965..eba48a41cb6 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} файлів завантажується", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", +"URL cannot be empty." => "URL не може бути пустим.", "{count} files scanned" => "{count} файлів проскановано", "error while scanning" => "помилка при скануванні", "Name" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 3f4d887b57b..7d5c5290502 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -29,6 +29,7 @@ "{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", +"URL cannot be empty." => "URL không được để trống.", "{count} files scanned" => "{count} tập tin đã được quét", "error while scanning" => "lỗi trong khi quét", "Name" => "Tên", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index cad4b95c6aa..e60df8291a9 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -28,6 +28,7 @@ "{count} files uploading" => "{count} 个文件正在上传", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", +"URL cannot be empty." => "网址不能为空。", "{count} files scanned" => "{count} 个文件已扫描", "error while scanning" => "扫描出错", "Name" => "名字", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 7f2bba35e7f..0b26a4b174f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -30,6 +30,7 @@ "{count} files uploading" => "{count} 个文件上传中", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", +"URL cannot be empty." => "URL不能为空", "{count} files scanned" => "{count} 个文件已扫描。", "error while scanning" => "扫描时出错", "Name" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index ae2430106da..03ced5f0cbf 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,29 +1,42 @@ "沒有檔案被上傳. 未知的錯誤.", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", "The uploaded file was only partially uploaded" => "只有部分檔案被上傳", "No file was uploaded" => "無已上傳檔案", "Missing a temporary folder" => "遺失暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", +"Not enough space available" => "沒有足夠的可用空間", +"Invalid directory." => "無效的資料夾。", "Files" => "檔案", "Unshare" => "取消共享", "Delete" => "刪除", "Rename" => "重新命名", "{new_name} already exists" => "{new_name} 已經存在", "replace" => "取代", +"suggest name" => "建議檔名", "cancel" => "取消", "replaced {new_name}" => "已取代 {new_name}", "undo" => "復原", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", +"unshared {files}" => "停止分享 {files}", +"deleted {files}" => "已刪除 {files}", +"'.' is an invalid file name." => "'.' 是不合法的檔名。", +"File name cannot be empty." => "檔名不能為空。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", "generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Upload Error" => "上傳發生錯誤", "Close" => "關閉", +"Pending" => "等候中", "1 file uploading" => "1 個檔案正在上傳", "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", +"URL cannot be empty." => "URL不能為空白.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", +"{count} files scanned" => "{count} 個檔案已掃描", "error while scanning" => "掃描時發生錯誤", "Name" => "名稱", "Size" => "大小", @@ -43,6 +56,7 @@ "New" => "新增", "Text file" => "文字檔", "Folder" => "資料夾", +"From link" => "從連結", "Upload" => "上傳", "Cancel upload" => "取消上傳", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php new file mode 100644 index 00000000000..cb1613ef375 --- /dev/null +++ b/apps/files_encryption/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "Криптиране", +"Enable Encryption" => "Включване на криптирането", +"None" => "Няма", +"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането" +); diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 48779581846..1f2c29d54c5 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,18 @@ "Достъпът е даден", +"Grant access" => "Даване на достъп", +"Fill out all required fields" => "Попълнете всички задължителни полета", +"External Storage" => "Външно хранилище", +"Backend" => "Администрация", +"Configuration" => "Конфигурация", +"Options" => "Опции", +"None set" => "Няма избрано", +"All Users" => "Всички потребители", "Groups" => "Групи", -"Delete" => "Изтриване" +"Users" => "Потребители", +"Delete" => "Изтриване", +"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", +"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", +"SSL root certificates" => "SSL основни сертификати", +"Import Root Certificate" => "Импортиране на основен сертификат" ); diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php new file mode 100644 index 00000000000..ac94358c4f9 --- /dev/null +++ b/apps/files_sharing/l10n/bg_BG.php @@ -0,0 +1,9 @@ + "Парола", +"Submit" => "Потвърждение", +"%s shared the folder %s with you" => "%s сподели папката %s с Вас", +"%s shared the file %s with you" => "%s сподели файла %s с Вас", +"Download" => "Изтегляне", +"No preview available for" => "Няма наличен преглед за", +"web services under your control" => "уеб услуги под Ваш контрол" +); diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php new file mode 100644 index 00000000000..98b5f4113ae --- /dev/null +++ b/apps/files_versions/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "История", +"Versions" => "Версии", +"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове", +"Enable" => "Включено" +); diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php new file mode 100644 index 00000000000..c064534a6b8 --- /dev/null +++ b/apps/user_ldap/l10n/bg_BG.php @@ -0,0 +1,4 @@ + "Парола", +"Help" => "Помощ" +); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 339931c7cee..238c8d3a2fb 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,3 +1,4 @@ "URL : http://" +"URL: http://" => "URL : http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." ); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0033324cb1d..a7cba523be2 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,62 +1,19 @@ "Категорията вече съществува:", -"No categories selected for deletion." => "Няма избрани категории за изтриване", "Settings" => "Настройки", -"Cancel" => "Отказ", -"No" => "Не", -"Yes" => "Да", -"Ok" => "Добре", -"Error" => "Грешка", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"1 hour ago" => "преди 1 час", +"today" => "днес", +"yesterday" => "вчера", +"last month" => "последният месец", +"last year" => "последната година", +"years ago" => "последните години", "Password" => "Парола", -"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", -"Username" => "Потребител", -"Request reset" => "Нулиране на заявка", -"Your password was reset" => "Вашата парола е нулирана", -"New password" => "Нова парола", -"Reset password" => "Нулиране на парола", "Personal" => "Лични", "Users" => "Потребители", -"Apps" => "Програми", +"Apps" => "Приложения", "Admin" => "Админ", "Help" => "Помощ", -"Access forbidden" => "Достъпът е забранен", -"Cloud not found" => "облакът не намерен", -"Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", -"Create an admin account" => "Създаване на админ профил", -"Advanced" => "Разширено", -"Data folder" => "Директория за данни", -"Configure the database" => "Конфигуриране на базата", -"will be used" => "ще се ползва", -"Database user" => "Потребител за базата", -"Database password" => "Парола за базата", -"Database name" => "Име на базата", -"Database host" => "Хост за базата", -"Finish setup" => "Завършване на настройките", -"Sunday" => "Неделя", -"Monday" => "Понеделник", -"Tuesday" => "Вторник", -"Wednesday" => "Сряда", -"Thursday" => "Четвъртък", -"Friday" => "Петък", -"Saturday" => "Събота", -"January" => "Януари", -"February" => "Февруари", -"March" => "Март", -"April" => "Април", -"May" => "Май", -"June" => "Юни", -"July" => "Юли", -"August" => "Август", -"September" => "Септември", -"October" => "Октомври", -"November" => "Ноември", -"December" => "Декември", -"Log out" => "Изход", -"Lost your password?" => "Забравена парола?", -"remember" => "запомни", -"Log in" => "Вход", -"You are logged out." => "Вие излязохте.", -"prev" => "пред.", -"next" => "следващо" +"web services under your control" => "уеб услуги под Ваш контрол" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1208aec5a53..5758afc09ba 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -128,6 +128,7 @@ "You are logged out." => "Wylogowano użytkownika.", "prev" => "wstecz", "next" => "naprzód", +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę.", "Security Warning!" => "Ostrzeżenie o zabezpieczeniach!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.
Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.", "Verify" => "Zweryfikowane" diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7698fb30ce..7020e4b28d6 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -128,6 +128,7 @@ "You are logged out." => "Du är utloggad.", "prev" => "föregående", "next" => "nästa", +"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", "Security Warning!" => "Säkerhetsvarning!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord.
Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.", "Verify" => "Verifiera" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 45c7596e609..def8c31a21a 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -26,6 +26,8 @@ "The app name is not specified." => "沒有詳述APP名稱.", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", +"Error while changing permissions" => "修改權限時發生錯誤", +"Shared with you and the group {group} by {owner}" => "由 {owner} 分享給您和 {group}", "Shared with you by {owner}" => "{owner} 已經和您分享", "Share with" => "與分享", "Share with link" => "使用連結分享", @@ -34,6 +36,8 @@ "Set expiration date" => "設置到期日", "Expiration date" => "到期日", "Share via email:" => "透過email分享:", +"No people found" => "沒有找到任何人", +"Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", "Unshare" => "取消共享", "can edit" => "可編輯", @@ -43,6 +47,7 @@ "delete" => "刪除", "share" => "分享", "Password protected" => "密碼保護", +"Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", @@ -66,6 +71,8 @@ "Add" => "添加", "Security Warning" => "安全性警告", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Create an admin account" => "建立一個管理者帳號", "Advanced" => "進階", "Data folder" => "資料夾", @@ -98,6 +105,9 @@ "December" => "十二月", "web services under your control" => "網路服務已在你控制", "Log out" => "登出", +"Automatic logon rejected!" => "自動登入被拒!", +"If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", +"Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", "Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", @@ -105,5 +115,6 @@ "prev" => "上一頁", "next" => "下一頁", "Security Warning!" => "安全性警告!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。", "Verify" => "驗證" ); diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 91d0318792f..b57cae5c403 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d4e0355bead..dc719e9d36a 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2011-07-25 16:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -85,15 +85,15 @@ msgstr "" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" -msgstr "" +msgstr "Настройки" #: js/js.js:711 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" #: js/js.js:712 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" #: js/js.js:713 msgid "{minutes} minutes ago" @@ -101,7 +101,7 @@ msgstr "" #: js/js.js:714 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" #: js/js.js:715 msgid "{hours} hours ago" @@ -109,11 +109,11 @@ msgstr "" #: js/js.js:716 msgid "today" -msgstr "" +msgstr "днес" #: js/js.js:717 msgid "yesterday" -msgstr "" +msgstr "вчера" #: js/js.js:718 msgid "{days} days ago" @@ -121,7 +121,7 @@ msgstr "" #: js/js.js:719 msgid "last month" -msgstr "" +msgstr "последният месец" #: js/js.js:720 msgid "{months} months ago" @@ -133,11 +133,11 @@ msgstr "" #: js/js.js:722 msgid "last year" -msgstr "" +msgstr "последната година" #: js/js.js:723 msgid "years ago" -msgstr "" +msgstr "последните години" #: js/oc-dialogs.js:126 msgid "Choose" @@ -213,7 +213,7 @@ msgstr "" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "" +msgstr "Парола" #: js/share.js:172 msgid "Email link to person" @@ -342,23 +342,23 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Лични" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Потребители" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "Приложения" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Админ" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Помощ" #: templates/403.php:12 msgid "Access forbidden" @@ -374,7 +374,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "Добавяне" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -524,7 +524,7 @@ msgstr "" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" #: templates/layout.user.php:45 msgid "Log out" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index c416d7b2d74..14ac7f3c7b6 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2011. +# Stefan Ilivanov , 2011,2013. # Yasen Pramatarov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -48,7 +62,7 @@ msgstr "" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "" +msgstr "Липсва временна папка" #: ajax/upload.php:29 msgid "Failed to write to disk" @@ -64,7 +78,7 @@ msgstr "" #: appinfo/app.php:10 msgid "Files" -msgstr "" +msgstr "Файлове" #: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" @@ -72,11 +86,11 @@ msgstr "" #: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" -msgstr "" +msgstr "Изтриване" #: js/fileactions.js:181 msgid "Rename" -msgstr "" +msgstr "Преименуване" #: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" @@ -84,7 +98,7 @@ msgstr "" #: js/filelist.js:205 js/filelist.js:207 msgid "replace" -msgstr "" +msgstr "препокриване" #: js/filelist.js:205 msgid "suggest name" @@ -92,7 +106,7 @@ msgstr "" #: js/filelist.js:205 js/filelist.js:207 msgid "cancel" -msgstr "" +msgstr "отказ" #: js/filelist.js:254 msgid "replaced {new_name}" @@ -100,7 +114,7 @@ msgstr "" #: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290 msgid "undo" -msgstr "" +msgstr "възтановяване" #: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" @@ -158,7 +172,7 @@ msgstr "" #: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "" +msgstr "Качването е спряно." #: js/files.js:464 msgid "" @@ -183,15 +197,15 @@ msgstr "" #: js/files.js:808 templates/index.php:64 msgid "Name" -msgstr "" +msgstr "Име" #: js/files.js:809 templates/index.php:75 msgid "Size" -msgstr "" +msgstr "Размер" #: js/files.js:810 templates/index.php:77 msgid "Modified" -msgstr "" +msgstr "Променено" #: js/files.js:829 msgid "1 folder" @@ -215,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Максимален размер за качване" #: templates/admin.php:10 msgid "max. possible: " @@ -231,7 +245,7 @@ msgstr "" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "Ползвайте 0 за без ограничения" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" @@ -239,11 +253,11 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Запис" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Ново" #: templates/index.php:10 msgid "Text file" @@ -251,7 +265,7 @@ msgstr "" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Папка" #: templates/index.php:14 msgid "From link" @@ -259,7 +273,7 @@ msgstr "" #: templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Качване" #: templates/index.php:41 msgid "Cancel upload" @@ -267,15 +281,15 @@ msgstr "" #: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Няма нищо тук. Качете нещо." #: templates/index.php:70 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: templates/index.php:102 msgid "Upload too large" -msgstr "" +msgstr "Файлът който сте избрали за качване е прекалено голям" #: templates/index.php:104 msgid "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 4a39877f9b5..c5aca629edc 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:51+0000\n" +"Last-Translator: Stefan Ilivanov \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" @@ -19,16 +20,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Криптиране" #: templates/settings.php:6 msgid "Enable Encryption" -msgstr "" +msgstr "Включване на криптирането" #: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Няма" #: templates/settings.php:12 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Изключване на следните файлови типове от криптирането" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 07efdf04dde..656df3768cc 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:47+0000\n" +"Last-Translator: Stefan Ilivanov \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" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Достъпът е даден" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Даване на достъп" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Попълнете всички задължителни полета" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." @@ -56,7 +57,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Външно хранилище" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" @@ -64,15 +65,15 @@ msgstr "" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Администрация" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Конфигурация" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:12 msgid "Applicable" @@ -84,37 +85,37 @@ msgstr "" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Няма избрано" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Всички потребители" #: templates/settings.php:87 msgid "Groups" -msgstr "" +msgstr "Групи" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "Потребители" #: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:144 templates/settings.php:145 msgid "Delete" -msgstr "" +msgstr "Изтриване" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Вкл. на поддръжка за външно потр. хранилище" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" #: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL основни сертификати" #: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index b19492a550b..0d7fe218e8c 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:45+0000\n" +"Last-Translator: Stefan Ilivanov \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" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Потвърждение" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s сподели папката %s с Вас" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s сподели файла %s с Вас" #: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Изтегляне" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Няма наличен преглед за" #: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index c1f03bc1998..0b1e6c05270 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:49+0000\n" +"Last-Translator: Stefan Ilivanov \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" @@ -23,15 +24,15 @@ msgstr "" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "История" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Версии" #: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Това действие ще изтрие всички налични архивни версии на Вашите файлове" #: templates/settings.php:3 msgid "Files Versioning" @@ -39,4 +40,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Включено" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index d32a2dfcb20..516eee347ab 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:43+0000\n" +"Last-Translator: Stefan Ilivanov \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" @@ -19,134 +20,134 @@ msgstr "" #: app.php:301 msgid "Help" -msgstr "" +msgstr "Помощ" #: app.php:308 msgid "Personal" -msgstr "" +msgstr "Лични" #: app.php:313 msgid "Settings" -msgstr "" +msgstr "Настройки" #: app.php:318 msgid "Users" -msgstr "" +msgstr "Потребители" #: app.php:325 msgid "Apps" -msgstr "" +msgstr "Приложения" #: app.php:327 msgid "Admin" -msgstr "" +msgstr "Админ" #: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "Изтеглянето като ZIP е изключено." #: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Файловете трябва да се изтеглят един по един." #: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Назад към файловете" #: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Приложението не е включено." #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "" +msgstr "Възникна проблем с идентификацията" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Ключът е изтекъл, моля презаредете страницата" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлове" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Снимки" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "преди %d минути" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "преди %d часа" #: template.php:108 msgid "today" -msgstr "" +msgstr "днес" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "вчера" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "преди %d дни" #: template.php:111 msgid "last month" -msgstr "" +msgstr "последният месец" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "преди %d месеца" #: template.php:113 msgid "last year" -msgstr "" +msgstr "последната година" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "последните години" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s е налична. Получете повече информация" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "е актуална" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "проверката за обновления е изключена" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 774f68a7ee1..1e14fd56cd5 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2011-07-25 16:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -58,7 +58,7 @@ msgstr "" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "" +msgstr "Възникна проблем с идентификацията" #: ajax/removeuser.php:24 msgid "Unable to delete user" @@ -88,7 +88,7 @@ msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "Включено" #: js/personal.js:69 msgid "Saving..." @@ -165,7 +165,7 @@ msgstr "" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/personal.php:22 msgid "Your password was changed" @@ -193,7 +193,7 @@ msgstr "" #: templates/personal.php:33 msgid "Email" -msgstr "" +msgstr "E-mail" #: templates/personal.php:34 msgid "Your email address" @@ -235,11 +235,11 @@ msgstr "" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "" +msgstr "Име" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "Групи" #: templates/users.php:32 msgid "Create" @@ -271,4 +271,4 @@ msgstr "" #: templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Изтриване" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index bc621909341..e45d6efc2fb 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: 2012-08-12 22:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -180,4 +180,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помощ" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 4e8475171c8..8cad0bc2694 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index a8bfbc51336..919095b8997 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -23,6 +23,20 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" @@ -171,11 +185,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no pot ser buida" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0b959886042..0e7e866a144 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" @@ -168,11 +182,11 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nemůže být prázdná" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/da/files.po b/l10n/da/files.po index 0a8c4d05119..b2d80372d34 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." @@ -173,7 +187,7 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLen kan ikke være tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5bf3f95305a..b87748be1aa 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -35,6 +35,20 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -183,7 +197,7 @@ msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload a #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Die URL darf nicht leer sein." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 366e965b6cb..ec85e5580e9 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+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" @@ -36,6 +36,20 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -184,7 +198,7 @@ msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upl #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Die URL darf nicht leer sein." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/el/files.po b/l10n/el/files.po index dbac2bf8a9e..6dbee32887a 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -24,6 +24,20 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" @@ -172,7 +186,7 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Η URL δεν πρέπει να είναι κενή." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 3e25e7bc068..9989b6eb9b5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." @@ -167,7 +181,7 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ne povas esti malplena." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/es/files.po b/l10n/es/files.po index 0ecf49cede7..7ea7d7330ce 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -25,6 +25,20 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" @@ -173,7 +187,7 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no puede estar vacía." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0ffc39a7aa6..d3f2c7ebc15 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +19,20 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" @@ -167,7 +181,7 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "La URL no puede estar vacía" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index cca8c5dab85..444a31d0214 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" @@ -167,7 +181,7 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesl #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ei saa olla tühi." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e575e56c4e1..0cc98cedbd1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" @@ -168,7 +182,7 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLa ezin da hutsik egon." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 38ecc85ef7d..ea5bfc082a3 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -20,6 +20,20 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b35241e5b6a..bb2f0da1820 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" @@ -119,11 +133,11 @@ msgstr "" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' on virheellinen nimi tiedostolle." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Tiedoston nimi ei voi olla tyhjä." #: js/files.js:45 msgid "" @@ -170,7 +184,7 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Verkko-osoite ei voi olla tyhjä" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -258,7 +272,7 @@ msgstr "Kansio" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Linkistä" #: templates/index.php:18 msgid "Upload" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 8e5c52a6d69..3230fbb0c6d 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -29,6 +29,20 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" @@ -177,11 +191,11 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "L'URL ne peut-être vide" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4917efe0505..ee515cab580 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2013. # , 2012. # Robert Di Rosa <>, 2012. # Romain DEP. , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-28 23:13+0000\n" -"Last-Translator: ouafnico \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 14:46+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,4 +30,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index cba7bd650c1..2390a546dbc 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." @@ -167,7 +181,7 @@ msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL non pode quedar baleiro." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/he/files.po b/l10n/he/files.po index e93795fb25d..cbf762beda7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." @@ -169,7 +183,7 @@ msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד ת #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "קישור אינו יכול להיות ריק." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b20dbb788e8..c555c20841b 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7d7b02fd4d1..e69aea6cf78 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index 600b37964f5..4956069f94d 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 213d6168db3..bf6a28272e1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" @@ -169,7 +183,7 @@ msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a fel #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Az URL nem lehet semmi." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 587a5efe02f..48fee82947c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 6984dd0ee54..cd2442d53bd 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -168,7 +182,7 @@ msgstr "" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "tautan tidak boleh kosong" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/is/files.po b/l10n/is/files.po index 6276c7b4e00..d627daf38bf 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -166,7 +180,7 @@ msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending mis #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Vefslóð má ekki vera tóm." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/it/files.po b/l10n/it/files.po index 64cad51ff92..162104cd8c2 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" @@ -169,11 +183,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "L'URL non può essere vuoto." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index f3790f0f9a2..9f417264265 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" @@ -169,11 +183,11 @@ msgstr "ファイル転送を実行中です。今このページから移動す #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URLは空にできません。" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index f1a23bb260f..27c92e92ba5 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d31779d730d..1cbad6bb34e 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +21,20 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" @@ -169,7 +183,7 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL을 입력해야 합니다." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index dd24d811c53..e85f7e13045 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -165,7 +179,7 @@ msgstr "" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 37c47936f03..e664d38cc35 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index cb1637670d3..0b5d2d78f5b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index b7b9f2ce1ea..7b978c86d82 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -19,6 +19,20 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index ac3fce69d33..5c3bf733238 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" @@ -168,7 +182,7 @@ msgstr "Подигање на датотека е во тек. Напуштењ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Адресата неможе да биде празна." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 430797847d4..5ae3ad9c1a6 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index e8d80a8549d..d6d18d6614c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,20 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." @@ -174,7 +188,7 @@ msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL-en kan ikke være tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 87bdade255a..9471312dac3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -28,6 +28,20 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" @@ -176,7 +190,7 @@ msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de u #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL kan niet leeg zijn." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index be388e42dbb..28e98a9cd57 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 389d8fc73e0..63681ee8348 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7650db8a55d..d4c9b685578 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Kamil Domański , 2011. # , 2012. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:40+0000\n" +"Last-Translator: Cyryl Sochacki \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" @@ -93,55 +93,55 @@ msgstr "Błąd usunięcia %s z ulubionych." msgid "Settings" msgstr "Ustawienia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dziś" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ostatni rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "lat temu" @@ -577,7 +577,7 @@ msgstr "naprzód" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 997678ba5a7..64357ad8259 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Marcin Małecki , 2011-2012. # , 2011. # , 2012. @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +24,20 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" @@ -61,11 +75,11 @@ msgstr "Błąd zapisu na dysk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Za mało miejsca" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Zła ścieżka." #: appinfo/app.php:10 msgid "Files" @@ -121,11 +135,11 @@ msgstr "usunięto {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' jest nieprawidłową nazwą pliku." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Nazwa pliku nie może być pusta." #: js/files.js:45 msgid "" @@ -172,11 +186,11 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nie może być pusty." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 50ee10108d8..5f22822bc4d 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:51+0000\n" +"Last-Translator: Cyryl Sochacki \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" @@ -127,27 +127,27 @@ msgstr "-licencjonowane przez \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 7f0d53fee34..105d7c96385 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -25,6 +25,20 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" @@ -173,7 +187,7 @@ msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL não pode ficar em branco" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index e3af44436bc..0ae481a5b93 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" @@ -170,7 +184,7 @@ msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "O URL não pode estar vazio." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a52871f402b..055036e3d83 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" @@ -170,7 +184,7 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Adresa URL nu poate fi goală." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 8f6c9565309..05c00236195 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -27,6 +27,20 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" @@ -175,7 +189,7 @@ msgstr "Файл в процессе загрузки. Покинув стран #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Ссылка не может быть пустой." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index ac7059821d7..5c40bd57bd1 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" @@ -167,7 +181,7 @@ msgstr "Процесс загрузки файла. Если покинуть с #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL не должен быть пустым." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 11ed7c5d453..b905772406b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" @@ -167,7 +181,7 @@ msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "යොමුව හිස් විය නොහැක" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 2cdb6444590..1d4d69bb59e 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +21,20 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" @@ -169,7 +183,7 @@ msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL nemôže byť prázdne" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1830b257af0..5ed732142e8 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." @@ -169,7 +183,7 @@ msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošilja #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "Naslov URL ne sme biti prazen." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index de7fb9dc0e1..57c754a69e0 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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,6 +17,20 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 87237d1608e..74593611902 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 88f665807ac..81511f85a80 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index ba0480c2ab7..2a96ecd716e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,16 +6,16 @@ # Christer Eriksson , 2012. # Daniel Sandman , 2012. # , 2011. -# Magnus Höglund , 2012. +# Magnus Höglund , 2012-2013. # , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 07:40+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,55 +89,55 @@ msgstr "Fel vid borttagning av %s från favoriter." msgid "Settings" msgstr "Inställningar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "förra månaden" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "månader sedan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "förra året" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år sedan" @@ -573,7 +573,7 @@ msgstr "nästa" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index ab8cb18858d..16e2e102563 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -23,6 +23,20 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" @@ -120,11 +134,11 @@ msgstr "raderade {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' är ett ogiltigt filnamn." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Filnamn kan inte vara tomt." #: js/files.js:45 msgid "" @@ -171,11 +185,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL kan inte vara tom." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 3d07c851a95..5c90380e9ab 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" @@ -166,7 +180,7 @@ msgstr "கோப்பு பதிவேற்றம் செயல்பா #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL வெறுமையாக இருக்கமுடியாது." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 5427372f7ab..ed620b3d817 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e4cd6b3fe97..3b19c76ccf2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 65df77d5574..725d407f1b5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ceeff849fb8..2216112fdd3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 7713ffeb8ed..c6bad656955 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6cd39fb586a..5f6b249e535 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2e21994f8e1..c5c54f1e478 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9305c50aa37..cda81e89909 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 7368c2c5073..d1776300b9f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c24434bebe4..241d9102a86 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index b0b1b317fda..290a7cebd89 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" @@ -167,7 +181,7 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ไม่สามารถเว้นว่างได้" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 4e3a4f7b763..641b6c26f92 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: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" @@ -170,7 +184,7 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL boş olamaz." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index a7c8eb48db0..12e46e92ae8 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" @@ -168,7 +182,7 @@ msgstr "Виконується завантаження файлу. Закрит #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL не може бути пустим." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index d8c69f7cf39..972bed79676 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" @@ -169,7 +183,7 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL không được để trống." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 959861ec8a4..b066b89ba00 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" @@ -167,7 +181,7 @@ msgstr "文件正在上传。关闭页面会取消上传。" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "网址不能为空。" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 902c189173c..9d7a6aacba4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -22,6 +22,20 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" @@ -170,7 +184,7 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL不能为空" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index f992ea0de48..56eb4f59e2b 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 5452634a4bf..bcdc1a3f2f8 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -6,13 +6,14 @@ # Donahue Chuang , 2012. # , 2012. # Ming Yi Wu , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 07:49+0000\n" +"Last-Translator: pellaeon \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" @@ -86,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "設定" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} 個小時前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上個月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "幾個月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "幾年前" @@ -187,11 +188,11 @@ msgstr "取消分享時發生錯誤" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "修改權限時發生錯誤" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "由 {owner} 分享給您和 {group}" #: js/share.js:153 msgid "Shared with you by {owner}" @@ -236,11 +237,11 @@ msgstr "透過email分享:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "沒有找到任何人" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "不允許重新分享" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -280,7 +281,7 @@ msgstr "密碼保護" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "解除過期日設定失敗" #: js/share.js:566 msgid "Error setting expiration date" @@ -389,7 +390,7 @@ msgstr "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。" #: templates/installation.php:32 msgid "" @@ -398,7 +399,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" #: templates/installation.php:36 msgid "Create an admin account" @@ -531,17 +532,17 @@ msgstr "登出" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" @@ -580,7 +581,7 @@ msgstr "安全性警告!" msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。" #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 280e082e48b..e2be3a8a9f3 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -6,13 +6,14 @@ # Donahue Chuang , 2012. # , 2012. # Eddy Chang , 2012. +# , 2013. # ywang , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+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" @@ -21,6 +22,20 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳. 未知的錯誤." @@ -32,7 +47,7 @@ msgstr "無錯誤,檔案上傳成功" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" #: ajax/upload.php:24 msgid "" @@ -58,11 +73,11 @@ msgstr "寫入硬碟失敗" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "沒有足夠的可用空間" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "無效的資料夾。" #: appinfo/app.php:10 msgid "Files" @@ -90,7 +105,7 @@ msgstr "取代" #: js/filelist.js:205 msgid "suggest name" -msgstr "" +msgstr "建議檔名" #: js/filelist.js:205 js/filelist.js:207 msgid "cancel" @@ -110,25 +125,25 @@ msgstr "使用 {new_name} 取代 {old_name}" #: js/filelist.js:288 msgid "unshared {files}" -msgstr "" +msgstr "停止分享 {files}" #: js/filelist.js:290 msgid "deleted {files}" -msgstr "" +msgstr "已刪除 {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 是不合法的檔名。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "檔名不能為空。" #: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" #: js/files.js:186 msgid "generating ZIP-file, it may take some time." @@ -148,7 +163,7 @@ msgstr "關閉" #: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" -msgstr "" +msgstr "等候中" #: js/files.js:280 msgid "1 file uploading" @@ -169,15 +184,15 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳." #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL不能為空白." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" #: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} 個檔案已掃描" #: js/files.js:735 msgid "error while scanning" @@ -257,7 +272,7 @@ msgstr "資料夾" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "從連結" #: templates/index.php:18 msgid "Upload" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index bf2e0ce6151..d9c0a65c13d 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-09 00:04+0100\n" -"PO-Revision-Date: 2013-01-08 23:04+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 3eb0660d944..31f37458b81 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,34 @@ "Лично", -"Authentication error" => "Проблем с идентификацията" +"Help" => "Помощ", +"Personal" => "Лични", +"Settings" => "Настройки", +"Users" => "Потребители", +"Apps" => "Приложения", +"Admin" => "Админ", +"ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", +"Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", +"Back to Files" => "Назад към файловете", +"Selected files too large to generate zip file." => "Избраните файлове са прекалено големи за генерирането на ZIP архив.", +"Application is not enabled" => "Приложението не е включено.", +"Authentication error" => "Възникна проблем с идентификацията", +"Token expired. Please reload page." => "Ключът е изтекъл, моля презаредете страницата", +"Files" => "Файлове", +"Text" => "Текст", +"Images" => "Снимки", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"%d minutes ago" => "преди %d минути", +"1 hour ago" => "преди 1 час", +"%d hours ago" => "преди %d часа", +"today" => "днес", +"yesterday" => "вчера", +"%d days ago" => "преди %d дни", +"last month" => "последният месец", +"%d months ago" => "преди %d месеца", +"last year" => "последната година", +"years ago" => "последните години", +"%s is available. Get more information" => "%s е налична. Получете повече информация", +"up to date" => "е актуална", +"updates check is disabled" => "проверката за обновления е изключена", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" ); diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 89066d2baa9..853e12812ed 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,29 +1,9 @@ "Е-пощата е записана", -"Invalid email" => "Неправилна е-поща", -"OpenID Changed" => "OpenID е сменено", -"Invalid request" => "Невалидна заявка", -"Authentication error" => "Проблем с идентификацията", -"Language changed" => "Езика е сменен", -"Disable" => "Изключване", -"Enable" => "Включване", -"Saving..." => "Записване...", -"Select an App" => "Изберете програма", -"Clients" => "Клиенти", +"Authentication error" => "Възникна проблем с идентификацията", +"Enable" => "Включено", "Password" => "Парола", -"Unable to change your password" => "Невъзможна промяна на паролата", -"Current password" => "Текуща парола", -"New password" => "Нова парола", -"show" => "показва", -"Change password" => "Промяна на парола", -"Email" => "Е-поща", -"Your email address" => "Адресът на е-пощата ви", -"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", -"Language" => "Език", -"Help translate" => "Помощ за превода", +"Email" => "E-mail", "Name" => "Име", "Groups" => "Групи", -"Create" => "Ново", -"Other" => "Друго", "Delete" => "Изтриване" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 1008726d36e..87fd9fb3317 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -23,8 +23,17 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", +"User Documentation" => "Dokumentacja użytkownika", +"Administrator Documentation" => "Dokumentacja Administratora", +"Online Documentation" => "Dokumentacja Online", +"Forum" => "Forum", +"Bugtracker" => "Zgłaszanie błędów", +"Commercial Support" => "Wsparcie komercyjne", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", "Clients" => "Klienci", +"Download Desktop Clients" => "Pobierz klienta dla Komputera", +"Download Android Client" => "Pobierz klienta dla Androida", +"Download iOS Client" => "Pobierz klienta dla iOS", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików", +"Version" => "Wersja", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Name" => "Nazwa", "Groups" => "Grupy", "Create" => "Utwórz", +"Default Storage" => "Domyślny magazyn", +"Unlimited" => "Bez limitu", "Other" => "Inne", "Group Admin" => "Grupa Admin", +"Storage" => "Magazyn", +"Default" => "Domyślny", "Delete" => "Usuń" ); -- cgit v1.2.3 From d03dce12839bf029229cc3d8f965bb057294e205 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 11 Jan 2013 00:06:14 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/bn_BD.php | 61 ++++++++++++------ apps/files/l10n/ca.php | 3 + apps/files/l10n/cs_CZ.php | 3 + apps/files/l10n/fi_FI.php | 3 + apps/files/l10n/fr.php | 3 + apps/files/l10n/is.php | 13 +++- apps/files/l10n/it.php | 3 + apps/files/l10n/ja_JP.php | 3 + apps/files/l10n/pt_PT.php | 4 ++ apps/files/l10n/zh_TW.php | 29 +++++---- apps/files_encryption/l10n/bn_BD.php | 6 ++ apps/files_external/l10n/bn_BD.php | 26 ++++++-- apps/files_sharing/l10n/bn_BD.php | 7 +- apps/files_versions/l10n/bn_BD.php | 7 +- apps/user_ldap/l10n/bn_BD.php | 33 ++++++++++ apps/user_webdavauth/l10n/bn_BD.php | 4 ++ apps/user_webdavauth/l10n/fr.php | 3 +- core/l10n/bn_BD.php | 81 ++++++++++++----------- core/l10n/is.php | 17 ++--- core/l10n/zh_TW.php | 53 ++++++++++------ l10n/bn_BD/core.po | 120 +++++++++++++++++------------------ l10n/bn_BD/files.po | 92 +++++++++++++-------------- l10n/bn_BD/files_encryption.po | 14 ++-- l10n/bn_BD/files_external.po | 48 +++++++------- l10n/bn_BD/files_sharing.po | 16 ++--- l10n/bn_BD/files_versions.po | 18 +++--- l10n/bn_BD/lib.po | 50 +++++++-------- l10n/bn_BD/settings.po | 86 ++++++++++++------------- l10n/bn_BD/user_ldap.po | 72 ++++++++++----------- l10n/bn_BD/user_webdavauth.po | 11 ++-- l10n/ca/files.po | 12 ++-- l10n/cs_CZ/files.po | 12 ++-- l10n/fi_FI/files.po | 12 ++-- l10n/fi_FI/settings.po | 12 ++-- l10n/fr/files.po | 14 ++-- l10n/fr/settings.po | 10 +-- l10n/fr/user_webdavauth.po | 10 +-- l10n/is/core.po | 52 +++++++-------- l10n/is/files.po | 30 ++++----- l10n/is/settings.po | 12 ++-- l10n/it/files.po | 12 ++-- l10n/ja_JP/files.po | 12 ++-- l10n/pt_PT/files.po | 14 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_TW/core.po | 72 ++++++++++----------- l10n/zh_TW/files.po | 38 +++++------ l10n/zh_TW/settings.po | 39 ++++++------ lib/l10n/bn_BD.php | 23 +++++-- settings/l10n/bn_BD.php | 65 ++++++++++++------- settings/l10n/fi_FI.php | 2 + settings/l10n/fr.php | 2 +- settings/l10n/is.php | 5 +- settings/l10n/zh_TW.php | 16 +++++ 62 files changed, 792 insertions(+), 593 deletions(-) create mode 100644 apps/files_encryption/l10n/bn_BD.php create mode 100644 apps/user_webdavauth/l10n/bn_BD.php (limited to 'core') diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 45cf1c2313d..e55c8811393 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,46 +1,71 @@ "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", +"Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", +"Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", +"No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।", "There is no error, the file uploaded with success" => "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে", -"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে ", +"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে", "No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি", -"Missing a temporary folder" => "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে ", -"Failed to write to disk" => "ডিস্কে লিখতে পারা গেল না", +"Missing a temporary folder" => "অস্থায়ী ফোল্ডার খোয়া গিয়েছে", +"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", +"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", +"Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", -"Unshare" => "ভাগাভাগি বাতিল", +"Unshare" => "ভাগাভাগি বাতিল ", "Delete" => "মুছে ফেল", "Rename" => "পূনঃনামকরণ", "{new_name} already exists" => "{new_name} টি বিদ্যমান", "replace" => "প্রতিস্থাপন", -"suggest name" => "নাম সুপারিশ কর", +"suggest name" => "নাম সুপারিশ করুন", "cancel" => "বাতিল", "replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "unshared {files}" => "{files} ভাগাভাগি বাতিল কর", "deleted {files}" => "{files} মুছে ফেলা হয়েছে", -"Upload Error" => "আপলোড করতে সমস্যা", +"'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", +"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", +"generating ZIP-file, it may take some time." => "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।", +"Unable to upload your file as it is a directory or has 0 bytes" => "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট", +"Upload Error" => "আপলোড করতে সমস্যা ", +"Close" => "বন্ধ", "Pending" => "মুলতুবি", -"1 file uploading" => "১ টি ফাইল আপলোড করা হচ্ছে", -"Upload cancelled." => "আপলোড বাতিল করা হয়েছে ।", +"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", +"{count} files uploading" => "{count} টি ফাইল আপলোড করা হচ্ছে", +"Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", +"File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", +"URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।", +"{count} files scanned" => "{count} টি ফাইল স্ক্যান করা হয়েছে", "error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে", "Name" => "নাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"File handling" => "ফাইল হ্যান্ডলিং", +"1 folder" => "১টি ফোল্ডার", +"{count} folders" => "{count} টি ফোল্ডার", +"1 file" => "১টি ফাইল", +"{count} files" => "{count} টি ফাইল", +"File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", -"max. possible: " => "সম্ভাব্য সর্বোচ্চঃ", -"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।", -"Enable ZIP-download" => "জিপ ডাউনলোড সক্রিয় কর", -"0 is unlimited" => "০ এর অর্থ হলো অসীম", -"Maximum input size for ZIP files" => "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট", -"Save" => "সংরক্ষণ কর", +"max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", +"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।", +"Enable ZIP-download" => "ZIP ডাউনলোড সক্রিয় কর", +"0 is unlimited" => "০ এর অর্থ অসীম", +"Maximum input size for ZIP files" => "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার", +"Save" => "সংরক্ষন কর", "New" => "নতুন", "Text file" => "টেক্সট ফাইল", "Folder" => "ফোল্ডার", +"From link" => " লিংক থেকে", "Upload" => "আপলোড", "Cancel upload" => "আপলোড বাতিল কর", -"Nothing in here. Upload something!" => "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !", +"Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Download" => "ডাউনলোড", -"Upload too large" => "আপলোডের আকার অনেক বড়", -"Files are being scanned, please wait." => "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", +"Upload too large" => "আপলোডের আকারটি অনেক বড়", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন ", +"Files are being scanned, please wait." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", "Current scanning" => "বর্তমান স্ক্যানিং" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index df099c6331d..f6ddbcd8e18 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,7 @@ "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", +"Could not move %s" => " No s'ha pogut moure %s", +"Unable to rename file" => "No es pot canviar el nom del fitxer", "No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 301a54c343a..65ac4b04931 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,7 @@ "Nelze přesunout %s - existuje soubor se stejným názvem", +"Could not move %s" => "Nelze přesunout %s", +"Unable to rename file" => "Nelze přejmenovat soubor", "No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 3847590c99e..e7e4b044372 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,7 @@ "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", +"Could not move %s" => "Kohteen %s siirto ei onnistunut", +"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 9e911324d25..f14759ff8f0 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,7 @@ "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", +"Could not move %s" => "Impossible de déplacer %s", +"Unable to rename file" => "Impossible de renommer le fichier", "No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index b70d212c9c7..2eff686611a 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,8 @@ "Gat ekki fært %s - Skrá með þessu nafni er þegar til", +"Could not move %s" => "Gat ekki fært %s", +"Unable to rename file" => "Gat ekki endurskýrt skrá", +"No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.", @@ -6,6 +10,8 @@ "No file was uploaded" => "Engin skrá skilaði sér", "Missing a temporary folder" => "Vantar bráðabirgðamöppu", "Failed to write to disk" => "Tókst ekki að skrifa á disk", +"Not enough space available" => "Ekki nægt pláss tiltækt", +"Invalid directory." => "Ógild mappa.", "Files" => "Skrár", "Unshare" => "Hætta deilingu", "Delete" => "Eyða", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "unshared {files}" => "Hætti við deilingu á {files}", "deleted {files}" => "eyddi {files}", +"'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", +"File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", "generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", "Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", @@ -30,6 +38,7 @@ "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", "URL cannot be empty." => "Vefslóð má ekki vera tóm.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", @@ -53,9 +62,9 @@ "From link" => "Af tengli", "Upload" => "Senda inn", "Cancel upload" => "Hætta við innsendingu", -"Nothing in here. Upload something!" => "Ekkert hér. Sendu eitthvað inn!", +"Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", -"Upload too large" => "Innsend skrá of stór", +"Upload too large" => "Innsend skrá er of stór", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", "Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", "Current scanning" => "Er að skima" diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 8c3173d5d50..a54e424694f 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,7 @@ "Impossibile spostare %s - un file con questo nome esiste già", +"Could not move %s" => "Impossibile spostare %s", +"Unable to rename file" => "Impossibile rinominare il file", "No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index eab693c3431..4621cc5d4ea 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,7 @@ "%s を移動できませんでした ― この名前のファイルはすでに存在します", +"Could not move %s" => "%s を移動できませんでした", +"Unable to rename file" => "ファイル名の変更ができません", "No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 447cd6bdeb6..fb22894b34e 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,7 @@ "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", +"Could not move %s" => "Não foi possível move o ficheiro %s", +"Unable to rename file" => "Não foi possível renomear o ficheiro", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", @@ -35,6 +38,7 @@ "Upload cancelled." => "O envio foi cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty." => "O URL não pode estar vazio.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 03ced5f0cbf..7f0f44baca9 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,9 +1,12 @@ "沒有檔案被上傳. 未知的錯誤.", +"Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在", +"Could not move %s" => "無法移動 %s", +"Unable to rename file" => "無法重新命名檔案", +"No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", -"The uploaded file was only partially uploaded" => "只有部分檔案被上傳", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制", +"The uploaded file was only partially uploaded" => "只有檔案的一部分被上傳", "No file was uploaded" => "無已上傳檔案", "Missing a temporary folder" => "遺失暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", @@ -20,12 +23,12 @@ "replaced {new_name}" => "已取代 {new_name}", "undo" => "復原", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", -"unshared {files}" => "停止分享 {files}", +"unshared {files}" => "已取消分享 {files}", "deleted {files}" => "已刪除 {files}", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", -"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", +"generating ZIP-file, it may take some time." => "產生 ZIP 壓縮檔,這可能需要一段時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Upload Error" => "上傳發生錯誤", "Close" => "關閉", @@ -33,8 +36,8 @@ "1 file uploading" => "1 個檔案正在上傳", "{count} files uploading" => "{count} 個檔案正在上傳", "Upload cancelled." => "上傳取消", -"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", -"URL cannot be empty." => "URL不能為空白.", +"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", +"URL cannot be empty." => "URL 不能為空白.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", "{count} files scanned" => "{count} 個檔案已掃描", "error while scanning" => "掃描時發生錯誤", @@ -46,12 +49,12 @@ "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", "File handling" => "檔案處理", -"Maximum upload size" => "最大上傳容量", -"max. possible: " => "最大允許: ", -"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的", +"Maximum upload size" => "最大上傳檔案大小", +"max. possible: " => "最大允許:", +"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的。", "Enable ZIP-download" => "啟用 Zip 下載", "0 is unlimited" => "0代表沒有限制", -"Maximum input size for ZIP files" => "針對ZIP檔案最大輸入大小", +"Maximum input size for ZIP files" => "針對 ZIP 檔案最大輸入大小", "Save" => "儲存", "New" => "新增", "Text file" => "文字檔", @@ -59,10 +62,10 @@ "From link" => "從連結", "Upload" => "上傳", "Cancel upload" => "取消上傳", -"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", +"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Download" => "下載", "Upload too large" => "上傳過大", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "你試圖上傳的檔案已超過伺服器的最大容量限制。 ", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描" ); diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php new file mode 100644 index 00000000000..c8f041d7622 --- /dev/null +++ b/apps/files_encryption/l10n/bn_BD.php @@ -0,0 +1,6 @@ + "সংকেতায়ন", +"Enable Encryption" => "সংকেতায়ন সক্রিয় কর", +"None" => "কোনটিই নয়", +"Exclude the following file types from encryption" => "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" +); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index ad983b52e43..a4a2b23030b 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,6 +1,24 @@ "প্রশাসক", -"Groups" => "গোষ্ঠী", -"Users" => "ব্যবহারকারিবৃন্দ", -"Delete" => "মুছে ফেল" +"Access granted" => "অধিগমনের অনুমতি প্রদান করা হলো", +"Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"Grant access" => "অধিগমনের অনুমতি প্রদান কর", +"Fill out all required fields" => "আবশ্যিক সমস্ত ক্ষেত্র পূরণ করুন", +"Please provide a valid Dropbox app key and secret." => "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।", +"Error configuring Google Drive storage" => "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"External Storage" => "বাহ্যিক সংরক্ষণাগার", +"Mount point" => "মাউন্ট পয়েন্ট", +"Backend" => "পশ্চাদপট", +"Configuration" => "কনফিগারেসন", +"Options" => "বিকল্পসমূহ", +"Applicable" => "প্রযোজ্য", +"Add mount point" => "মাউন্ট পয়েন্ট যোগ কর", +"None set" => "কোনটিই নির্ধারণ করা হয় নি", +"All Users" => "সমস্ত ব্যবহারকারী", +"Groups" => "গোষ্ঠীসমূহ", +"Users" => "ব্যবহারকারী", +"Delete" => "মুছে ফেল", +"Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", +"Allow users to mount their own external storage" => "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও", +"SSL root certificates" => "SSL রুট সনদপত্র", +"Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" ); diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 785dfcd2f1d..c3af434ee29 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,6 +1,9 @@ "কূটশব্দ", -"Submit" => "পাঠাও", +"Submit" => "জমা দাও", +"%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", +"%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", "Download" => "ডাউনলোড", -"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +"No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" ); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index d44ea131313..88349342fa9 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,3 +1,8 @@ "সক্রিয়" +"Expire all versions" => "সমস্ত ভার্সন মেয়াদোত্তীর্ণ", +"History" => "ইতিহাস", +"Versions" => "ভার্সন", +"This will delete all existing backup versions of your files" => "এটি আপনার বিদ্যমান ফাইলের সমস্ত ব্যাক-আপ ভার্সন মুছে ফেলবে।", +"Files Versioning" => "ফাইল ভার্সন করা", +"Enable" => "সক্রিয় " ); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index eca40c171f8..094b20cad2d 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,4 +1,37 @@ "হোস্ট", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://", +"Base DN" => "ভিত্তি DN", +"You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"User DN" => "ব্যবহারকারি DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "Password" => "কূটশব্দ", +"For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", +"User Login Filter" => "ব্যবহারকারির প্রবেশ ছাঁকনী", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"", +"User List Filter" => "ব্যবহারকারী তালিকা ছাঁকনী", +"Defines the filter to apply, when retrieving users." => "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=person\"." => "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।", +"Group Filter" => "গোষ্ঠী ছাঁকনী", +"Defines the filter to apply, when retrieving groups." => "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।", +"Port" => "পোর্ট", +"Base User Tree" => "ভিত্তি ব্যবহারকারি বৃক্ষাকারে", +"Base Group Tree" => "ভিত্তি গোষ্ঠী বৃক্ষাকারে", +"Group-Member association" => "গোষ্ঠী-সদস্য সংস্থাপন", +"Use TLS" => "TLS ব্যবহার কর", +"Do not use it for SSL connections, it will fail." => "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।", +"Case insensitve LDAP server (Windows)" => "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)", +"Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।", +"Not recommended, use for testing only." => "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।", +"User Display Name Field" => "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the user`s ownCloud name." => "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"Group Display Name Field" => "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"in bytes" => "বাইটে", +"in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।", "Help" => "সহায়িকা" ); diff --git a/apps/user_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php new file mode 100644 index 00000000000..773e7f7eb76 --- /dev/null +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -0,0 +1,4 @@ + "URL:http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." +); diff --git a/apps/user_webdavauth/l10n/fr.php b/apps/user_webdavauth/l10n/fr.php index 238c8d3a2fb..339931c7cee 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,4 +1,3 @@ "URL : http://", -"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." +"URL: http://" => "URL : http://" ); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index a3350761386..a0322ffe23f 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,12 +1,15 @@ "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", "User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", "Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", "No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", -"This category already exists: " => "এই ক্যাটেগরিটি বিদ্যমানঃ", +"This category already exists: " => "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ", "Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", +"%s ID not provided." => "%s ID প্রদান করা হয় নি।", "Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", -"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।", +"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।", "Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", "Settings" => "নিয়ামকসমূহ", "seconds ago" => "সেকেন্ড পূর্বে", @@ -22,8 +25,8 @@ "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", -"Choose" => "নির্বাচন", -"Cancel" => "বাতিল", +"Choose" => "বেছে নিন", +"Cancel" => "বাতির", "No" => "না", "Yes" => "হ্যাঁ", "Ok" => "তথাস্তু", @@ -31,64 +34,67 @@ "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", "The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", -"Error while sharing" => "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে", -"Error while unsharing" => "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে", -"Error while changing permissions" => "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে", -"Share with" => "যাদের সাথে ভাগাভাগি করবে", -"Share with link" => "লিংক সহযোগে ভাগাভাগি", -"Password protect" => "কূটশব্দদ্বারা সুরক্ষিত", +"Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ", +"Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে", +"Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে", +"Shared with you and the group {group} by {owner}" => "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন", +"Shared with you by {owner}" => "{owner} আপনার সাথে ভাগাভাগি করেছেন", +"Share with" => "যাদের সাথে ভাগাভাগি করা হয়েছে", +"Share with link" => "লিংকের সাথে ভাগাভাগি কর", +"Password protect" => "কূটশব্দ সুরক্ষিত", "Password" => "কূটশব্দ", "Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর", "Send" => "পাঠাও", "Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন", "Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ", -"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ", +"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ", "No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না", -"Resharing is not allowed" => "পূনরায় ভাগাভাগি করার অনুমতি নেই", -"Unshare" => "ভাগাভাগি বাতিল", -"can edit" => "সম্পাদনা করতে পারবে", -"access control" => "অধিগম্যতার নিয়ন্ত্রণ", -"create" => "তৈরি কর", +"Resharing is not allowed" => "পূনঃরায় ভাগাভাগি অনুমোদিত নয়", +"Shared in {item} with {user}" => "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে", +"Unshare" => "ভাগাভাগি বাতিল কর", +"can edit" => "সম্পাদনা করতে পারবেন", +"access control" => "অধিগম্যতা নিয়ন্ত্রণ", +"create" => "তৈরী করুন", "update" => "পরিবর্ধন কর", "delete" => "মুছে ফেল", "share" => "ভাগাভাগি কর", "Password protected" => "কূটশব্দদ্বারা সুরক্ষিত", -"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা", -"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা", +"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে", +"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে", "Sending ..." => "পাঠানো হচ্ছে......", "Email sent" => "ই-মেইল পাঠানো হয়েছে", "ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ", -"Use the following link to reset your password: {link}" => "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}", -"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।", +"Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", +"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।", "Request failed!" => "অনুরোধ ব্যর্থ !", -"Username" => "ব্যবহারকারি", -"Request reset" => "পূনঃনির্ধারণের জন্য অনুরোধ", -"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", -"To login page" => "প্রবেশ পাতায়", +"Username" => "ব্যবহারকারী", +"Request reset" => "অনুরোধ পূনঃনির্ধারণ", +"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", +"To login page" => "প্রবেশ পৃষ্ঠায়", "New password" => "নতুন কূটশব্দ", -"Reset password" => "কূটশব্দ পূনঃনির্ধারণ", +"Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর", "Personal" => "ব্যক্তিগত", -"Users" => "ব্যবহারকারিবৃন্দ", +"Users" => "ব্যবহারকারী", "Apps" => "অ্যাপস", -"Admin" => "প্রশাসক", +"Admin" => "প্রশাসন", "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", "Edit categories" => "ক্যাটেগরি সম্পাদনা", "Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", -"Create an admin account" => "প্রশাসক একাউন্ট তৈরি কর", +"Create an admin account" => "প্রশাসক একাউন্ট তৈরী করুন", "Advanced" => "সুচারু", -"Data folder" => "ডাটা ফোল্ডার", -"Configure the database" => "ডাটাবেজ কনফিগার কর", +"Data folder" => "ডাটা ফোল্ডার ", +"Configure the database" => "ডাটাবেচ কনফিগার করুন", "will be used" => "ব্যবহৃত হবে", -"Database user" => "ডাটাবেজ ব্যবহারকারি", +"Database user" => "ডাটাবেজ ব্যবহারকারী", "Database password" => "ডাটাবেজ কূটশব্দ", "Database name" => "ডাটাবেজের নাম", -"Database tablespace" => "ডাটাবেজ টেবিলস্পেস", +"Database tablespace" => "ডাটাবেজ টেবলস্পেস", "Database host" => "ডাটাবেজ হোস্ট", -"Finish setup" => "সেট-আপ সুসম্পন্ন কর", +"Finish setup" => "সেটআপ সুসম্পন্ন কর", "Sunday" => "রবিবার", "Monday" => "সোমবার", "Tuesday" => "মঙ্গলবার", @@ -103,19 +109,20 @@ "May" => "মে", "June" => "জুন", "July" => "জুলাই", -"August" => "অগাস্ট", +"August" => "অগাষ্ট", "September" => "সেপ্টেম্বর", "October" => "অক্টোবর", "November" => "নভেম্বর", "December" => "ডিসেম্বর", -"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়", +"web services under your control" => "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়", "Log out" => "প্রস্থান", -"Lost your password?" => "আপনার কূটশব্দটি হারিয়েছেন ?", +"Lost your password?" => "কূটশব্দ হারিয়েছেন?", "remember" => "মনে রাখ", "Log in" => "প্রবেশ", -"You are logged out." => "আপনি প্রস্থান করেছেন", +"You are logged out." => "আপনি প্রস্থান করেছেন।", "prev" => "পূর্ববর্তী", "next" => "পরবর্তী", +"Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।", "Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী", "Verify" => "যাচাই কর" ); diff --git a/core/l10n/is.php b/core/l10n/is.php index 53b2fe88839..e820b655d55 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -4,7 +4,7 @@ "User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", -"No category to add?" => "Enginn flokkur til að bæta við?", +"No category to add?" => "Enginn flokkur til að bæta við?", "This category already exists: " => "Þessi flokkur er þegar til:", "Object type not provided." => "Tegund ekki í boði.", "%s ID not provided." => "%s ID ekki í boði.", @@ -31,7 +31,7 @@ "Yes" => "Já", "Ok" => "Í lagi", "The object type is not specified." => "Tegund ekki tilgreind", -"Error" => "Villa", +"Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", "The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", "Error while sharing" => "Villa við deilingu", @@ -63,7 +63,7 @@ "Error setting expiration date" => "Villa við að setja gildistíma", "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", -"ownCloud password reset" => "endursetja ownCloud lykilorð", +"ownCloud password reset" => "endursetja ownCloud lykilorð", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", "Reset email send." => "Beiðni um endursetningu send.", @@ -78,9 +78,9 @@ "Users" => "Notendur", "Apps" => "Forrit", "Admin" => "Vefstjórn", -"Help" => "Help", +"Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", -"Cloud not found" => "Skýið finnst eigi", +"Cloud not found" => "Ský finnst ekki", "Edit categories" => "Breyta flokkum", "Add" => "Bæta", "Security Warning" => "Öryggis aðvörun", @@ -92,12 +92,12 @@ "Data folder" => "Gagnamappa", "Configure the database" => "Stilla gagnagrunn", "will be used" => "verður notað", -"Database user" => "Notandi gagnagrunns", -"Database password" => "Lykilorð gagnagrunns", +"Database user" => "Gagnagrunns notandi", +"Database password" => "Gagnagrunns lykilorð", "Database name" => "Nafn gagnagrunns", "Database tablespace" => "Töflusvæði gagnagrunns", "Database host" => "Netþjónn gagnagrunns", -"Finish setup" => "Ljúka uppsetningu", +"Finish setup" => "Virkja uppsetningu", "Sunday" => "Sunnudagur", "Monday" => "Mánudagur", "Tuesday" => "Þriðjudagur", @@ -128,6 +128,7 @@ "You are logged out." => "Þú ert útskráð(ur).", "prev" => "fyrra", "next" => "næsta", +"Updating ownCloud to version %s, this may take a while." => "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund.", "Security Warning!" => "Öryggis aðvörun!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.
Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til.", "Verify" => "Staðfesta" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index def8c31a21a..0df7ee42785 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,14 +1,22 @@ "無分類添加?", -"This category already exists: " => "此分類已經存在:", +"User %s shared a file with you" => "用戶 %s 與您分享了一個檔案", +"User %s shared a folder with you" => "用戶 %s 與您分享了一個資料夾", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s", +"Category type not provided." => "未提供分類類型。", +"No category to add?" => "沒有可增加的分類?", +"This category already exists: " => "此分類已經存在:", "Object type not provided." => "不支援的物件類型", -"No categories selected for deletion." => "沒選擇要刪除的分類", +"%s ID not provided." => "未提供 %s ID 。", +"Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。", +"No categories selected for deletion." => "沒有選擇要刪除的分類。", +"Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。", "Settings" => "設定", "seconds ago" => "幾秒前", "1 minute ago" => "1 分鐘前", "{minutes} minutes ago" => "{minutes} 分鐘前", "1 hour ago" => "1 個小時前", -"{hours} hours ago" => "{hours} 個小時前", +"{hours} hours ago" => "{hours} 小時前", "today" => "今天", "yesterday" => "昨天", "{days} days ago" => "{days} 天前", @@ -22,20 +30,24 @@ "No" => "No", "Yes" => "Yes", "Ok" => "Ok", +"The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", -"The app name is not specified." => "沒有詳述APP名稱.", +"The app name is not specified." => "沒有指定 app 名稱。", +"The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", "Error while changing permissions" => "修改權限時發生錯誤", "Shared with you and the group {group} by {owner}" => "由 {owner} 分享給您和 {group}", "Shared with you by {owner}" => "{owner} 已經和您分享", -"Share with" => "與分享", +"Share with" => "與...分享", "Share with link" => "使用連結分享", "Password protect" => "密碼保護", "Password" => "密碼", +"Email link to person" => "將連結 email 給別人", +"Send" => "寄出", "Set expiration date" => "設置到期日", "Expiration date" => "到期日", -"Share via email:" => "透過email分享:", +"Share via email:" => "透過 email 分享:", "No people found" => "沒有找到任何人", "Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", @@ -46,16 +58,18 @@ "update" => "更新", "delete" => "刪除", "share" => "分享", -"Password protected" => "密碼保護", +"Password protected" => "受密碼保護", "Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", +"Sending ..." => "正在寄出...", +"Email sent" => "Email 已寄出", "ownCloud password reset" => "ownCloud 密碼重設", -"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", -"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", -"Reset email send." => "重設郵件已送出.", -"Request failed!" => "請求失敗!", +"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: {link}", +"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", +"Reset email send." => "重設郵件已送出。", +"Request failed!" => "請求失敗!", "Username" => "使用者名稱", -"Request reset" => "要求重設", +"Request reset" => "請求重設", "Your password was reset" => "你的密碼已重設", "To login page" => "至登入頁面", "New password" => "新密碼", @@ -65,12 +79,12 @@ "Apps" => "應用程式", "Admin" => "管理者", "Help" => "幫助", -"Access forbidden" => "禁止存取", +"Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲", "Edit categories" => "編輯分類", -"Add" => "添加", +"Add" => "增加", "Security Warning" => "安全性警告", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Create an admin account" => "建立一個管理者帳號", @@ -103,18 +117,19 @@ "October" => "十月", "November" => "十一月", "December" => "十二月", -"web services under your control" => "網路服務已在你控制", +"web services under your control" => "網路服務在您控制之下", "Log out" => "登出", "Automatic logon rejected!" => "自動登入被拒!", "If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", "Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", -"Lost your password?" => "忘記密碼?", +"Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", "You are logged out." => "你已登出", "prev" => "上一頁", "next" => "下一頁", -"Security Warning!" => "安全性警告!", +"Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。", +"Security Warning!" => "安全性警告!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。", "Verify" => "驗證" ); diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 69efe6f583c..1d77bebb0e6 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:57+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -33,14 +33,14 @@ msgstr "%s নামের ব্যবহারকারি আপনার স msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -52,7 +52,7 @@ msgstr "যোগ করার মত কোন ক্যাটেগরি ন #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "এই ক্যাটেগরিটি বিদ্যমানঃ" +msgstr "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -64,7 +64,7 @@ msgstr "অবজেক্টের ধরণটি প্রদান করা #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID প্রদান করা হয় নি।" #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -73,7 +73,7 @@ msgstr "প্রিয়তে %s যোগ করতে সমস্যা দ #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।" +msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format @@ -84,65 +84,65 @@ msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সম msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "আজ" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "গতমাস" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "গত বছর" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "বছর পূর্বে" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "নির্বাচন" +msgstr "বেছে নিন" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "বাতিল" +msgstr "বাতির" #: js/oc-dialogs.js:162 msgid "No" @@ -177,35 +177,35 @@ msgstr "আবশ্যিক {file} টি সংস্থাপিত নে #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে" +msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " #: js/share.js:135 msgid "Error while unsharing" -msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে" +msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে" +msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" #: js/share.js:158 msgid "Share with" -msgstr "যাদের সাথে ভাগাভাগি করবে" +msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" #: js/share.js:163 msgid "Share with link" -msgstr "লিংক সহযোগে ভাগাভাগি" +msgstr "লিংকের সাথে ভাগাভাগি কর" #: js/share.js:166 msgid "Password protect" -msgstr "কূটশব্দদ্বারা সুরক্ষিত" +msgstr "কূটশব্দ সুরক্ষিত" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 @@ -230,7 +230,7 @@ msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" #: js/share.js:210 msgid "Share via email:" -msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ" +msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" #: js/share.js:212 msgid "No people found" @@ -238,27 +238,27 @@ msgstr "কোন ব্যক্তি খুঁজে পাওয়া গে #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই" +msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" #: js/share.js:296 msgid "Unshare" -msgstr "ভাগাভাগি বাতিল" +msgstr "ভাগাভাগি বাতিল কর" #: js/share.js:308 msgid "can edit" -msgstr "সম্পাদনা করতে পারবে" +msgstr "সম্পাদনা করতে পারবেন" #: js/share.js:310 msgid "access control" -msgstr "অধিগম্যতার নিয়ন্ত্রণ" +msgstr "অধিগম্যতা নিয়ন্ত্রণ" #: js/share.js:313 msgid "create" -msgstr "তৈরি কর" +msgstr "তৈরী করুন" #: js/share.js:316 msgid "update" @@ -278,11 +278,11 @@ msgstr "কূটশব্দদ্বারা সুরক্ষিত" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" #: js/share.js:581 msgid "Sending ..." @@ -298,11 +298,11 @@ msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।" +msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." @@ -315,19 +315,19 @@ msgstr "অনুরোধ ব্যর্থ !" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 msgid "Username" -msgstr "ব্যবহারকারি" +msgstr "ব্যবহারকারী" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "পূনঃনির্ধারণের জন্য অনুরোধ" +msgstr "অনুরোধ পূনঃনির্ধারণ" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "প্রবেশ পাতায়" +msgstr "প্রবেশ পৃষ্ঠায়" #: lostpassword/templates/resetpassword.php:8 msgid "New password" @@ -335,7 +335,7 @@ msgstr "নতুন কূটশব্দ" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "কূটশব্দ পূনঃনির্ধারণ" +msgstr "কূটশব্দ পূনঃনির্ধারণ কর" #: strings.php:5 msgid "Personal" @@ -343,7 +343,7 @@ msgstr "ব্যক্তিগত" #: strings.php:6 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যবহারকারী" #: strings.php:7 msgid "Apps" @@ -351,7 +351,7 @@ msgstr "অ্যাপস" #: strings.php:8 msgid "Admin" -msgstr "প্রশাসক" +msgstr "প্রশাসন" #: strings.php:9 msgid "Help" @@ -400,7 +400,7 @@ msgstr "" #: templates/installation.php:36 msgid "Create an admin account" -msgstr "প্রশাসক একাউন্ট তৈরি কর" +msgstr "প্রশাসক একাউন্ট তৈরী করুন" #: templates/installation.php:50 msgid "Advanced" @@ -408,11 +408,11 @@ msgstr "সুচারু" #: templates/installation.php:52 msgid "Data folder" -msgstr "ডাটা ফোল্ডার" +msgstr "ডাটা ফোল্ডার " #: templates/installation.php:59 msgid "Configure the database" -msgstr "ডাটাবেজ কনফিগার কর" +msgstr "ডাটাবেচ কনফিগার করুন" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 @@ -421,7 +421,7 @@ msgstr "ব্যবহৃত হবে" #: templates/installation.php:107 msgid "Database user" -msgstr "ডাটাবেজ ব্যবহারকারি" +msgstr "ডাটাবেজ ব্যবহারকারী" #: templates/installation.php:111 msgid "Database password" @@ -433,7 +433,7 @@ msgstr "ডাটাবেজের নাম" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "ডাটাবেজ টেবিলস্পেস" +msgstr "ডাটাবেজ টেবলস্পেস" #: templates/installation.php:129 msgid "Database host" @@ -441,7 +441,7 @@ msgstr "ডাটাবেজ হোস্ট" #: templates/installation.php:134 msgid "Finish setup" -msgstr "সেট-আপ সুসম্পন্ন কর" +msgstr "সেটআপ সুসম্পন্ন কর" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" @@ -501,7 +501,7 @@ msgstr "জুলাই" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "অগাস্ট" +msgstr "অগাষ্ট" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" @@ -521,7 +521,7 @@ msgstr "ডিসেম্বর" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +msgstr "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়" #: templates/layout.user.php:45 msgid "Log out" @@ -543,7 +543,7 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "আপনার কূটশব্দটি হারিয়েছেন ?" +msgstr "কূটশব্দ হারিয়েছেন?" #: templates/login.php:39 msgid "remember" @@ -555,7 +555,7 @@ msgstr "প্রবেশ" #: templates/logout.php:1 msgid "You are logged out." -msgstr "আপনি প্রস্থান করেছেন" +msgstr "আপনি প্রস্থান করেছেন।" #: templates/part.pagenavi.php:3 msgid "prev" @@ -568,7 +568,7 @@ msgstr "পরবর্তী" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 8cad0bc2694..33908fc14e1 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:05+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -21,20 +21,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -43,17 +43,17 @@ msgstr "কোন সমস্যা নেই, ফাইল আপলোড স #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" #: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে" +msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" #: ajax/upload.php:27 msgid "No file was uploaded" @@ -61,19 +61,19 @@ msgstr "কোন ফাইল আপলোড করা হয় নি" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে " +msgstr "অস্থায়ী ফোল্ডার খোয়া গিয়েছে" #: ajax/upload.php:29 msgid "Failed to write to disk" -msgstr "ডিস্কে লিখতে পারা গেল না" +msgstr "ডিস্কে লিখতে ব্যর্থ" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "ভুল ডিরেক্টরি" #: appinfo/app.php:10 msgid "Files" @@ -81,7 +81,7 @@ msgstr "ফাইল" #: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" -msgstr "ভাগাভাগি বাতিল" +msgstr "ভাগাভাগি বাতিল " #: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" @@ -101,7 +101,7 @@ msgstr "প্রতিস্থাপন" #: js/filelist.js:205 msgid "suggest name" -msgstr "নাম সুপারিশ কর" +msgstr "নাম সুপারিশ করুন" #: js/filelist.js:205 js/filelist.js:207 msgid "cancel" @@ -129,33 +129,33 @@ msgstr "{files} মুছে ফেলা হয়েছে" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "টি একটি অননুমোদিত নাম।" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" #: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" #: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।" #: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" #: js/files.js:224 msgid "Upload Error" -msgstr "আপলোড করতে সমস্যা" +msgstr "আপলোড করতে সমস্যা " #: js/files.js:241 msgid "Close" -msgstr "" +msgstr "বন্ধ" #: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" @@ -163,32 +163,32 @@ msgstr "মুলতুবি" #: js/files.js:280 msgid "1 file uploading" -msgstr "১ টি ফাইল আপলোড করা হচ্ছে" +msgstr "১টি ফাইল আপলোড করা হচ্ছে" #: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" -msgstr "" +msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" #: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "আপলোড বাতিল করা হয়েছে ।" +msgstr "আপলোড বাতিল করা হয়েছে।" #: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "" +msgstr "URL ফাঁকা রাখা যাবে না।" #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" #: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} টি ফাইল স্ক্যান করা হয়েছে" #: js/files.js:735 msgid "error while scanning" @@ -208,23 +208,23 @@ msgstr "পরিবর্তিত" #: js/files.js:829 msgid "1 folder" -msgstr "" +msgstr "১টি ফোল্ডার" #: js/files.js:831 msgid "{count} folders" -msgstr "" +msgstr "{count} টি ফোল্ডার" #: js/files.js:839 msgid "1 file" -msgstr "" +msgstr "১টি ফাইল" #: js/files.js:841 msgid "{count} files" -msgstr "" +msgstr "{count} টি ফাইল" #: templates/admin.php:5 msgid "File handling" -msgstr "ফাইল হ্যান্ডলিং" +msgstr "ফাইল হ্যার্ডলিং" #: templates/admin.php:7 msgid "Maximum upload size" @@ -232,27 +232,27 @@ msgstr "আপলোডের সর্বোচ্চ আকার" #: templates/admin.php:10 msgid "max. possible: " -msgstr "সম্ভাব্য সর্বোচ্চঃ" +msgstr "অনুমোদিত সর্বোচ্চ আকার" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।" +msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "জিপ ডাউনলোড সক্রিয় কর" +msgstr "ZIP ডাউনলোড সক্রিয় কর" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "০ এর অর্থ হলো অসীম" +msgstr "০ এর অর্থ অসীম" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট" +msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার" #: templates/admin.php:26 msgid "Save" -msgstr "সংরক্ষণ কর" +msgstr "সংরক্ষন কর" #: templates/index.php:7 msgid "New" @@ -268,7 +268,7 @@ msgstr "ফোল্ডার" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr " লিংক থেকে" #: templates/index.php:18 msgid "Upload" @@ -280,7 +280,7 @@ msgstr "আপলোড বাতিল কর" #: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !" +msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" #: templates/index.php:70 msgid "Download" @@ -288,17 +288,17 @@ msgstr "ডাউনলোড" #: templates/index.php:102 msgid "Upload too large" -msgstr "আপলোডের আকার অনেক বড়" +msgstr "আপলোডের আকারটি অনেক বড়" #: templates/index.php:104 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " #: templates/index.php:109 msgid "Files are being scanned, please wait." -msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" +msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" #: templates/index.php:112 msgid "Current scanning" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index da32933e271..8c13e55a14a 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:15+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,16 +19,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "সংকেতায়ন" #: templates/settings.php:6 msgid "Enable Encryption" -msgstr "" +msgstr "সংকেতায়ন সক্রিয় কর" #: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "কোনটিই নয়" #: templates/settings.php:12 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 601f3807ce2..fc11b94750f 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:28+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,27 +19,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "অধিগমনের অনুমতি প্রদান করা হলো" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "অধিগমনের অনুমতি প্রদান কর" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "আবশ্যিক সমস্ত ক্ষেত্র পূরণ করুন" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " #: lib/config.php:434 msgid "" @@ -56,47 +56,47 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "বাহ্যিক সংরক্ষণাগার" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +msgstr "মাউন্ট পয়েন্ট" #: templates/settings.php:9 msgid "Backend" -msgstr "প্রশাসক" +msgstr "পশ্চাদপট" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "কনফিগারেসন" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "বিকল্পসমূহ" #: templates/settings.php:12 msgid "Applicable" -msgstr "" +msgstr "প্রযোজ্য" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +msgstr "মাউন্ট পয়েন্ট যোগ কর" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "কোনটিই নির্ধারণ করা হয় নি" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "সমস্ত ব্যবহারকারী" #: templates/settings.php:87 msgid "Groups" -msgstr "গোষ্ঠী" +msgstr "গোষ্ঠীসমূহ" #: templates/settings.php:95 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যবহারকারী" #: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:144 templates/settings.php:145 @@ -105,16 +105,16 @@ msgstr "মুছে ফেল" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও" #: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL রুট সনদপত্র" #: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 69c55d62484..55a97e9d95c 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:58+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -23,17 +23,17 @@ msgstr "কূটশব্দ" #: templates/authenticate.php:6 msgid "Submit" -msgstr "পাঠাও" +msgstr "জমা দাও" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" #: templates/public.php:22 templates/public.php:38 msgid "Download" @@ -41,8 +41,8 @@ msgstr "ডাউনলোড" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" #: templates/public.php:43 msgid "web services under your control" -msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 9f543cad59e..51865f07105 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:28+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,24 +19,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "সমস্ত ভার্সন মেয়াদোত্তীর্ণ" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "ইতিহাস" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "ভার্সন" #: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "এটি আপনার বিদ্যমান ফাইলের সমস্ত ব্যাক-আপ ভার্সন মুছে ফেলবে।" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "ফাইল ভার্সন করা" #: templates/settings.php:4 msgid "Enable" -msgstr "সক্রিয়" +msgstr "সক্রিয় " diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 184ae9bb05d..0c8865693c2 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:27+0000\n" +"Last-Translator: Shubhra Paul \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,57 +17,57 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "সহায়িকা" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:304 +#: app.php:318 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যভহারকারী" -#: app.php:311 +#: app.php:325 msgid "Apps" -msgstr "অ্যাপস" +msgstr "অ্যাপ" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "প্রশাসক" #: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" #: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" #: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "ফাইলে ফিরে চল" #: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে" +msgstr "অনুমোদন ঘটিত সমস্যা" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -87,12 +87,12 @@ msgstr "সেকেন্ড পূর্বে" #: template.php:104 msgid "1 minute ago" -msgstr "1 মিনিট পূর্বে" +msgstr "১ মিনিট পূর্বে" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d মিনিট পূর্বে" #: template.php:106 msgid "1 hour ago" @@ -114,11 +114,11 @@ msgstr "গতকাল" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d দিন পূর্বে" #: template.php:111 msgid "last month" -msgstr "গতমাস" +msgstr "গত মাস" #: template.php:112 #, php-format @@ -136,15 +136,15 @@ msgstr "বছর পূর্বে" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s এখন সুলভ। আরও জানুন" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "সর্বশেষ" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index de192ed72c9..c5be1bf1219 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 09:43+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:52+0000\n" "Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -20,23 +20,23 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না" +msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "গোষ্ঠীটি বিদ্যমান" +msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "গোষ্ঠী যোগ করতে পারা গেল না" +msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না" +msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "ই-মেইল সংরক্ষণ করা হয়েছে" +msgstr "ই-মেইল সংরক্ষন করা হয়েছে" #: ajax/lostpassword.php:14 msgid "Invalid email" @@ -48,19 +48,19 @@ msgstr "OpenID পরিবর্তন করা হয়েছে" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "অননুমোদিত অনুরোধ" +msgstr "অনুরোধটি যথাযথ নয়" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না" +msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না " #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে" +msgstr "অনুমোদন ঘটিত সমস্যা" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না" +msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " #: ajax/setlanguage.php:15 msgid "Language changed" @@ -68,17 +68,17 @@ msgstr "ভাষা পরিবর্তন করা হয়েছে" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না " #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -86,15 +86,15 @@ msgstr "নিষ্ক্রিয়" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "সক্রিয়" +msgstr "সক্রিয় " #: js/personal.js:69 msgid "Saving..." -msgstr "সংরক্ষণ করা হচ্ছে...." +msgstr "সংরক্ষণ করা হচ্ছে.." #: personal.php:42 personal.php:43 msgid "__language_name__" -msgstr "_ভাষার_নাম_" +msgstr "__language_name__" #: templates/apps.php:10 msgid "Add your App" @@ -110,23 +110,23 @@ msgstr "অ্যাপ নির্বাচন করুন" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com" +msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" #: templates/apps.php:32 msgid "-licensed by " -msgstr "-লাইসেন্স করিয়েছেন " +msgstr "-লাইসেন্সধারী " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "ব্যবহারকারী সহায়িকা" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "প্রশাসক সহায়িকা" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "অনলাইন সহায়িকা" #: templates/help.php:7 msgid "Forum" @@ -143,7 +143,7 @@ msgstr "বাণিজ্যিক সাপোর্ট" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" #: templates/personal.php:12 msgid "Clients" @@ -155,11 +155,11 @@ msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS ক্লায়েন্ট ডাউনলোড করুন" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -167,11 +167,11 @@ msgstr "কূটশব্দ" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে" +msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না" +msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" #: templates/personal.php:24 msgid "Current password" @@ -187,11 +187,11 @@ msgstr "প্রদর্শন" #: templates/personal.php:27 msgid "Change password" -msgstr "কূটশব্দ পরিবর্তন কর" +msgstr "কূটশব্দ পরিবর্তন করুন" #: templates/personal.php:33 msgid "Email" -msgstr "ই-মেইল" +msgstr "ই-মেইল " #: templates/personal.php:34 msgid "Your email address" @@ -199,7 +199,7 @@ msgstr "আপনার ই-মেইল ঠিকানা" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -207,19 +207,19 @@ msgstr "ভাষা" #: templates/personal.php:47 msgid "Help translate" -msgstr "অনুবাদ করতে সাহায্য করুন" +msgstr "অনুবাদ করতে সহায়তা করুন" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "ভার্সন" #: templates/personal.php:65 msgid "" @@ -229,27 +229,27 @@ msgid "" "licensed under the AGPL." -msgstr "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত." +msgstr "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "নাম" +msgstr "রাম" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "গোষ্ঠী" +msgstr "গোষ্ঠীসমূহ" #: templates/users.php:32 msgid "Create" -msgstr "তৈরি কর" +msgstr "তৈরী কর" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "অসীম" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -257,15 +257,15 @@ msgstr "অন্যান্য" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "গোষ্ঠী প্রশাসন" +msgstr "গোষ্ঠী প্রশাসক" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "সংরক্ষণাগার" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "পূর্বনির্ধারিত" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 509354b9d66..75f4261e13f 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:27+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -32,31 +32,31 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "হোস্ট" #: templates/settings.php:15 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://" #: templates/settings.php:16 msgid "Base DN" -msgstr "" +msgstr "ভিত্তি DN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "ব্যবহারকারি DN" #: templates/settings.php:17 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 "" +msgstr "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" #: templates/settings.php:18 msgid "Password" @@ -64,119 +64,119 @@ msgstr "কূটশব্দ" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "ব্যবহারকারির প্রবেশ ছাঁকনী" #: templates/settings.php:19 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।" #: templates/settings.php:19 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "ব্যবহারকারী তালিকা ছাঁকনী" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "গোষ্ঠী ছাঁকনী" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।" #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "পোর্ট" #: templates/settings.php:25 msgid "Base User Tree" -msgstr "" +msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে" #: templates/settings.php:26 msgid "Base Group Tree" -msgstr "" +msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে" #: templates/settings.php:27 msgid "Group-Member association" -msgstr "" +msgstr "গোষ্ঠী-সদস্য সংস্থাপন" #: templates/settings.php:28 msgid "Use TLS" -msgstr "" +msgstr "TLS ব্যবহার কর" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।" #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" #: templates/settings.php:30 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।" #: templates/settings.php:30 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।" #: templates/settings.php:31 msgid "User Display Name Field" -msgstr "" +msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:31 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" #: templates/settings.php:32 msgid "Group Display Name Field" -msgstr "" +msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "বাইটে" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।" #: templates/settings.php:37 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" #: templates/settings.php:39 msgid "Help" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 3aa6ccffca6..99d191a99b1 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shubhra Paul , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:07+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL:http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 919095b8997..159d191a912 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 07:36+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,16 +26,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr " No s'ha pogut moure %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "No es pot canviar el nom del fitxer" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0e7e866a144..c5417ef8688 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 08:32+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,16 +23,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Nelze přesunout %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Nelze přejmenovat soubor" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index bb2f0da1820..cf08585d92b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 19:12+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" @@ -25,16 +25,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Kohteen %s siirto ei onnistunut" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 0b52b4e2f60..4b62b76f91a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -4,15 +4,15 @@ # # Translators: # Jesse Jaara , 2012. -# Jiri Grönroos , 2012. +# Jiri Grönroos , 2012-2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 19:18+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" @@ -251,7 +251,7 @@ msgstr "" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Rajoittamaton" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,7 +267,7 @@ msgstr "" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Oletus" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 3230fbb0c6d..cd05b6ab167 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -14,14 +14,14 @@ # Nahir Mohamed , 2012. # Robert Di Rosa <>, 2012. # , 2011. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:40+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,16 +32,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Impossible de déplacer %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Impossible de renommer le fichier" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index be09fe8f50a..df757df163f 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,14 +17,14 @@ # , 2012. # Robert Di Rosa <>, 2012. # , 2011, 2012. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-03 10:33+0000\n" -"Last-Translator: dbasquin \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:45+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,7 +165,7 @@ msgstr "Clients" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "Télécharger des clients de bureau" +msgstr "Télécharger le client de synchronisation pour votre ordinateur" #: templates/personal.php:14 msgid "Download Android Client" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index ee515cab580..1baa75ab8b0 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -6,14 +6,14 @@ # Christophe Lherieau , 2013. # , 2012. # Robert Di Rosa <>, 2012. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 14:46+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:41+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,4 +30,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide." +msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index ae7fa02d39f..b15e30cafe0 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -4,14 +4,14 @@ # # Translators: # , 2012. -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:41+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Flokkur ekki gefin" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Enginn flokkur til að bæta við?" +msgstr "Enginn flokkur til að bæta við?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " @@ -85,55 +85,55 @@ msgstr "Villa við að fjarlægja %s úr eftirlæti." msgid "Settings" msgstr "Stillingar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "í dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "í gær" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "síðasta ári" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "árum síðan" @@ -166,7 +166,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "Villa" +msgstr "Villa" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -295,7 +295,7 @@ msgstr "Tölvupóstur sendur" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "endursetja ownCloud lykilorð" +msgstr "endursetja ownCloud lykilorð" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -356,7 +356,7 @@ msgstr "Vefstjórn" #: strings.php:9 msgid "Help" -msgstr "Help" +msgstr "Hjálp" #: templates/403.php:12 msgid "Access forbidden" @@ -364,7 +364,7 @@ msgstr "Aðgangur bannaður" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Skýið finnst eigi" +msgstr "Ský finnst ekki" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -422,11 +422,11 @@ msgstr "verður notað" #: templates/installation.php:107 msgid "Database user" -msgstr "Notandi gagnagrunns" +msgstr "Gagnagrunns notandi" #: templates/installation.php:111 msgid "Database password" -msgstr "Lykilorð gagnagrunns" +msgstr "Gagnagrunns lykilorð" #: templates/installation.php:115 msgid "Database name" @@ -442,7 +442,7 @@ msgstr "Netþjónn gagnagrunns" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Ljúka uppsetningu" +msgstr "Virkja uppsetningu" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" @@ -569,7 +569,7 @@ msgstr "næsta" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/is/files.po b/l10n/is/files.po index d627daf38bf..f1c7c6d6dd1 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:46+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,20 +21,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Gat ekki fært %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Gat ekki endurskýrt skrá" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Engin skrá var send inn. Óþekkt villa." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -69,11 +69,11 @@ msgstr "Tókst ekki að skrifa á disk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Ekki nægt pláss tiltækt" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ógild mappa." #: appinfo/app.php:10 msgid "Files" @@ -129,11 +129,11 @@ msgstr "eyddi {files}" #: js/files.js:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' er ekki leyfilegt nafn." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Nafn skráar má ekki vera tómt" #: js/files.js:45 msgid "" @@ -184,7 +184,7 @@ msgstr "Vefslóð má ekki vera tóm." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" #: js/files.js:727 msgid "{count} files scanned" @@ -280,7 +280,7 @@ msgstr "Hætta við innsendingu" #: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Ekkert hér. Sendu eitthvað inn!" +msgstr "Ekkert hér. Settu eitthvað inn!" #: templates/index.php:70 msgid "Download" @@ -288,7 +288,7 @@ msgstr "Niðurhal" #: templates/index.php:102 msgid "Upload too large" -msgstr "Innsend skrá of stór" +msgstr "Innsend skrá er of stór" #: templates/index.php:104 msgid "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5b2d7ad671a..f97f4611f73 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:53+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:58+0000\n" "Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -110,11 +110,11 @@ msgstr "Veldu forrit" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Skoða forrita síðuna hjá apps.owncloud.com" +msgstr "Skoða síðu forrits hjá apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-leyfi skráð af " #: templates/help.php:3 msgid "User Documentation" @@ -257,7 +257,7 @@ msgstr "Annað" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "Hópa stjóri" +msgstr "Hópstjóri" #: templates/users.php:87 msgid "Storage" diff --git a/l10n/it/files.po b/l10n/it/files.po index 162104cd8c2..89db9dc1bd9 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:53+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,16 +24,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Impossibile spostare %s - un file con questo nome esiste già" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Impossibile spostare %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Impossibile rinominare il file" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 9f417264265..74cabcaca6b 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 04:09+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,16 +24,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s を移動できませんでした" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "ファイル名の変更ができません" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 0ae481a5b93..74b9f45b855 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:21+0000\n" +"Last-Translator: Mouxy \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,16 +25,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Não foi possível move o ficheiro %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Não foi possível renomear o ficheiro" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" @@ -188,7 +188,7 @@ msgstr "O URL não pode estar vazio." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" #: js/files.js:727 msgid "{count} files scanned" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ed620b3d817..cf942aa8217 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 3b19c76ccf2..6f509fb1ffd 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 725d407f1b5..ac1fed301a4 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2216112fdd3..e017b4bd81b 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c6bad656955..bb256dbbf30 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 5f6b249e535..379072c4af3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c5c54f1e478..4ceda32bb33 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cda81e89909..be2ac335141 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index d1776300b9f..e3da6808aa2 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 241d9102a86..eb2179f0e93 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index bcdc1a3f2f8..45d59ebdf43 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 07:49+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:18+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -24,38 +24,38 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個檔案" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個資料夾" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "未提供分類類型。" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "無分類添加?" +msgstr "沒有可增加的分類?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "此分類已經存在:" +msgstr "此分類已經存在:" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -67,21 +67,21 @@ msgstr "不支援的物件類型" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "未提供 %s ID 。" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "加入 %s 到最愛時發生錯誤。" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "沒選擇要刪除的分類" +msgstr "沒有選擇要刪除的分類。" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "從最愛移除 %s 時發生錯誤。" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -105,7 +105,7 @@ msgstr "1 個小時前" #: js/js.js:715 msgid "{hours} hours ago" -msgstr "{hours} 個小時前" +msgstr "{hours} 小時前" #: js/js.js:716 msgid "today" @@ -162,7 +162,7 @@ msgstr "Ok" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "未指定物件類型。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 @@ -172,11 +172,11 @@ msgstr "錯誤" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "沒有詳述APP名稱." +msgstr "沒有指定 app 名稱。" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "沒有安裝所需的檔案 {file} !" #: js/share.js:124 js/share.js:594 msgid "Error while sharing" @@ -200,7 +200,7 @@ msgstr "{owner} 已經和您分享" #: js/share.js:158 msgid "Share with" -msgstr "與分享" +msgstr "與...分享" #: js/share.js:163 msgid "Share with link" @@ -217,11 +217,11 @@ msgstr "密碼" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "將連結 email 給別人" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "寄出" #: js/share.js:177 msgid "Set expiration date" @@ -233,7 +233,7 @@ msgstr "到期日" #: js/share.js:210 msgid "Share via email:" -msgstr "透過email分享:" +msgstr "透過 email 分享:" #: js/share.js:212 msgid "No people found" @@ -277,7 +277,7 @@ msgstr "分享" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "密碼保護" +msgstr "受密碼保護" #: js/share.js:554 msgid "Error unsetting expiration date" @@ -289,11 +289,11 @@ msgstr "錯誤的到期日設定" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "正在寄出..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email 已寄出" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -301,19 +301,19 @@ msgstr "ownCloud 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請循以下聯結重設你的密碼: (聯結) " +msgstr "請循以下聯結重設你的密碼: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "重設密碼的連結將會寄到你的電子郵件信箱" +msgstr "重設密碼的連結將會寄到你的電子郵件信箱。" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "重設郵件已送出." +msgstr "重設郵件已送出。" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "請求失敗!" +msgstr "請求失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 @@ -322,7 +322,7 @@ msgstr "使用者名稱" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "要求重設" +msgstr "請求重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -362,7 +362,7 @@ msgstr "幫助" #: templates/403.php:12 msgid "Access forbidden" -msgstr "禁止存取" +msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" @@ -374,7 +374,7 @@ msgstr "編輯分類" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "添加" +msgstr "增加" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -384,7 +384,7 @@ msgstr "安全性警告" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能." +msgstr "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。" #: templates/installation.php:26 msgid "" @@ -524,7 +524,7 @@ msgstr "十二月" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "網路服務已在你控制" +msgstr "網路服務在您控制之下" #: templates/layout.user.php:45 msgid "Log out" @@ -546,7 +546,7 @@ msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" -msgstr "忘記密碼?" +msgstr "忘記密碼?" #: templates/login.php:39 msgid "remember" @@ -571,11 +571,11 @@ msgstr "下一頁" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "安全性警告!" +msgstr "安全性警告!" #: templates/verify.php:6 msgid "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index e2be3a8a9f3..bed97e748a0 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:24+0000\n" +"Last-Translator: pellaeon \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" @@ -25,20 +25,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "無法移動 %s - 同名的檔案已經存在" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "無法移動 %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "無法重新命名檔案" #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "沒有檔案被上傳. 未知的錯誤." +msgstr "沒有檔案被上傳。未知的錯誤。" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -53,11 +53,11 @@ msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制" +msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "只有部分檔案被上傳" +msgstr "只有檔案的一部分被上傳" #: ajax/upload.php:27 msgid "No file was uploaded" @@ -125,7 +125,7 @@ msgstr "使用 {new_name} 取代 {old_name}" #: js/filelist.js:288 msgid "unshared {files}" -msgstr "停止分享 {files}" +msgstr "已取消分享 {files}" #: js/filelist.js:290 msgid "deleted {files}" @@ -147,7 +147,7 @@ msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 #: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "產生壓縮檔, 它可能需要一段時間." +msgstr "產生 ZIP 壓縮檔,這可能需要一段時間。" #: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -180,11 +180,11 @@ msgstr "上傳取消" #: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "檔案上傳中. 離開此頁面將會取消上傳." +msgstr "檔案上傳中。離開此頁面將會取消上傳。" #: js/files.js:537 msgid "URL cannot be empty." -msgstr "URL不能為空白." +msgstr "URL 不能為空白." #: js/files.js:543 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -232,15 +232,15 @@ msgstr "檔案處理" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上傳容量" +msgstr "最大上傳檔案大小" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大允許: " +msgstr "最大允許:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "針對多檔案和目錄下載是必填的" +msgstr "針對多檔案和目錄下載是必填的。" #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -252,7 +252,7 @@ msgstr "0代表沒有限制" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "針對ZIP檔案最大輸入大小" +msgstr "針對 ZIP 檔案最大輸入大小" #: templates/admin.php:26 msgid "Save" @@ -284,7 +284,7 @@ msgstr "取消上傳" #: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "沒有任何東西。請上傳內容!" +msgstr "沒有任何東西。請上傳內容!" #: templates/index.php:70 msgid "Download" @@ -298,7 +298,7 @@ msgstr "上傳過大" msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "你試圖上傳的檔案已超過伺服器的最大容量限制。 " +msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 " #: templates/index.php:109 msgid "Files are being scanned, please wait." diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6168a8b0d36..59f4edcfa69 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,6 +5,7 @@ # Translators: # Donahue Chuang , 2012. # , 2012. +# , 2013. # , 2012. # , 2012. # , 2012. @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:10+0000\n" +"Last-Translator: pellaeon \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" @@ -123,27 +124,27 @@ msgstr "-核准: " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "用戶說明文件" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理者說明文件" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "線上說明文件" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "論壇" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "商用支援" #: templates/personal.php:8 #, php-format @@ -156,15 +157,15 @@ msgstr "客戶" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "下載桌面客戶端" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "下載 Android 客戶端" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "下載 iOS 客戶端" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -216,15 +217,15 @@ msgstr "幫助翻譯" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "版本" #: templates/personal.php:65 msgid "" @@ -250,11 +251,11 @@ msgstr "創造" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "預設儲存區" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "無限制" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +267,11 @@ msgstr "群組 管理員" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "儲存區" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "預設" #: templates/users.php:161 msgid "Delete" diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 275d3c0f05c..cb6ff4455a9 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -2,17 +2,28 @@ "Help" => "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", -"Users" => "ব্যবহারকারিবৃন্দ", -"Apps" => "অ্যাপস", +"Users" => "ব্যভহারকারী", +"Apps" => "অ্যাপ", "Admin" => "প্রশাসক", -"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", +"ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", +"Files need to be downloaded one by one." => "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।", +"Back to Files" => "ফাইলে ফিরে চল", +"Selected files too large to generate zip file." => "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।", +"Application is not enabled" => "অ্যাপ্লিকেসনটি সক্রিয় নয়", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Token expired. Please reload page." => "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", "Files" => "ফাইল", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "1 মিনিট পূর্বে", +"1 minute ago" => "১ মিনিট পূর্বে", +"%d minutes ago" => "%d মিনিট পূর্বে", "1 hour ago" => "1 ঘন্টা পূর্বে", "today" => "আজ", "yesterday" => "গতকাল", -"last month" => "গতমাস", +"%d days ago" => "%d দিন পূর্বে", +"last month" => "গত মাস", "last year" => "গত বছর", -"years ago" => "বছর পূর্বে" +"years ago" => "বছর পূর্বে", +"%s is available. Get more information" => "%s এখন সুলভ। আরও জানুন", +"up to date" => "সর্বশেষ", +"updates check is disabled" => "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" ); diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 0b7983c6c1c..49b86c0e5e7 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,46 +1,63 @@ "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না", -"Group already exists" => "গোষ্ঠীটি বিদ্যমান", -"Unable to add group" => "গোষ্ঠী যোগ করতে পারা গেল না", -"Could not enable app. " => "অ্যাপ সক্রিয় করা সম্ভব হলো না", -"Email saved" => "ই-মেইল সংরক্ষণ করা হয়েছে", +"Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", +"Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", +"Unable to add group" => "গোষ্ঠী যোগ করা সম্ভব হলো না", +"Could not enable app. " => "অ্যপটি সক্রিয় করতে সক্ষম নয়।", +"Email saved" => "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" => "ই-মেইলটি সঠিক নয়", "OpenID Changed" => "OpenID পরিবর্তন করা হয়েছে", -"Invalid request" => "অননুমোদিত অনুরোধ", -"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না", -"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", -"Unable to delete user" => "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না", +"Invalid request" => "অনুরোধটি যথাযথ নয়", +"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Unable to delete user" => "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Language changed" => "ভাষা পরিবর্তন করা হয়েছে", +"Admins can't remove themself from the admin group" => "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", +"Unable to add user to group %s" => " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", +"Unable to remove user from group %s" => "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", "Disable" => "নিষ্ক্রিয়", -"Enable" => "সক্রিয়", -"Saving..." => "সংরক্ষণ করা হচ্ছে....", -"__language_name__" => "_ভাষার_নাম_", +"Enable" => "সক্রিয় ", +"Saving..." => "সংরক্ষণ করা হচ্ছে..", +"__language_name__" => "__language_name__", "Add your App" => "আপনার অ্যাপটি যোগ করুন", "More Apps" => "আরও অ্যাপ", "Select an App" => "অ্যাপ নির্বাচন করুন", -"See application page at apps.owncloud.com" => "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com", -"-licensed by " => "-লাইসেন্স করিয়েছেন ", +"See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", +"-licensed by " => "-লাইসেন্সধারী ", +"User Documentation" => "ব্যবহারকারী সহায়িকা", +"Administrator Documentation" => "প্রশাসক সহায়িকা", +"Online Documentation" => "অনলাইন সহায়িকা", "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Clients" => "ক্লায়েন্ট", "Download Desktop Clients" => "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন", +"Download Android Client" => "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন", +"Download iOS Client" => "iOS ক্লায়েন্ট ডাউনলোড করুন", "Password" => "কূটশব্দ", -"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে", -"Unable to change your password" => "কূটশব্দ পরিবর্তন করা সম্ভব হলো না", +"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে ", +"Unable to change your password" => "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", "Current password" => "বর্তমান কূটশব্দ", "New password" => "নতুন কূটশব্দ", "show" => "প্রদর্শন", -"Change password" => "কূটশব্দ পরিবর্তন কর", -"Email" => "ই-মেইল", +"Change password" => "কূটশব্দ পরিবর্তন করুন", +"Email" => "ই-মেইল ", "Your email address" => "আপনার ই-মেইল ঠিকানা", +"Fill in an email address to enable password recovery" => "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন", "Language" => "ভাষা", -"Help translate" => "অনুবাদ করতে সাহায্য করুন", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত.", -"Name" => "নাম", -"Groups" => "গোষ্ঠী", -"Create" => "তৈরি কর", +"Help translate" => "অনুবাদ করতে সহায়তা করুন", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন", +"Version" => "ভার্সন", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।", +"Name" => "রাম", +"Groups" => "গোষ্ঠীসমূহ", +"Create" => "তৈরী কর", +"Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", +"Unlimited" => "অসীম", "Other" => "অন্যান্য", -"Group Admin" => "গোষ্ঠী প্রশাসন", +"Group Admin" => "গোষ্ঠী প্রশাসক", +"Storage" => "সংরক্ষণাগার", +"Default" => "পূর্বনির্ধারিত", "Delete" => "মুছে ফেল" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 5700f86036f..cf80b5187ec 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -53,7 +53,9 @@ "Name" => "Nimi", "Groups" => "Ryhmät", "Create" => "Luo", +"Unlimited" => "Rajoittamaton", "Other" => "Muu", "Group Admin" => "Ryhmän ylläpitäjä", +"Default" => "Oletus", "Delete" => "Poista" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a8367ef458d..0004d24fc7b 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -31,7 +31,7 @@ "Commercial Support" => "Support commercial", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", "Clients" => "Clients", -"Download Desktop Clients" => "Télécharger des clients de bureau", +"Download Desktop Clients" => "Télécharger le client de synchronisation pour votre ordinateur", "Download Android Client" => "Télécharger le client Android", "Download iOS Client" => "Télécharger le client iOS", "Password" => "Mot de passe", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2056dfc5b72..7f5fa384133 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -21,7 +21,8 @@ "Add your App" => "Bæta við forriti", "More Apps" => "Fleiri forrit", "Select an App" => "Veldu forrit", -"See application page at apps.owncloud.com" => "Skoða forrita síðuna hjá apps.owncloud.com", +"See application page at apps.owncloud.com" => "Skoða síðu forrits hjá apps.owncloud.com", +"-licensed by " => "-leyfi skráð af ", "User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", @@ -55,7 +56,7 @@ "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", "Other" => "Annað", -"Group Admin" => "Hópa stjóri", +"Group Admin" => "Hópstjóri", "Storage" => "gagnapláss", "Default" => "Sjálfgefið", "Delete" => "Eyða" diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index d25ae4e149c..255eb5ee2c1 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -23,8 +23,17 @@ "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", +"User Documentation" => "用戶說明文件", +"Administrator Documentation" => "管理者說明文件", +"Online Documentation" => "線上說明文件", +"Forum" => "論壇", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "商用支援", "You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", "Clients" => "客戶", +"Download Desktop Clients" => "下載桌面客戶端", +"Download Android Client" => "下載 Android 客戶端", +"Download iOS Client" => "下載 iOS 客戶端", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", +"Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud 社區開發,源代碼AGPL許可證下發布。", "Name" => "名稱", "Groups" => "群組", "Create" => "創造", +"Default Storage" => "預設儲存區", +"Unlimited" => "無限制", "Other" => "其他", "Group Admin" => "群組 管理員", +"Storage" => "儲存區", +"Default" => "預設", "Delete" => "刪除" ); -- cgit v1.2.3