diff --git a/3rdparty/MDB2/Driver/Reverse/oci8.php b/3rdparty/MDB2/Driver/Reverse/oci8.php index c86847fa6b..d89ad77137 100644 --- a/3rdparty/MDB2/Driver/Reverse/oci8.php +++ b/3rdparty/MDB2/Driver/Reverse/oci8.php @@ -84,12 +84,12 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common $owner = $db->dsn['username']; } - $query = 'SELECT column_name name, - data_type "type", - nullable, - data_default "default", - COALESCE(data_precision, data_length) "length", - data_scale "scale" + $query = 'SELECT column_name AS "name", + data_type AS "type", + nullable AS "nullable", + data_default AS "default", + COALESCE(data_precision, data_length) AS "length", + data_scale AS "scale" FROM all_tab_columns WHERE (table_name=? OR table_name=?) AND (owner=? OR owner=?) @@ -146,6 +146,10 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common if ($default === 'NULL') { $default = null; } + //ugly hack, but works for the reverse direction + if ($default == "''") { + $default = ''; + } if ((null === $default) && $notnull) { $default = ''; } @@ -221,11 +225,11 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common $owner = $db->dsn['username']; } - $query = "SELECT aic.column_name, - aic.column_position, - aic.descend, - aic.table_owner, - alc.constraint_type + $query = 'SELECT aic.column_name AS "column_name", + aic.column_position AS "column_position", + aic.descend AS "descend", + aic.table_owner AS "table_owner", + alc.constraint_type AS "constraint_type" FROM all_ind_columns aic LEFT JOIN all_constraints alc ON aic.index_name = alc.constraint_name @@ -234,7 +238,7 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common WHERE (aic.table_name=? OR aic.table_name=?) AND (aic.index_name=? OR aic.index_name=?) AND (aic.table_owner=? OR aic.table_owner=?) - ORDER BY column_position"; + ORDER BY column_position'; $stmt = $db->prepare($query); if (PEAR::isError($stmt)) { return $stmt; @@ -331,9 +335,9 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common \'SIMPLE\' "match", CASE alc.deferrable WHEN \'NOT DEFERRABLE\' THEN 0 ELSE 1 END "deferrable", CASE alc.deferred WHEN \'IMMEDIATE\' THEN 0 ELSE 1 END "initiallydeferred", - alc.search_condition, + alc.search_condition AS "search_condition", alc.table_name, - cols.column_name, + cols.column_name AS "column_name", cols.position, r_alc.table_name "references_table", r_cols.column_name "references_field", @@ -509,14 +513,14 @@ class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common return $db; } - $query = 'SELECT trigger_name, - table_name, - trigger_body, - trigger_type, - triggering_event trigger_event, - description trigger_comment, - 1 trigger_enabled, - when_clause + $query = 'SELECT trigger_name AS "trigger_name", + table_name AS "table_name", + trigger_body AS "trigger_body", + trigger_type AS "trigger_type", + triggering_event AS "trigger_event", + description AS "trigger_comment", + 1 AS "trigger_enabled", + when_clause AS "when_clause" FROM user_triggers WHERE trigger_name = \''. strtoupper($trigger).'\''; $types = array( diff --git a/3rdparty/MDB2/Driver/oci8.php b/3rdparty/MDB2/Driver/oci8.php index 9f4137d610..a1eefc94d1 100644 --- a/3rdparty/MDB2/Driver/oci8.php +++ b/3rdparty/MDB2/Driver/oci8.php @@ -634,6 +634,59 @@ class MDB2_Driver_oci8 extends MDB2_Driver_Common return $query; } + /** + * Obtain DBMS specific SQL code portion needed to declare a generic type + * field to be used in statement like CREATE TABLE, without the field name + * and type values (ie. just the character set, default value, if the + * field is permitted to be NULL or not, and the collation options). + * + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * default + * Text value to be used as default for this field. + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * charset + * Text value with the default CHARACTER SET for this field. + * collation + * Text value with the default COLLATION for this field. + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field's options. + * @access protected + */ + function _getDeclarationOptions($field) + { + $charset = empty($field['charset']) ? '' : + ' '.$this->_getCharsetFieldDeclaration($field['charset']); + + $notnull = empty($field['notnull']) ? ' NULL' : ' NOT NULL'; + $default = ''; + if (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $db = $this->getDBInstance(); + if (PEAR::isError($db)) { + return $db; + } + $valid_default_values = $this->getValidTypes(); + $field['default'] = $valid_default_values[$field['type']]; + if ($field['default'] === '' && ($db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL)) { + $field['default'] = ' '; + } + } + if (null !== $field['default']) { + $default = ' DEFAULT ' . $this->quote($field['default'], $field['type']); + } + } + + $collation = empty($field['collation']) ? '' : + ' '.$this->_getCollationFieldDeclaration($field['collation']); + + return $charset.$default.$notnull.$collation; + } + // }}} // {{{ _doQuery() diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 4619315ce0..495c821216 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -67,7 +67,7 @@ if($source) { $result=OC_Filesystem::file_put_contents($target, $sourceStream); if($result) { $mime=OC_Filesystem::getMimetype($target); - $eventSource->send('success', $mime); + $eventSource->send('success', array('mime'=>$mime, 'size'=>OC_Filesystem::filesize($target))); } else { $eventSource->send('error', "Error while downloading ".$source. ' to '.$target); } diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 7709becc6a..fb3e277a21 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ if(strpos($dir, '..') === false) { for($i=0;$i<$fileCount;$i++) { $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { - $meta=OC_FileCache_Cached::get($target); + $meta = OC_FileCache::get($target); $result[]=array( "status" => "success", 'mime'=>$meta['mimetype'],'size'=>$meta['size'],'name'=>basename($target)); } } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 7ebfd4b68b..f2b558496e 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -260,7 +260,6 @@ var FileList={ FileList.prepareDeletion(files); } FileList.lastAction(); - return; } FileList.prepareDeletion(files); // NOTE: Temporary fix to change the text to unshared for files in root of Shared folder diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 101e2bad2e..aefd6f20be 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -253,10 +253,10 @@ $(document).ready(function() { var img = OC.imagePath('core', 'loading.gif'); var tr=$('tr').filterAttr('data-file',dirName); tr.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text('1 file uploading'); + uploadtext.text(t('files', '1 file uploading')); uploadtext.show(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } } } @@ -301,7 +301,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } }) .error(function(jqXHR, textStatus, errorThrown) { @@ -316,7 +316,7 @@ $(document).ready(function() { uploadtext.text(''); uploadtext.hide(); } else { - uploadtext.text(currentUploads + ' files uploading') + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); } $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); @@ -556,10 +556,12 @@ $(document).ready(function() { eventSource.listen('progress',function(progress){ $('#uploadprogressbar').progressbar('value',progress); }); - eventSource.listen('success',function(mime){ + eventSource.listen('success',function(data){ + var mime=data.mime; + var size=data.size; $('#uploadprogressbar').fadeOut(); var date=new Date(); - FileList.addFile(localName,0,date,false,hidden); + FileList.addFile(localName,size,date,false,hidden); var tr=$('tr').filterAttr('data-file',localName); tr.data('mime',mime); getMimeIcon(mime,function(path){ @@ -661,7 +663,7 @@ function scanFiles(force,dir){ var scannerEventSource=new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); scanFiles.cancel=scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('scanning',function(data){ - $('#scan-count').text(data.count+' files scanned'); + $('#scan-count').text(data.count + ' ' + t('files', 'files scanned')); $('#scan-current').text(data.file+'/'); }); scannerEventSource.listen('success',function(success){ @@ -669,7 +671,7 @@ function scanFiles(force,dir){ if(success){ window.location.reload(); }else{ - alert('error while scanning'); + alert(t('files', 'error while scanning')); } }); } diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 020f6142ec..de0df6a26f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -7,13 +7,16 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Files" => "Filer", +"Unshare" => "Fjern deling", "Delete" => "Slet", "already exists" => "findes allerede", "replace" => "erstat", +"suggest name" => "foreslå navn", "cancel" => "fortryd", "replaced" => "erstattet", "undo" => "fortryd", "with" => "med", +"unshared" => "udelt", "deleted" => "Slettet", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", @@ -35,6 +38,7 @@ "Enable ZIP-download" => "Muliggør ZIP-download", "0 is unlimited" => "0 er ubegrænset", "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", +"Save" => "Gem", "New" => "Ny", "Text file" => "Tekstfil", "Folder" => "Mappe", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 324fae16f0..701c3e877a 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -52,5 +52,5 @@ "Upload too large" => "Upload zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", -"Current scanning" => "Scannen" +"Current scanning" => "Scanne" ); diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9f311c6b28..5b9f11814c 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "Λείπει ένας προσωρινός φάκελος", "Failed to write to disk" => "Η εγγραφή στο δίσκο απέτυχε", "Files" => "Αρχεία", +"Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", "already exists" => "υπάρχει ήδη", "replace" => "αντικατέστησε", +"suggest name" => "συνιστώμενο όνομα", "cancel" => "ακύρωση", "replaced" => "αντικαταστάθηκε", "undo" => "αναίρεση", "with" => "με", +"unshared" => "Διακόπηκε η κοινή χρήση", "deleted" => "διαγράφηκε", "generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην μεταφόρτωση του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Μεταφόρτωσης", "Pending" => "Εν αναμονή", "Upload cancelled." => "Η μεταφόρτωση ακυρώθηκε.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση.", "Invalid name, '/' is not allowed." => "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται.", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", "0 is unlimited" => "0 για απεριόριστο", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", +"Save" => "Αποθήκευση", "New" => "Νέο", "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 929a2ffd4a..c0f08b118d 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Il manque un répertoire temporaire", "Failed to write to disk" => "Erreur d'écriture sur le disque", "Files" => "Fichiers", +"Unshare" => "Ne plus partager", "Delete" => "Supprimer", "already exists" => "existe déjà", "replace" => "remplacer", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 65d093e366..e7ab4a524b 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -8,6 +8,7 @@ "Failed to write to disk" => "הכתיבה לכונן נכשלה", "Files" => "קבצים", "Delete" => "מחיקה", +"already exists" => "כבר קיים", "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" => "שגיאת העלאה", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index d3814333ac..289a613915 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", "Files" => "Pliki", +"Unshare" => "Nie udostępniaj", "Delete" => "Usuwa element", "already exists" => "Już istnieje", "replace" => "zastap", @@ -15,6 +16,7 @@ "replaced" => "zastąpione", "undo" => "wróć", "with" => "z", +"unshared" => "Nie udostępnione", "deleted" => "skasuj", "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", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php new file mode 100644 index 0000000000..f43959d4e9 --- /dev/null +++ b/apps/files/l10n/ru_RU.php @@ -0,0 +1,56 @@ + "Ошибка отсутствует, файл загружен успешно.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", +"The uploaded file was only partially uploaded" => "Загружаемый файл был загружен частично", +"No file was uploaded" => "Файл не был загружен", +"Missing a temporary folder" => "Отсутствует временная папка", +"Failed to write to disk" => "Не удалось записать на диск", +"Files" => "Файлы", +"Unshare" => "Скрыть", +"Delete" => "Удалить", +"already exists" => "уже существует", +"replace" => "отмена", +"suggest name" => "подобрать название", +"cancel" => "отменить", +"replaced" => "заменено", +"undo" => "отменить действие", +"with" => "с", +"unshared" => "скрытый", +"deleted" => "удалено", +"generating ZIP-file, it may take some time." => "Создание ZIP-файла, это может занять некоторое время.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией", +"Upload Error" => "Ошибка загрузки", +"Pending" => "Ожидающий решения", +"Upload cancelled." => "Загрузка отменена", +"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", +"Invalid name, '/' is not allowed." => "Неправильное имя, '/' не допускается.", +"Size" => "Размер", +"Modified" => "Изменен", +"folder" => "папка", +"folders" => "папки", +"file" => "файл", +"files" => "файлы", +"File handling" => "Работа с файлами", +"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-файлов ", +"Save" => "Сохранить", +"New" => "Новый", +"Text file" => "Текстовый файл", +"Folder" => "Папка", +"From url" => "Из url", +"Upload" => "Загрузить ", +"Cancel upload" => "Отмена загрузки", +"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", +"Name" => "Имя", +"Share" => "Сделать общим", +"Download" => "Загрузить", +"Upload too large" => "Загрузка слишком велика", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер.", +"Files are being scanned, please wait." => "Файлы сканируются, пожалуйста, подождите.", +"Current scanning" => "Текущее сканирование" +); diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 42063712ea..846f4234de 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -7,19 +7,23 @@ "Missing a temporary folder" => "丢失了一个临时文件夹", "Failed to write to disk" => "写磁盘失败", "Files" => "文件", +"Unshare" => "取消共享", "Delete" => "删除", "already exists" => "已经存在了", "replace" => "替换", +"suggest name" => "推荐名称", "cancel" => "取消", "replaced" => "替换过了", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消共享", "deleted" => "删除", "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" => "上传错误", "Pending" => "Pending", "Upload cancelled." => "上传取消了", +"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "Invalid name, '/' is not allowed." => "非法文件名,\"/\"是不被许可的", "Size" => "大小", "Modified" => "修改日期", @@ -34,6 +38,7 @@ "Enable ZIP-download" => "支持ZIP下载", "0 is unlimited" => "0是无限的", "Maximum input size for ZIP files" => "最大的ZIP文件输入大小", +"Save" => "保存", "New" => "新建", "Text file" => "文本文档", "Folder" => "文件夹", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 3fdb5b6af3..cd8dbe406a 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -7,6 +7,7 @@ "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", "Files" => "文件", +"Unshare" => "取消分享", "Delete" => "删除", "already exists" => "已经存在", "replace" => "替换", @@ -15,6 +16,7 @@ "replaced" => "已经替换", "undo" => "撤销", "with" => "随着", +"unshared" => "已取消分享", "deleted" => "已经删除", "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_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php new file mode 100644 index 0000000000..144c9f9708 --- /dev/null +++ b/apps/files_encryption/l10n/da.php @@ -0,0 +1,6 @@ + "Kryptering", +"Exclude the following file types from encryption" => "Ekskluder følgende filtyper fra kryptering", +"None" => "Ingen", +"Enable Encryption" => "Aktivér kryptering" +); diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..297444fcf5 --- /dev/null +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -0,0 +1,6 @@ + "加密", +"Exclude the following file types from encryption" => "从加密中排除如下文件类型", +"None" => "无", +"Enable Encryption" => "启用加密" +); diff --git a/apps/files_external/js/dropbox.js b/apps/files_external/js/dropbox.js index dd3a1cb185..6082fdd2cb 100644 --- a/apps/files_external/js/dropbox.js +++ b/apps/files_external/js/dropbox.js @@ -19,6 +19,7 @@ $(document).ready(function() { if (result && result.status == 'success') { $(token).val(result.access_token); $(token_secret).val(result.access_token_secret); + $(configured).val('true'); OC.MountConfig.saveStorage(tr); $(tr).find('.configuration input').attr('disabled', 'disabled'); $(tr).find('.configuration').append('Access granted'); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 7dcf13b397..3de151eb75 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,10 +1,18 @@ "Εξωτερική αποθήκευση", +"External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", +"Backend" => "Σύστημα υποστήριξης", "Configuration" => "Ρυθμίσεις", "Options" => "Επιλογές", +"Applicable" => "Εφαρμόσιμο", +"Add mount point" => "Προσθήκη σημείου προσάρτησης", +"None set" => "Κανένα επιλεγμένο", "All Users" => "Όλοι οι χρήστες", "Groups" => "Ομάδες", "Users" => "Χρήστες", -"Delete" => "Διαγραφή" +"Delete" => "Διαγραφή", +"SSL root certificates" => "Πιστοποιητικά SSL root", +"Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root", +"Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", +"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" ); diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..6a6d1c6d12 --- /dev/null +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -0,0 +1,18 @@ + "外部存储", +"Mount point" => "挂载点", +"Backend" => "后端", +"Configuration" => "配置", +"Options" => "选项", +"Applicable" => "可应用", +"Add mount point" => "添加挂载点", +"None set" => "未设置", +"All Users" => "所有用户", +"Groups" => "群组", +"Users" => "用户", +"Delete" => "删除", +"SSL root certificates" => "SSL 根证书", +"Import Root Certificate" => "导入根证书", +"Enable User External Storage" => "启用用户外部存储", +"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储" +); diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index b586ce1e8c..d2be21b711 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -21,7 +21,9 @@ */ OCP\Util::addScript('files_external', 'settings'); +OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min'); OCP\Util::addStyle('files_external', 'settings'); +OCP\Util::addStyle('3rdparty', 'chosen/chosen'); $tmpl = new OCP\Template('files_external', 'settings'); $tmpl->assign('isAdminPage', true, false); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php new file mode 100644 index 0000000000..1fd9f774a9 --- /dev/null +++ b/apps/files_sharing/l10n/da.php @@ -0,0 +1,7 @@ + "Kodeord", +"Submit" => "Send", +"Download" => "Download", +"No preview available for" => "Forhåndsvisning ikke tilgængelig for", +"web services under your control" => "Webtjenester under din kontrol" +); diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 123a008e55..3406c508e6 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,4 +1,7 @@ "Συνθηματικό", -"Submit" => "Καταχώρηση" +"Submit" => "Καταχώρηση", +"Download" => "Λήψη", +"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας" ); diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..fdde2c641f --- /dev/null +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "密码", +"Submit" => "提交", +"Download" => "下载", +"No preview available for" => "没有预览可用于", +"web services under your control" => "您控制的网络服务" +); diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index b6ddc6feec..51ff7aba1d 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,6 +1,5 @@ "Expira totes les versions", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", -"Enable Files Versioning" => "Habilita les versions de fitxers" +"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" ); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index 4f33c1915f..c99c4a27e8 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -2,5 +2,6 @@ "Expire all versions" => "Vypršet všechny verze", "Versions" => "Verze", "This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", -"Enable Files Versioning" => "Povolit verzování souborů" +"Files Versioning" => "Verzování souborů", +"Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/da.php b/apps/files_versions/l10n/da.php new file mode 100644 index 0000000000..6a69fdbe4c --- /dev/null +++ b/apps/files_versions/l10n/da.php @@ -0,0 +1,5 @@ + "Lad alle versioner udløbe", +"Versions" => "Versioner", +"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer" +); diff --git a/apps/files_versions/l10n/de.php b/apps/files_versions/l10n/de.php index 2c15884d1b..235e31aedf 100644 --- a/apps/files_versions/l10n/de.php +++ b/apps/files_versions/l10n/de.php @@ -2,5 +2,6 @@ "Expire all versions" => "Alle Versionen löschen", "Versions" => "Versionen", "This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", -"Enable Files Versioning" => "Datei-Versionierung aktivieren" +"Files Versioning" => "Dateiversionierung", +"Enable" => "Aktivieren" ); diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index 8953c96bd1..24511f3739 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -1,4 +1,7 @@ "Λήξη όλων των εκδόσεων", -"Enable Files Versioning" => "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων" +"Versions" => "Εκδόσεις", +"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", +"Files Versioning" => "Εκδόσεις Αρχείων", +"Enable" => "Ενεργοποίηση" ); diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index 2f22b5ac0a..d0f89c576d 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,6 +1,5 @@ "Eksvalidigi ĉiujn eldonojn", "Versions" => "Eldonoj", -"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj", -"Enable Files Versioning" => "Kapabligi dosiereldonkontrolon" +"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" ); diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 83d7ed0da2..cff15bce43 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -2,5 +2,6 @@ "Expire all versions" => "Expirar todas las versiones", "Versions" => "Versiones", "This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", -"Enable Files Versioning" => "Habilitar versionamiento de archivos" +"Files Versioning" => "Versionado de archivos", +"Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index cfc48537e0..f1ebd082ad 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -1,6 +1,5 @@ "Kõikide versioonide aegumine", "Versions" => "Versioonid", -"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni", -"Enable Files Versioning" => "Luba failide versioonihaldus" +"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni" ); diff --git a/apps/files_versions/l10n/eu.php b/apps/files_versions/l10n/eu.php index 0f065c1e93..889e762c6b 100644 --- a/apps/files_versions/l10n/eu.php +++ b/apps/files_versions/l10n/eu.php @@ -1,6 +1,5 @@ "Iraungi bertsio guztiak", "Versions" => "Bertsioak", -"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", -"Enable Files Versioning" => "Gaitu fitxategien bertsioak" +"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu" ); diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index e2dc6cba63..98dd415969 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -1,4 +1,3 @@ "انقضای تمامی نسخه‌ها", -"Enable Files Versioning" => "فعال‌کردن پرونده‌های نسخه‌بندی" +"Expire all versions" => "انقضای تمامی نسخه‌ها" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index 5cfcbf28bd..bc8aa67dc7 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -1,6 +1,5 @@ "Vanhenna kaikki versiot", "Versions" => "Versiot", -"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", -"Enable Files Versioning" => "Käytä tiedostojen versiointia" +"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 965fa02de9..b0e658e8df 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,6 +1,5 @@ "Supprimer les versions intermédiaires", "Versions" => "Versions", -"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", -"Enable Files Versioning" => "Activer le versionnage" +"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." ); diff --git a/apps/files_versions/l10n/he.php b/apps/files_versions/l10n/he.php index 097169b2a4..09a013f45a 100644 --- a/apps/files_versions/l10n/he.php +++ b/apps/files_versions/l10n/he.php @@ -1,6 +1,5 @@ "הפגת תוקף כל הגרסאות", "Versions" => "גרסאות", -"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך", -"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים" +"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index b7b0b9627b..59f7e759b1 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -2,5 +2,6 @@ "Expire all versions" => "Scadenza di tutte le versioni", "Versions" => "Versioni", "This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", -"Enable Files Versioning" => "Abilita controllo di versione" +"Files Versioning" => "Controllo di versione dei file", +"Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index 81d17f56f8..7a00d0b4da 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,6 +1,5 @@ "すべてのバージョンを削除する", "Versions" => "バージョン", -"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", -"Enable Files Versioning" => "ファイルのバージョン管理を有効にする" +"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します" ); diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php index 5da209f31b..b3810d06ec 100644 --- a/apps/files_versions/l10n/lt_LT.php +++ b/apps/files_versions/l10n/lt_LT.php @@ -1,4 +1,3 @@ "Panaikinti visų versijų galiojimą", -"Enable Files Versioning" => "Įjungti failų versijų vedimą" +"Expire all versions" => "Panaikinti visų versijų galiojimą" ); diff --git a/apps/files_versions/l10n/nl.php b/apps/files_versions/l10n/nl.php index da31603ff5..486b4ed45c 100644 --- a/apps/files_versions/l10n/nl.php +++ b/apps/files_versions/l10n/nl.php @@ -1,6 +1,5 @@ "Alle versies laten verlopen", "Versions" => "Versies", -"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", -"Enable Files Versioning" => "Activeer file versioning" +"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen" ); diff --git a/apps/files_versions/l10n/pl.php b/apps/files_versions/l10n/pl.php index c25d37611a..a198792a5b 100644 --- a/apps/files_versions/l10n/pl.php +++ b/apps/files_versions/l10n/pl.php @@ -1,6 +1,5 @@ "Wygasają wszystkie wersje", "Versions" => "Wersje", -"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", -"Enable Files Versioning" => "Włącz wersjonowanie plików" +"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" ); diff --git a/apps/files_versions/l10n/pt_BR.php b/apps/files_versions/l10n/pt_BR.php index a90b48fe3a..102b6d6274 100644 --- a/apps/files_versions/l10n/pt_BR.php +++ b/apps/files_versions/l10n/pt_BR.php @@ -1,4 +1,3 @@ "Expirar todas as versões", -"Enable Files Versioning" => "Habilitar versionamento de arquivos" +"Expire all versions" => "Expirar todas as versões" ); diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index 675dd090d3..f91cae90a1 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,6 +1,5 @@ "Просрочить все версии", "Versions" => "Версии", -"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов", -"Enable Files Versioning" => "Включить ведение версий файлов" +"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов" ); diff --git a/apps/files_versions/l10n/sl.php b/apps/files_versions/l10n/sl.php index aec6edb3c2..9984bcb5e8 100644 --- a/apps/files_versions/l10n/sl.php +++ b/apps/files_versions/l10n/sl.php @@ -2,5 +2,6 @@ "Expire all versions" => "Zastaraj vse različice", "Versions" => "Različice", "This will delete all existing backup versions of your files" => "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek", -"Enable Files Versioning" => "Omogoči sledenje različicam datotek" +"Files Versioning" => "Sledenje različicam", +"Enable" => "Omogoči" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 5788d8ae19..218bd6ee2e 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -2,5 +2,6 @@ "Expire all versions" => "Upphör alla versioner", "Versions" => "Versioner", "This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", -"Enable Files Versioning" => "Aktivera versionshantering" +"Files Versioning" => "Versionshantering av filer", +"Enable" => "Aktivera" ); diff --git a/apps/files_versions/l10n/th_TH.php b/apps/files_versions/l10n/th_TH.php index 4f26e3bd03..62ab0548f4 100644 --- a/apps/files_versions/l10n/th_TH.php +++ b/apps/files_versions/l10n/th_TH.php @@ -2,5 +2,6 @@ "Expire all versions" => "หมดอายุทุกรุ่น", "Versions" => "รุ่น", "This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป", -"Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" +"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์", +"Enable" => "เปิดใช้งาน" ); diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index 6743395481..992c0751d0 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -1,6 +1,5 @@ "Hết hạn tất cả các phiên bản", "Versions" => "Phiên bản", -"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có ", -"Enable Files Versioning" => "BẬT tập tin phiên bản" +"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có " ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..43af097a21 --- /dev/null +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -0,0 +1,7 @@ + "作废所有版本", +"Versions" => "版本", +"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", +"Files Versioning" => "文件版本", +"Enable" => "启用" +); diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 56a474be89..1a5caae7df 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -2,5 +2,6 @@ "Expire all versions" => "过期所有版本", "Versions" => "版本", "This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", -"Enable Files Versioning" => "开启文件版本" +"Files Versioning" => "文件版本", +"Enable" => "开启" ); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index dedd83fc25..c517eb01ff 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -77,6 +77,7 @@ class Storage { $versionsFolderName=\OCP\Config::getSystemValue('datadirectory') . $this->view->getAbsolutePath(''); //check if source file already exist as version to avoid recursions. + // todo does this check work? if ($users_view->file_exists($filename)) { return false; } @@ -96,6 +97,11 @@ class Storage { } } + // we should have a source file to work with + if (!$files_view->file_exists($filename)) { + return false; + } + // check filesize if($files_view->filesize($filename)>\OCP\Config::getSystemValue('files_versionsmaxfilesize', Storage::DEFAULTMAXFILESIZE)) { return false; @@ -118,7 +124,7 @@ class Storage { if(!file_exists($versionsFolderName.'/'.$info['dirname'])) mkdir($versionsFolderName.'/'.$info['dirname'],0700,true); // store a new version of a file - @$users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); + $users_view->copy('files'.$filename, 'files_versions'.$filename.'.v'.time()); // expire old revisions if necessary Storage::expire($filename); diff --git a/apps/files_versions/templates/settings.php b/apps/files_versions/templates/settings.php index 8682fc0f49..88063cb075 100644 --- a/apps/files_versions/templates/settings.php +++ b/apps/files_versions/templates/settings.php @@ -1,5 +1,6 @@
- />
+ t('Files Versioning');?> + />
diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 2c178d0b4f..df67671179 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -24,7 +24,7 @@ "Do not use it for SSL connections, it will fail." => "Verwenden Sie es nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", -"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..8b906aea5c --- /dev/null +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -0,0 +1,37 @@ + "主机", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头", +"Base DN" => "基本判别名", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名", +"User DN" => "用户判别名", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。", +"Password" => "密码", +"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。", +"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 服务器 (Windows)", +"Turn off SSL certificate validation." => "关闭 SSL 证书校验。", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。", +"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_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 089548a69b..53619ab4c1 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -385,7 +385,7 @@ abstract class Access { $sqlAdjustment = ''; $dbtype = \OCP\Config::getSystemValue('dbtype'); if($dbtype == 'mysql') { - $sqlAdjustment = 'FROM `dual`'; + $sqlAdjustment = 'FROM DUAL'; } $insert = \OCP\DB::prepare(' diff --git a/core/l10n/de.php b/core/l10n/de.php index 611c208fe4..bcc0449640 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,5 @@ "Applikationsname nicht angegeben", +"Application name not provided." => "Anwendungsname nicht angegeben", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", "Settings" => "Einstellungen", diff --git a/core/l10n/el.php b/core/l10n/el.php index 18a26f892c..227e981f2b 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -50,6 +50,7 @@ "Database user" => "Χρήστης της βάσης δεδομένων", "Database password" => "Κωδικός πρόσβασης βάσης δεδομένων", "Database name" => "Όνομα βάσης δεδομένων", +"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", "web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας", diff --git a/core/l10n/he.php b/core/l10n/he.php index f0a18103a8..74b6fe7aa4 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -50,6 +50,7 @@ "Database user" => "שם משתמש במסד הנתונים", "Database password" => "ססמת מסד הנתונים", "Database name" => "שם מסד הנתונים", +"Database tablespace" => "מרחב הכתובות של מסד הנתונים", "Database host" => "שרת בסיס נתונים", "Finish setup" => "סיום התקנה", "web services under your control" => "שירותי רשת בשליטתך", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 484a47727d..9ec6a048fc 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -3,6 +3,24 @@ "No category to add?" => "Nici o categorie de adăugat?", "This category already exists: " => "Această categorie deja există:", "Settings" => "Configurări", +"January" => "Ianuarie", +"February" => "Februarie", +"March" => "Martie", +"April" => "Aprilie", +"May" => "Mai", +"June" => "Iunie", +"July" => "Iulie", +"August" => "August", +"September" => "Septembrie", +"October" => "Octombrie", +"November" => "Noiembrie", +"December" => "Decembrie", +"Cancel" => "Anulare", +"No" => "Nu", +"Yes" => "Da", +"Ok" => "Ok", +"No categories selected for deletion." => "Nici o categorie selectată pentru ștergere.", +"Error" => "Eroare", "ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php new file mode 100644 index 0000000000..190ecda9eb --- /dev/null +++ b/core/l10n/ru_RU.php @@ -0,0 +1,64 @@ + "Имя приложения не предоставлено.", +"No category to add?" => "Нет категории для добавления?", +"This category already exists: " => "Эта категория уже существует:", +"Settings" => "Настройки", +"January" => "Январь", +"February" => "Февраль", +"March" => "Март", +"April" => "Апрель", +"May" => "Май", +"June" => "Июнь", +"July" => "Июль", +"August" => "Август", +"September" => "Сентябрь", +"October" => "Октябрь", +"November" => "Ноябрь", +"December" => "Декабрь", +"Cancel" => "Отмена", +"No" => "Нет", +"Yes" => "Да", +"Ok" => "Да", +"No categories selected for deletion." => "Нет категорий, выбранных для удаления.", +"Error" => "Ошибка", +"ownCloud password reset" => "Переназначение пароля", +"Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}", +"You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.", +"Requested" => "Запрашиваемое", +"Login failed!" => "Войти не удалось!", +"Username" => "Имя пользователя", +"Request reset" => "Сброс запроса", +"Your password was reset" => "Ваш пароль был переустановлен", +"To login page" => "На страницу входа", +"New password" => "Новый пароль", +"Reset password" => "Переназначение пароля", +"Personal" => "Персональный", +"Users" => "Пользователи", +"Apps" => "Приложения", +"Admin" => "Администратор", +"Help" => "Помощь", +"Access forbidden" => "Доступ запрещен", +"Cloud not found" => "Облако не найдено", +"Edit categories" => "Редактирование категорий", +"Add" => "Добавить", +"Create an admin account" => "Создать admin account", +"Password" => "Пароль", +"Advanced" => "Расширенный", +"Data folder" => "Папка данных", +"Configure the database" => "Настроить базу данных", +"will be used" => "будет использоваться", +"Database user" => "Пользователь базы данных", +"Database password" => "Пароль базы данных", +"Database name" => "Имя базы данных", +"Database tablespace" => "Табличная область базы данных", +"Database host" => "Сервер базы данных", +"Finish setup" => "Завершение настройки", +"web services under your control" => "веб-сервисы под Вашим контролем", +"Log out" => "Выйти", +"Lost your password?" => "Забыли пароль?", +"remember" => "запомнить", +"Log in" => "Войти", +"You are logged out." => "Вы вышли из системы.", +"prev" => "предыдущий", +"next" => "следующий" +); diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 58104df399..e59a935f39 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -50,6 +50,7 @@ "Database user" => "数据库用户", "Database password" => "数据库密码", "Database name" => "数据库用户名", +"Database tablespace" => "数据库表格空间", "Database host" => "数据库主机", "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", diff --git a/db_structure.xml b/db_structure.xml index 2256dff943..74e2805308 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -76,8 +76,7 @@ parent integer - - + 0 true 8 @@ -85,8 +84,7 @@ name text - - + true 300 @@ -94,8 +92,7 @@ user text - - + true 64 @@ -103,7 +100,7 @@ size integer - + 0 true 8 @@ -111,8 +108,7 @@ ctime integer - - + 0 true 8 @@ -120,8 +116,7 @@ mtime integer - - + 0 true 8 @@ -129,8 +124,7 @@ mimetype text - - + true 96 @@ -138,8 +132,7 @@ mimepart text - - + true 32 @@ -322,7 +315,6 @@ timeout integer - false true 4 @@ -331,7 +323,6 @@ created integer - false 8 @@ -347,7 +338,6 @@ scope integer - false 1 @@ -355,7 +345,6 @@ depth integer - false 1 @@ -469,7 +458,7 @@ share_type integer - + 0 true 1 @@ -493,7 +482,6 @@ parent integer - false 4 @@ -525,7 +513,6 @@ file_source integer - false 4 @@ -541,7 +528,7 @@ permissions integer - + 0 true 1 @@ -549,7 +536,7 @@ stime integer - + 0 true 8 diff --git a/l10n/af/files.po b/l10n/af/files.po index 6cd6b21cef..a16e059df3 100644 --- a/l10n/af/files.po +++ b/l10n/af/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/af/files_versions.po b/l10n/af/files_versions.po index 48efcf1e43..feda4351a8 100644 --- a/l10n/af/files_versions.po +++ b/l10n/af/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index b6b7b9e156..2110490f32 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "حجم" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "معدل" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index ab6c449389..d39b59268e 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ece25b8fda..47d059f279 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ar_SA/files_versions.po b/l10n/ar_SA/files_versions.po index 9596994e8a..c20b1ea16c 100644 --- a/l10n/ar_SA/files_versions.po +++ b/l10n/ar_SA/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ar_SA/settings.po b/l10n/ar_SA/settings.po index 22e19d517d..884941c4a5 100644 --- a/l10n/ar_SA/settings.po +++ b/l10n/ar_SA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Неправилно име – \"/\" не е позволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index bc5aaca01c..f28061ea72 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "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" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index fc6de0ffaa..efd8be694d 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Е-пощата е записана" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "cancel·la" msgid "replaced" msgstr "substituït" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfés" @@ -90,11 +90,11 @@ msgstr "desfés" msgid "with" msgstr "per" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "No compartits" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "esborrat" @@ -127,27 +127,35 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "Invalid name, '/' is not allowed." msgstr "El nom no és vàlid, no es permet '/'." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Mida" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxer" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxers" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 12b6059c7b..8ac9add87a 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 10:13+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilita les versions de fitxers" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8065c1ebee..a71b4c0e4a 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 06:39+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "No s'ha pogut activar l'apliació" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "S'ha desat el correu electrònic" @@ -112,63 +116,67 @@ msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles d msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executa una tasca en carregar cada pàgina" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php està registrat en un servei web cron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usa el servei cron del sistema" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de compartir" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activa l'API de compartir" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions usin l'API de compartir" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris comparir elements ja compartits amb ells" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Permet als usuaris compartir amb qualsevol" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb usuaris del seu grup" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registre" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Més" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "zrušit" msgid "replaced" msgstr "nahrazeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "zpět" @@ -90,11 +90,11 @@ msgstr "zpět" msgid "with" msgstr "s" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "sdílení zrušeno" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "smazáno" @@ -127,27 +127,35 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušen msgid "Invalid name, '/' is not allowed." msgstr "Neplatný název, znak '/' není povolen" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Změněno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "složka" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "složky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "soubor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 0c6a43324f..61b1531b7e 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 13:37+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:45+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" @@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Odstraní všechny existující zálohované verze Vašich souborů" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Povolit verzování souborů" +msgid "Files Versioning" +msgstr "Verzování souborů" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Povolit" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 3511d379d6..eb866f0582 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 13:36+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 14:48+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" @@ -40,6 +40,10 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Nelze povolit aplikaci." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail uložen" @@ -115,63 +119,67 @@ msgstr "Váš adresář dat a soubory jsou pravděpodobně přístupné z intern msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "spustit jednu úlohu s každou načtenou stránkou" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je registrován jako služba webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "použít systémovou službu cron" +msgid "Execute one task with each page loaded" +msgstr "Spustit jednu úlohu s každou načtenou stránkou" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API sdílení" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Sdílení" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Záznam" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Více" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2011, 2012. +# , 2012. # Pascal d'Hermilly , 2011. # , 2012. # Thomas Tanghus <>, 2012. @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -58,7 +59,7 @@ msgstr "Filer" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Fjern deling" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -74,7 +75,7 @@ msgstr "erstat" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "foreslå navn" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -84,7 +85,7 @@ msgstr "fortryd" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "fortryd" @@ -92,11 +93,11 @@ msgstr "fortryd" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "udelt" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "Slettet" @@ -129,27 +130,35 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "Invalid name, '/' is not allowed." msgstr "Ugyldigt navn, '/' er ikke tilladt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ændret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" @@ -183,7 +192,7 @@ msgstr "Maksimal størrelse på ZIP filer" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Gem" #: templates/index.php:7 msgid "New" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 94a4333bd1..bd1c986451 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. 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" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:42+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Kryptering" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "Ekskluder følgende filtyper fra kryptering" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "Ingen" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "Aktivér kryptering" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index cae9bfa4d9..d67a3ef190 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:35+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Kodeord" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Send" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Download" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 667b5eef55..b0e8abb06f 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -3,32 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "Lad alle versioner udløbe" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Dette vil slette alle eksisterende backupversioner af dine filer" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 75cf36398b..e9b14de3e5 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -4,41 +4,42 @@ # # Translators: # Morten Juhl-Johansen Zölde-Fejér , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 09:43+0000\n" +"Last-Translator: osos \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hjælp" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Personlig" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Indstillinger" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Brugere" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Admin" @@ -70,56 +71,56 @@ msgstr "Adgangsfejl" msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 minut siden" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "I dag" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "I går" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d dage siden" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Sidste måned" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "måneder siden" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Sidste år" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "år siden" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s er tilgængelig. Få mere information" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "opdateret" #: updater.php:71 msgid "updates check is disabled" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 022d5ee233..d9cace9217 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email adresse gemt" @@ -117,63 +121,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "udfør en opgave for hver indlæst side" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php er tilmeldt en webcron tjeneste" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "brug systemets cron service" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Del API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Aktiver dele API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Tillad apps a bruge dele APIen" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer med offentligheden med links" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Tillad gendeling" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med hvem som helst" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Tillad kun deling med brugere i brugerens egen gruppe" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mere" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2011. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:28+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "Applikationsname nicht angegeben" +msgstr "Anwendungsname nicht angegeben" #: ajax/vcategories/add.php:29 msgid "No category to add?" @@ -40,55 +41,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "Januar" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "Februar" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "März" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "April" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "Mai" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "Juni" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "Juli" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "August" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "September" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "Oktober" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "November" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "Dezember" @@ -246,11 +247,11 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de/files.po b/l10n/de/files.po index 406a0d2506..89c0f6c40f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -7,6 +7,7 @@ # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # Jan-Christoph Borchardt , 2011. +# , 2012. # Marcel Kühlhorn , 2012. # Michael Krell , 2012. # , 2012. @@ -19,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 13:09+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -91,7 +92,7 @@ msgstr "abbrechen" msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "rückgängig machen" @@ -99,11 +100,11 @@ msgstr "rückgängig machen" msgid "with" msgstr "mit" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Nicht mehr teilen" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "gelöscht" @@ -136,27 +137,35 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "Ordner" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Ordner" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "Dateien" @@ -248,4 +257,4 @@ msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:85 msgid "Current scanning" -msgstr "Scannen" +msgstr "Scanne" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index f4e27ec514..acda1c165a 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -4,21 +4,22 @@ # # Translators: # I Robot , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 06:01+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:25+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -33,5 +34,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien." #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Datei-Versionierung aktivieren" +msgid "Files Versioning" +msgstr "Dateiversionierung" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Aktivieren" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index b43e2799fd..e066695345 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,37 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 08:07+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 21:03+0000\n" "Last-Translator: traductor \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hilfe" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Persönlich" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Einstellungen" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Benutzer" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apps" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Administrator" @@ -72,45 +72,45 @@ msgstr "Authentifizierungs-Fehler" msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "Vor wenigen Sekunden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgstr "Vor %d Minute(n)" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "Heute" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "Gestern" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" -msgstr "Vor %d Tagen" +msgstr "Vor %d Tag(en)" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "Letzten Monat" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "Vor Monaten" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "Letztes Jahr" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index e0d81804f6..88ca1c44b7 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -7,6 +7,8 @@ # , 2012. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. +# Jan T , 2012. +# , 2012. # Marcel Kühlhorn , 2012. # , 2012. # , 2012. @@ -17,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 07:52+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 06:24+0000\n" +"Last-Translator: fmms \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,6 +46,10 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "App konnte nicht aktiviert werden." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-Mail gespeichert" @@ -119,63 +125,67 @@ msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. D msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe pro geladener Seite aus." -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ist beim Webcron-Service registriert" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf." -#: templates/admin.php:37 -msgid "use systems cron service" -msgstr "Nutze System-Cron-Service" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf." -#: templates/admin.php:41 -msgid "Share API" -msgstr "Teilungs-API" +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Freigabe" -#: templates/admin.php:46 +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Teilungs-API aktivieren" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Erlaubt Nutzern, die Teilungs-API zu nutzen" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Erneutes Teilen erlauben" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Erlaube Nutzern mit jedem zu Teilen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Erlaube Nutzern nur das Teilen in ihrer Gruppe" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mehr" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -134,7 +134,7 @@ msgstr "Schalte die SSL-Zertifikatsprüfung aus." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, wird das SSL-Zertifikat des LDAP-Server importiert werden." +msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/el/core.po b/l10n/el/core.po index 0a9a6e0388..babcd9f4e8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -4,6 +4,7 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # , 2011. # Petros Kyladitis , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:33+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,55 +34,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "Μάρτιος" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "Απρίλιος" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "Μάϊος" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "Ιούνιος" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "Ιούλιος" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "Αύγουστος" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "Δεκέμβριος" @@ -229,7 +230,7 @@ msgstr "Όνομα βάσης δεδομένων" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Κενά Πινάκων Βάσης Δεδομένων" #: templates/installation.php:115 msgid "Database host" @@ -239,11 +240,11 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Αποσύνδεση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 0daee77ea7..0912afaf79 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,14 +4,15 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Marios Bekatoros <>, 2012. # Petros Kyladitis , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -56,7 +57,7 @@ msgstr "Αρχεία" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Διακοπή κοινής χρήσης" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -72,7 +73,7 @@ msgstr "αντικατέστησε" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "συνιστώμενο όνομα" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -82,7 +83,7 @@ msgstr "ακύρωση" msgid "replaced" msgstr "αντικαταστάθηκε" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "αναίρεση" @@ -90,11 +91,11 @@ msgstr "αναίρεση" msgid "with" msgstr "με" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "Διακόπηκε η κοινή χρήση" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "διαγράφηκε" @@ -121,33 +122,41 @@ msgstr "Η μεταφόρτωση ακυρώθηκε." #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Η μεταφόρτωση του αρχείου βρίσκεται σε εξέλιξη. Έξοδος από την σελίδα τώρα θα ακυρώσει την μεταφόρτωση." #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "Μη έγκυρο όνομα, το '/' δεν επιτρέπεται." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "φάκελος" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "φάκελοι" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "αρχείο" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "αρχεία" @@ -181,7 +190,7 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Αποθήκευση" #: templates/index.php:7 msgid "New" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d11daf7f32..26acbf9da9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,25 +3,26 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-27 02:01+0200\n" -"PO-Revision-Date: 2012-08-26 21:45+0000\n" -"Last-Translator: Petros Kyladitis \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:07+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "Εξωτερική αποθήκευση" +msgstr "Εξωτερικό Αποθηκευτικό Μέσο" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" @@ -29,7 +30,7 @@ msgstr "Σημείο προσάρτησης" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "Σύστημα υποστήριξης" #: templates/settings.php:9 msgid "Configuration" @@ -41,15 +42,15 @@ msgstr "Επιλογές" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "Εφαρμόσιμο" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "Προσθήκη σημείου προσάρτησης" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "Κανένα επιλεγμένο" #: templates/settings.php:63 msgid "All Users" @@ -69,16 +70,16 @@ msgstr "Διαγραφή" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "Πιστοποιητικά SSL root" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "Εισαγωγή Πιστοποιητικού Root" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index fafebf4944..01a1f99bd9 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,20 +4,21 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:13+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -29,12 +30,12 @@ msgstr "Καταχώρηση" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "Λήψη" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index df855bfec1..d6b4a6a230 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 20:10+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -24,12 +25,16 @@ msgstr "Λήξη όλων των εκδόσεων" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Εκδόσεις" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων" +msgid "Files Versioning" +msgstr "Εκδόσεις Αρχείων" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Ενεργοποίηση" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index bbec7abd9b..ba761612ae 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -4,19 +4,20 @@ # # Translators: # Dimitris M. , 2012. +# Efstathios Iosifidis , 2012. # Efstathios Iosifidis , 2012. # , 2012. # Marios Bekatoros <>, 2012. # Nisok Kosin , 2012. # , 2011. -# Petros Kyladitis , 2011, 2012. +# Petros Kyladitis , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 19:31+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,11 +36,15 @@ msgstr "Σφάλμα πιστοποίησης" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Η ομάδα υπάρχει ήδη" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Αδυναμία προσθήκης ομάδας" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Αδυναμία ενεργοποίησης εφαρμογής " #: ajax/lostpassword.php:14 msgid "Email saved" @@ -59,11 +64,11 @@ msgstr "Μη έγκυρο αίτημα" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Αδυναμία διαγραφής ομάδας" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Αδυναμία διαγραφής χρήστη" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -72,12 +77,12 @@ msgstr "Η γλώσσα άλλαξε" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Αδυναμία προσθήκη χρήστη στην ομάδα %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s" #: js/apps.js:18 msgid "Error" @@ -110,69 +115,73 @@ 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 "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας." #: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "Χρήση της υπηρεσίας cron του συστήματος" +msgid "Execute one task with each page loaded" +msgstr "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:41 -msgid "Share API" -msgstr "" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" -msgstr "" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." #: templates/admin.php:56 -msgid "Allow resharing" -msgstr "" +msgid "Sharing" +msgstr "Διαμοιρασμός" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" -msgstr "" +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "Ενεργοποίηση API Διαμοιρασμού" #: templates/admin.php:62 -msgid "Allow users to only share with users in their groups" -msgstr "" +msgid "Allow apps to use the Share API" +msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:69 +#: templates/admin.php:67 +msgid "Allow links" +msgstr "Να επιτρέπονται σύνδεσμοι" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" + +#: templates/admin.php:88 msgid "Log" msgstr "Αρχείο καταγραφής" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Περισσότερο" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -196,7 +205,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-άδεια από " #: templates/help.php:9 msgid "Documentation" @@ -312,7 +321,7 @@ msgstr "Άλλα" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Διαχειρηστής ομάδας" +msgstr "Ομάδα Διαχειριστών" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d62532d142..9aa4aa30af 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:57+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "nuligi" msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "malfari" @@ -89,11 +89,11 @@ msgstr "malfari" msgid "with" msgstr "kun" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "malkunhavigita" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "forigita" @@ -126,27 +126,35 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Grando" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifita" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dosierujo" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dosierujoj" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosiero" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosieroj" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 75c78ded12..dc9b94a1b3 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 21:36+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Kapabligi dosiereldonkontrolon" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d51e0c5423..e8a18dc730 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "La retpoŝtadreso konserviĝis" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "lanĉi unu taskon po ĉiu paĝo ŝargita" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php estas registrita kiel webcron-servilo" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "uzi la cron-servon de la sistemo" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Pli" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -83,7 +83,7 @@ msgstr "cancelar" msgid "replaced" msgstr "reemplazado" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "deshacer" @@ -91,11 +91,11 @@ msgstr "deshacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "no compartido" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "borrado" @@ -128,27 +128,35 @@ msgstr "La subida del archivo está en proceso. Salir de la página ahora cancel msgid "Invalid name, '/' is not allowed." msgstr "Nombre no válido, '/' no está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "carpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "carpetas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "archivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 05f6814b37..ff439b9279 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 18:22+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:30+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" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -33,5 +33,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilitar versionamiento de archivos" +msgid "Files Versioning" +msgstr "Versionado de archivos" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Habilitar" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 8d1da62428..6657754d3c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -8,6 +8,7 @@ # , 2011-2012. # , 2011. # oSiNaReF <>, 2012. +# Raul Fernandez Garcia , 2012. # , 2012. # , 2011. # Rubén Trujillo , 2012. @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 15:29+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 00:32+0000\n" "Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -43,6 +44,10 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "No puedo habilitar la app." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Correo guardado" @@ -118,63 +123,67 @@ msgstr "El directorio de datos -data- y sus archivos probablemente son accesible msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ejecutar una tarea con cada página cargada" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php se registra en un servicio webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usar servicio cron del sistema" +msgid "Execute one task with each page loaded" +msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de compartición" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Compartir" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activar API de compartición" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la API de compartición" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos públicamente con enlaces" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Permitir re-compartir" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos compartidos con ellos de nuevo" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir con usuarios en sus grupos" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Más" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "loobu" msgid "replaced" msgstr "asendatud" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "tagasi" @@ -88,11 +88,11 @@ msgstr "tagasi" msgid "with" msgstr "millega" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "jagamata" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "kustutatud" @@ -125,27 +125,35 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesl msgid "Invalid name, '/' is not allowed." msgstr "Vigane nimi, '/' pole lubatud." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Suurus" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muudetud" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kaust" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kausta" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index 4344220fe7..0117bbd83e 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 10:28+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "See kustutab kõik sinu failidest tehtud varuversiooni" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Luba failide versioonihaldus" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 90042b1958..d5cf241bde 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 11:12+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,6 +36,10 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Kiri on salvestatud" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "Ajastatud töö" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "käivita iga laetud lehe juures üks ülesanne" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php on webcron teenuses registreeritud" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "kasuta süsteemide cron teenuseid" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Jagamise API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Luba jagamise API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada jagamise API-t" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Luba linke" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logi" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Veel" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "ezeztatu" msgid "replaced" msgstr "ordeztua" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desegin" @@ -89,11 +89,11 @@ msgstr "desegin" msgid "with" msgstr "honekin" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ez partekatuta" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ezabatuta" @@ -126,27 +126,35 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "Invalid name, '/' is not allowed." msgstr "Baliogabeko izena, '/' ezin da erabili. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "karpeta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Karpetak" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fitxategia" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 0f7610079c..c77fa0cef9 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 12:58+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Honek zure fitxategien bertsio guztiak ezabatuko ditu" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Gaitu fitxategien bertsioak" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1fb2c354a9..7e6f4e8d9c 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 14:30+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "Ezin izan da aplikazioa gaitu." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Eposta gorde da" @@ -112,63 +116,67 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "exekutatu zeregina orri karga bakoitzean" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php webcron zerbitzu batean erregistratuta dago" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "erabili sistemaren cron zerbitzua" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Partekatze APIa" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Gaitu Partekatze APIa" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Partekatze APIa erabiltzeko" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki partekatzen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin partekatutako fitxategiak berriz ere partekatzen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin partekatzen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin partekatzen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Gehiago" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/eu_ES/files_versions.po b/l10n/eu_ES/files_versions.po index cf5651aa22..b86d5a6e68 100644 --- a/l10n/eu_ES/files_versions.po +++ b/l10n/eu_ES/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index bca1c25deb..1d02c170d7 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "لغو" msgid "replaced" msgstr "جایگزین‌شده" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "بازگشت" @@ -90,11 +90,11 @@ msgstr "بازگشت" msgid "with" msgstr "همراه" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "حذف شده" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "نام نامناسب '/' غیرفعال است" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "اندازه" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "پوشه" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "پوشه ها" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "پرونده" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 012dceedd1..21aa2b6701 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "فعال‌کردن پرونده‌های نسخه‌بندی" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 9f3314e706..05cf00feb1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "ایمیل ذخیره شد" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "بیشتر" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/fi/files_versions.po b/l10n/fi/files_versions.po index cd80c0a486..684cdfa5e9 100644 --- a/l10n/fi/files_versions.po +++ b/l10n/fi/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/fi/settings.po b/l10n/fi/settings.po index b2daafd990..1343234a7d 100644 --- a/l10n/fi/settings.po +++ b/l10n/fi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "peru" msgid "replaced" msgstr "korvattu" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "kumoa" @@ -92,11 +92,11 @@ msgstr "kumoa" msgid "with" msgstr "käyttäen" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "poistettu" @@ -129,27 +129,35 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "Invalid name, '/' is not allowed." msgstr "Virheellinen nimi, merkki '/' ei ole sallittu." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Koko" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Muutettu" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "kansio" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "kansiota" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "tiedosto" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 7d47ae4214..8be1e0f643 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 15:39+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Käytä tiedostojen versiointia" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2f9cfc602d..5b6f5d055c 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 16:14+0000\n" -"Last-Translator: teho \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,10 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "Sovelluksen käyttöönotto epäonnistui." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Sähköposti tallennettu" @@ -112,63 +116,67 @@ msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htac msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "suorita yksi tehtävä jokaisella ladatulla sivulla" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php on rekisteröity webcron-palvelulla" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "käytä järjestelmän cron-palvelua" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Jaon ohelmointirajapinta (Share API)" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Ota käyttöön jaon ohjelmoitirajapinta (Share API)" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita julkisesti linkkejä käyttäen" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Salli uudelleenjako" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Salli käyttäjien jakaa heille itselleen jaettuja tietoja edelleen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kohteita kenen tahansa kanssa" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Salli käyttäjien jakaa kohteita vain omien ryhmien jäsenten kesken" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Loki" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lisää" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -62,7 +62,7 @@ msgstr "Fichiers" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Ne plus partager" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -88,7 +88,7 @@ msgstr "annuler" msgid "replaced" msgstr "remplacé" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annuler" @@ -96,11 +96,11 @@ msgstr "annuler" msgid "with" msgstr "avec" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "non partagée" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "supprimé" @@ -133,27 +133,35 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "Invalid name, '/' is not allowed." msgstr "Nom invalide, '/' n'est pas autorisé." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Taille" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modifié" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dossiers" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fichier" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fichiers" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 7077189352..ac58bbea0b 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 16:41+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date)." #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Activer le versionnage" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ae731ca30b..7e5fba19f0 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-11 02:02+0200\n" -"PO-Revision-Date: 2012-09-10 20:41+0000\n" -"Last-Translator: Brice \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,6 +46,10 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail sauvegardé" @@ -121,63 +125,67 @@ msgstr "Votre répertoire de données et vos fichiers sont probablement accessib msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "exécuter une tâche pour chaque page chargée" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php est enregistré comme un service webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utiliser le service cron du système " +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API de partage" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager du contenu public avec des liens" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Autoriser le re-partage" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments déjà partagés entre eux" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs dans leurs groupes" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Journaux" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Plus" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituído" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfacer" @@ -89,11 +89,11 @@ msgstr "desfacer" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminado" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome non válido, '/' non está permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamaño" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartafol" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartafoles" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 035f808024..ceb964a6b7 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 60828ee96f..306515b40d 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Correo electrónico gardado" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executar unha tarefa con cada páxina cargada" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php está rexistrada como un servizo webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utilice o servizo cron do sistema" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Conectar" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Máis" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2012. # , 2012. # , 2011. # Yaron Shahrabani , 2011, 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-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-16 18:05+0000\n" +"Last-Translator: Dovix Dovix \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,55 +33,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "הגדרות" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "ינואר" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "פברואר" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "מרץ" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "אפריל" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "מאי" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "יוני" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "יולי" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "אוגוסט" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "ספטמבר" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "אוקטובר" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "נובמבר" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "דצמבר" @@ -228,7 +229,7 @@ msgstr "שם מסד הנתונים" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "מרחב הכתובות של מסד הנתונים" #: templates/installation.php:115 msgid "Database host" @@ -238,11 +239,11 @@ msgstr "שרת בסיס נתונים" msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "שירותי רשת בשליטתך" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5cac6d4e90..5a7931d12a 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dovix Dovix , 2012. # , 2012. # , 2011. # Yaron Shahrabani , 2012. @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -64,7 +65,7 @@ msgstr "מחיקה" #: js/filelist.js:186 js/filelist.js:188 msgid "already exists" -msgstr "" +msgstr "כבר קיים" #: js/filelist.js:186 js/filelist.js:188 msgid "replace" @@ -82,7 +83,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +91,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "שם לא חוקי, '/' אסור לשימוש." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "גודל" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "תקיה" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "תקיות" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "קובץ" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "קבצים" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index e0cb0e526e..cb49463e16 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:01+0200\n" -"PO-Revision-Date: 2012-09-04 23:22+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "הפעלת ניהול גרסאות לקבצים" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index bd56d36427..b1857fd4bc 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "הדוא״ל נשמר" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "יומן" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "עוד" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index c1e27c1c31..af2c20c4b4 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index db0cc7e30f..1b137320ef 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "odustani" msgid "replaced" msgstr "zamjenjeno" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vrati" @@ -90,11 +90,11 @@ msgstr "vrati" msgid "with" msgstr "sa" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Neispravan naziv, znak '/' nije dozvoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 46ae106827..4037662f02 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index ef3eacff14..c6c42e6193 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email spremljen" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je registriran kod webcron servisa" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "koristi sistemski cron servis" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "više" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "mégse" msgid "replaced" msgstr "kicserélve" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "visszavon" @@ -90,11 +90,11 @@ msgstr "visszavon" msgid "with" msgstr "-val/-vel" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "törölve" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Érvénytelen név, a '/' nem megengedett" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Méret" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Módosítva" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappák" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fájl" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fájlok" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 8110815df5..fa823d968f 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 5f3d66a4dd..1554df638c 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email mentve" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Napló" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Tovább" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/hy/files_versions.po b/l10n/hy/files_versions.po index 7ac5f7649e..54fa5d6e19 100644 --- a/l10n/hy/files_versions.po +++ b/l10n/hy/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 394122cdf1..3698a77bef 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimension" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificate" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index c874ecb7e4..123a9945da 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index ab80ed851a..14db6bd79c 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Plus" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "batalkan" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "batal dikerjakan" @@ -90,11 +90,11 @@ msgstr "batal dikerjakan" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Kesalahan nama, '/' tidak diijinkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Ukuran" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folder-folder" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "berkas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index b28e40950f..487329246e 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c2bd93b9e1..2683a4b638 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email tersimpan" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lebih" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/id_ID/files_versions.po b/l10n/id_ID/files_versions.po index 027df71e5e..c91232aacc 100644 --- a/l10n/id_ID/files_versions.po +++ b/l10n/id_ID/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/id_ID/settings.po b/l10n/id_ID/settings.po index b70af6b0c3..68339ff2e3 100644 --- a/l10n/id_ID/settings.po +++ b/l10n/id_ID/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -83,7 +83,7 @@ msgstr "annulla" msgid "replaced" msgstr "sostituito" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "annulla" @@ -91,11 +91,11 @@ msgstr "annulla" msgid "with" msgstr "con" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "condivisione rimossa" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "eliminati" @@ -128,27 +128,35 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "Invalid name, '/' is not allowed." msgstr "Nome non valido" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensione" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificato" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "cartella" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "cartelle" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "file" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 9e8a8ae6bb..054ddeffa7 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 11:42+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:42+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" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Ciò eliminerà tutte le versioni esistenti dei tuoi file" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Abilita controllo di versione" +msgid "Files Versioning" +msgstr "Controllo di versione dei file" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Abilita" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 1ec0daf688..f63eb7de50 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 05:39+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:51+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" @@ -41,6 +41,10 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Impossibile abilitare l'applicazione." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email salvata" @@ -116,63 +120,67 @@ msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Int msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "esegui un'attività con ogni pagina caricata" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php è registrato a un servizio webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usa il servizio cron di sistema" +msgid "Execute one task with each page loaded" +msgstr "Esegui un'operazione per ogni pagina caricata" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API di condivisione" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Condivisione" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere elementi al pubblico con collegamenti" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere elementi già condivisi" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere con gli utenti del proprio gruppo" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Registro" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Altro" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -81,7 +81,7 @@ msgstr "キャンセル" msgid "replaced" msgstr "置換:" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "元に戻す" @@ -89,11 +89,11 @@ msgstr "元に戻す" msgid "with" msgstr "←" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "未共有" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "削除" @@ -126,27 +126,35 @@ msgstr "ファイル転送を実行中です。今このページから移動す msgid "Invalid name, '/' is not allowed." msgstr "無効な名前、'/' は使用できません。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "サイズ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "更新日時" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "フォルダ" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "フォルダ" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ファイル" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ファイル" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index a2dc028900..2923fe476f 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 15:56+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "これは、あなたのファイルのすべてのバックアップバージョンを削除します" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "ファイルのバージョン管理を有効にする" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 9652d0d975..a22d6af28b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 02:09+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -36,6 +36,10 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "アプリを有効にできませんでした。" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "メールアドレスを保存しました" @@ -111,63 +115,67 @@ msgstr "データディレクトリとファイルが恐らくインターネッ msgid "Cron" msgstr "cron(自動定期実行)" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ページを開く毎にタスクを1つ実行" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.phpをwebcronサービスに登録しました" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "システムのcronサービスを使用" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Share APIを有効" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Share APIの使用をアプリケーションに許可" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "リンクを許可" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "再共有を許可" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有されているアイテムをさらに共有することが出来るようにする" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "ユーザーが誰にでも共有出来るようにする" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "ユーザーがグループの人にしか共有出来ないようにする" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "ログ" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "もっと" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "취소" msgid "replaced" msgstr "대체됨" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "복구" @@ -89,11 +89,11 @@ msgstr "복구" msgid "with" msgstr "와" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "삭제" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "잘못된 이름, '/' 은 허용이 되지 않습니다." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "크기" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "수정됨" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "폴더" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "폴더" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "파일" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "파일" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index bf42a0a8c8..60f6f7ab63 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 74a1df4738..7012c67898 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "이메일 저장" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "크론" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "각 페이지가 로드 된 하나의 작업을 실행" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php는 webcron 서비스에 등록이 되어 있습니다." - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "cron 시스템 서비스를 사용" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "로그" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "더" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "ofbriechen" msgid "replaced" msgstr "ersat" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "réckgängeg man" @@ -88,11 +88,11 @@ msgstr "réckgängeg man" msgid "with" msgstr "mat" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "geläscht" @@ -125,27 +125,35 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "Invalid name, '/' is not allowed." msgstr "Ongültege Numm, '/' net erlaabt." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Gréisst" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Geännert" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "Dossier" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "Dossieren" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "Datei" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "Dateien" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index b2a52fe368..7f552845f6 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index ae12b3db40..80921ebde3 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail gespäichert" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ass als en webcron Service registréiert" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:37 -msgid "use systems cron service" -msgstr "benotz den systems cron Service" - -#: templates/admin.php:41 -msgid "Share API" -msgstr "Share API" - -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "Share API aschalten" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "Erlab Apps d'Share API ze benotzen" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "Links erlaben" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "Share API aschalten" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "Erlab Apps d'Share API ze benotzen" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "Links erlaben" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Méi" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "atšaukti" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Pavadinime negali būti naudojamas ženklas \"/\"." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dydis" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Pakeista" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "katalogas" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "katalogai" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "failas" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "failai" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 02e8567562..2b7d314d00 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Įjungti failų versijų vedimą" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 5db913f5a2..e7274b4e65 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "El. paštas išsaugotas" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "naudoti sistemos cron servisą" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Daugiau" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "atcelt" msgid "replaced" msgstr "aizvietots" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "vienu soli atpakaļ" @@ -88,11 +88,11 @@ msgstr "vienu soli atpakaļ" msgid "with" msgstr "ar" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izdzests" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Šis simbols '/', nav atļauts." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Izmērs" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mape" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapes" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fails" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "faili" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 11755dfbc9..8e28055622 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 6c04e77d75..5f35f0bfa5 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Epasts tika saglabāts" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Vairāk" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "неисправно име, '/' не е дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Големина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Променето" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "фолдер" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "фолдери" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "датотека" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "датотеки" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index a19a0758d7..b4aa86ae3f 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6bd27051c3..847b78c915 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Електронската пошта е снимена" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Записник" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Повеќе" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "Batal" msgid "replaced" msgstr "diganti" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "with" msgstr "dengan" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "dihapus" @@ -128,27 +128,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "penggunaa nama tidak sah, '/' tidak dibenarkan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Saiz" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "direktori" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "direktori" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fail" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "fail" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index d8056fb58e..1eb0340867 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 585daefb75..c9700ca3a0 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -38,6 +38,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Emel disimpan" @@ -113,63 +117,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "erstattet" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "angre" @@ -93,11 +93,11 @@ msgstr "angre" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "slettet" @@ -130,27 +130,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endret" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mappe" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mapper" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 536b4d262e..d14b394910 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Slå på versjonering" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 4b095682b5..2a926e6f97 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -40,6 +40,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Epost lagret" @@ -115,63 +119,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "utfør en oppgave med hver side som blir lastet" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php er registrert som en webcron tjeneste" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "benytt systemets cron tjeneste" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logg" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mer" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -88,7 +88,7 @@ msgstr "annuleren" msgid "replaced" msgstr "vervangen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ongedaan maken" @@ -96,11 +96,11 @@ msgstr "ongedaan maken" msgid "with" msgstr "door" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "niet gedeeld" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "verwijderd" @@ -133,27 +133,35 @@ msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "map" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappen" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "bestand" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "bestanden" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 9e4a68ec09..f50f1a2ae3 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-02 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 20:09+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Dit zal alle bestaande backup versies van uw bestanden verwijderen" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Activeer file versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8644b83dc0..75b4f754a8 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 13:23+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,6 +42,10 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "Kan de app. niet activeren" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-mail bewaard" @@ -117,63 +121,67 @@ msgstr "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het inte msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Voer 1 taak uit bij elke geladen pagina" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php is geregistreerd bij een webcron service" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "gebruik de systeem cron service" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Deel API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Zet de Deel API aan" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Sta apps toe om de Deel API te gebruiken" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Sta links toe" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Sta gebruikers toe om items via links publiekelijk te maken" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Sta verder delen toe" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Sta gebruikers toe om items nogmaals te delen" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Sta gebruikers toe om met iedereen te delen" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Sta gebruikers toe om alleen met gebruikers in hun groepen te delen" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Meer" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storleik" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Endra" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index d440d7524f..1ff9bd768f 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 8276d41ed6..3ab1c66633 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-postadresse lagra" @@ -111,63 +115,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index d38fef98d5..405166dc1a 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/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-08 02:02+0200\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index fe8e3adeb4..f46812b102 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.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-08 02:02+0200\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Pliki" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Nie udostępniaj" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -84,7 +84,7 @@ msgstr "anuluj" msgid "replaced" msgstr "zastąpione" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "wróć" @@ -92,11 +92,11 @@ msgstr "wróć" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "Nie udostępnione" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "skasuj" @@ -129,27 +129,35 @@ msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zost msgid "Invalid name, '/' is not allowed." msgstr "Nieprawidłowa nazwa '/' jest niedozwolone." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Rozmiar" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "foldery" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "plik" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "pliki" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index ea579c0b6a..003982e43f 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-04 02:01+0200\n" -"PO-Revision-Date: 2012-09-03 06:57+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Włącz wersjonowanie plików" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index adfbe39053..d1c25e8f75 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 12:06+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,6 +42,10 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email zapisany" @@ -117,63 +121,67 @@ msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. P msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "wykonanie jednego zadania z każdej załadowanej strony" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php jest zarejestrowany w usłudze webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "korzystaj z usługi systemowej cron" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Udostępnij API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Włącz udostępniane API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na używanie API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Zezwalaj na łącza" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na puliczne współdzielenie elementów za pomocą linków" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Zezwól na ponowne udostępnianie" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie elementów już z nimi współdzilonych" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Więcej" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 5f9feef04f..db3eb7edd2 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 0d57138874..69bcf9ca78 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -84,7 +84,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido " -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -92,11 +92,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "deletado" @@ -129,27 +129,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Nome inválido, '/' não é permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "arquivo" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 14e3834e40..9fb1e30b67 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Habilitar versionamento de arquivos" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 5c7f19c769..605cee5db9 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -40,6 +40,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email gravado" @@ -115,63 +119,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executar uma tarefa com cada página em aberto" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php esta registrado no serviço de webcron" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mais" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "cancelar" msgid "replaced" msgstr "substituido" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "desfazer" @@ -90,11 +90,11 @@ msgstr "desfazer" msgid "with" msgstr "com" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "apagado" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "nome inválido, '/' não permitido." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Tamanho" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificado" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "pasta" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "pastas" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ficheiro" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ficheiros" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 56a1489aa8..f4b82dc62c 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 05fcf5b8bd..1ed27b86f7 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email guardado" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Executar uma tarefa com cada página carregada" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php está registado num serviço webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "usar o serviço cron do sistema" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mais" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:30+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,81 +33,81 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "Configurări" -#: js/js.js:593 +#: js/js.js:642 msgid "January" -msgstr "" +msgstr "Ianuarie" -#: js/js.js:593 +#: js/js.js:642 msgid "February" -msgstr "" +msgstr "Februarie" -#: js/js.js:593 +#: js/js.js:642 msgid "March" -msgstr "" +msgstr "Martie" -#: js/js.js:593 +#: js/js.js:642 msgid "April" -msgstr "" +msgstr "Aprilie" -#: js/js.js:593 +#: js/js.js:642 msgid "May" -msgstr "" +msgstr "Mai" -#: js/js.js:593 +#: js/js.js:642 msgid "June" -msgstr "" +msgstr "Iunie" -#: js/js.js:594 +#: js/js.js:643 msgid "July" -msgstr "" +msgstr "Iulie" -#: js/js.js:594 +#: js/js.js:643 msgid "August" -msgstr "" +msgstr "August" -#: js/js.js:594 +#: js/js.js:643 msgid "September" -msgstr "" +msgstr "Septembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "October" -msgstr "" +msgstr "Octombrie" -#: js/js.js:594 +#: js/js.js:643 msgid "November" -msgstr "" +msgstr "Noiembrie" -#: js/js.js:594 +#: js/js.js:643 msgid "December" -msgstr "" +msgstr "Decembrie" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Anulare" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Nu" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Da" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Nici o categorie selectată pentru ștergere." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Eroare" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -238,11 +239,11 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a1551d7f5c..bbdcca021c 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -82,7 +82,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Dimensiune" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Modificat" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 936d92da9a..c972244652 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a1bc80deb8..5e814151bf 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,16 @@ # Claudiu , 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. +# , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 08:42+0000\n" +"Last-Translator: g.ciprian \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,11 +34,15 @@ msgstr "Eroare de autentificare" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Grupul există deja" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Nu s-a putut adăuga grupul" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Nu s-a putut activa aplicația." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -57,11 +62,11 @@ msgstr "Cerere eronată" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Nu s-a putut șterge grupul" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Nu s-a putut șterge utilizatorul" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -70,12 +75,12 @@ msgstr "Limba a fost schimbată" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nu s-a putut adăuga utilizatorul la grupul %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nu s-a putut elimina utilizatorul din grupul %s" #: js/apps.js:18 msgid "Error" @@ -108,69 +113,73 @@ 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 "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." #: templates/admin.php:31 msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "executâ o sarcină cu fiecare pagină încărcată" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php e înregistrat la un serviciu de webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "utilizează serviciul de cron al sistemului" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" +msgstr "Partajare" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "Activare API partajare" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "Permite aplicațiilor să folosească API-ul de partajare" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "Pemite legături" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:57 +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "Permite repartajarea" + +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mai mult" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." #: templates/apps.php:10 msgid "Add your App" @@ -194,7 +203,7 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licențiat " #: templates/help.php:9 msgid "Documentation" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 234fbe404e..120ca926c5 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 14:18+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgstr "отмена" msgid "replaced" msgstr "заменён" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "отмена" @@ -94,11 +94,11 @@ msgstr "отмена" msgid "with" msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "публикация отменена" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "удален" @@ -131,27 +131,35 @@ msgstr "Файл в процессе загрузки. Покинув стран msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Изменён" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "папка" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "папки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файлы" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 4eec64b43e..dfa8a12274 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 11:40+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,5 +32,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Очистить список версий ваших файлов" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Включить ведение версий файлов" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 53b8f54895..58403d5b2f 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 01:35+0000\n" -"Last-Translator: VicDeo \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,6 +43,10 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email сохранен" @@ -118,63 +122,67 @@ msgstr "Похоже, что каталог data и ваши файлы в не msgid "Cron" msgstr "Задание" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Запускать задание при загрузке каждой страницы" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php зарегистрирован в службе webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "использовать системные задания" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API публикации" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Включить API публикации" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Разрешить API публикации для приложений" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям публикацию при помощи ссылок" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Включить повторную публикацию" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Разрешить пользователям публиковать доступные им элементы других пользователей" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Разрешить публиковать для любых пользователей" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Ограничить публикацию группами пользователя" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Журнал" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Ещё" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-14 02:01+0200\n" +"PO-Revision-Date: 2012-09-13 12:09+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,250 +20,250 @@ msgstr "" #: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 msgid "Application name not provided." -msgstr "" +msgstr "Имя приложения не предоставлено." #: ajax/vcategories/add.php:29 msgid "No category to add?" -msgstr "" +msgstr "Нет категории для добавления?" #: ajax/vcategories/add.php:36 msgid "This category already exists: " -msgstr "" +msgstr "Эта категория уже существует:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" -msgstr "" +msgstr "Настройки" -#: js/js.js:593 +#: js/js.js:642 msgid "January" -msgstr "" +msgstr "Январь" -#: js/js.js:593 +#: js/js.js:642 msgid "February" -msgstr "" +msgstr "Февраль" -#: js/js.js:593 +#: js/js.js:642 msgid "March" -msgstr "" +msgstr "Март" -#: js/js.js:593 +#: js/js.js:642 msgid "April" -msgstr "" +msgstr "Апрель" -#: js/js.js:593 +#: js/js.js:642 msgid "May" -msgstr "" +msgstr "Май" -#: js/js.js:593 +#: js/js.js:642 msgid "June" -msgstr "" +msgstr "Июнь" -#: js/js.js:594 +#: js/js.js:643 msgid "July" -msgstr "" +msgstr "Июль" -#: js/js.js:594 +#: js/js.js:643 msgid "August" -msgstr "" +msgstr "Август" -#: js/js.js:594 +#: js/js.js:643 msgid "September" -msgstr "" +msgstr "Сентябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "October" -msgstr "" +msgstr "Октябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "November" -msgstr "" +msgstr "Ноябрь" -#: js/js.js:594 +#: js/js.js:643 msgid "December" -msgstr "" +msgstr "Декабрь" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" -msgstr "" +msgstr "Отмена" #: js/oc-dialogs.js:159 msgid "No" -msgstr "" +msgstr "Нет" #: js/oc-dialogs.js:160 msgid "Yes" -msgstr "" +msgstr "Да" #: js/oc-dialogs.js:177 msgid "Ok" -msgstr "" +msgstr "Да" #: js/oc-vcategories.js:68 msgid "No categories selected for deletion." -msgstr "" +msgstr "Нет категорий, выбранных для удаления." #: js/oc-vcategories.js:68 msgid "Error" -msgstr "" +msgstr "Ошибка" #: lostpassword/index.php:26 msgid "ownCloud password reset" -msgstr "" +msgstr "Переназначение пароля" #: 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 "Requested" -msgstr "" +msgstr "Запрашиваемое" #: lostpassword/templates/lostpassword.php:8 msgid "Login failed!" -msgstr "" +msgstr "Войти не удалось!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 #: templates/login.php:9 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: lostpassword/templates/lostpassword.php:15 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" -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:14 msgid "Add" -msgstr "" +msgstr "Добавить" #: templates/installation.php:24 msgid "Create an admin account" -msgstr "" +msgstr "Создать admin account" #: templates/installation.php:30 templates/login.php:13 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/installation.php:36 msgid "Advanced" -msgstr "" +msgstr "Расширенный" #: templates/installation.php:38 msgid "Data folder" -msgstr "" +msgstr "Папка данных" #: templates/installation.php:45 msgid "Configure the database" -msgstr "" +msgstr "Настроить базу данных" #: templates/installation.php:50 templates/installation.php:61 #: templates/installation.php:71 templates/installation.php:81 msgid "will be used" -msgstr "" +msgstr "будет использоваться" #: templates/installation.php:93 msgid "Database user" -msgstr "" +msgstr "Пользователь базы данных" #: templates/installation.php:97 msgid "Database password" -msgstr "" +msgstr "Пароль базы данных" #: templates/installation.php:101 msgid "Database name" -msgstr "" +msgstr "Имя базы данных" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "Табличная область базы данных" #: templates/installation.php:115 msgid "Database host" -msgstr "" +msgstr "Сервер базы данных" #: templates/installation.php:120 msgid "Finish setup" -msgstr "" +msgstr "Завершение настройки" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под Вашим контролем" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" -msgstr "" +msgstr "Выйти" #: templates/login.php:6 msgid "Lost your password?" -msgstr "" +msgstr "Забыли пароль?" #: templates/login.php:17 msgid "remember" -msgstr "" +msgstr "запомнить" #: templates/login.php:18 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 "следующий" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 441a2de6ae..dc79d635c5 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+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,221 +20,229 @@ msgstr "" #: ajax/upload.php:20 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Ошибка отсутствует, файл загружен успешно." #: ajax/upload.php:21 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" +msgstr "Размер загруженного файла превышает заданный в директиве upload_max_filesize в php.ini" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Размер загруженного" #: ajax/upload.php:23 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Загружаемый файл был загружен частично" #: ajax/upload.php:24 msgid "No file was uploaded" -msgstr "" +msgstr "Файл не был загружен" #: ajax/upload.php:25 msgid "Missing a temporary folder" -msgstr "" +msgstr "Отсутствует временная папка" #: ajax/upload.php:26 msgid "Failed to write to disk" -msgstr "" +msgstr "Не удалось записать на диск" #: appinfo/app.php:6 msgid "Files" -msgstr "" +msgstr "Файлы" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Скрыть" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" -msgstr "" +msgstr "Удалить" #: js/filelist.js:186 js/filelist.js:188 msgid "already exists" -msgstr "" +msgstr "уже существует" #: js/filelist.js:186 js/filelist.js:188 msgid "replace" -msgstr "" +msgstr "отмена" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "подобрать название" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" -msgstr "" +msgstr "отменить" #: js/filelist.js:235 js/filelist.js:237 msgid "replaced" -msgstr "" +msgstr "заменено" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" -msgstr "" +msgstr "отменить действие" #: js/filelist.js:237 msgid "with" -msgstr "" +msgstr "с" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "скрытый" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" -msgstr "" +msgstr "удалено" #: js/files.js:179 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "Создание ZIP-файла, это может занять некоторое время." #: js/files.js:208 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" #: js/files.js:208 msgid "Upload Error" -msgstr "" +msgstr "Ошибка загрузки" #: js/files.js:236 js/files.js:341 js/files.js:370 msgid "Pending" -msgstr "" +msgstr "Ожидающий решения" #: js/files.js:355 msgid "Upload cancelled." -msgstr "" +msgstr "Загрузка отменена" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." #: js/files.js:493 msgid "Invalid name, '/' is not allowed." +msgstr "Неправильное имя, '/' не допускается." + +#: js/files.js:666 +msgid "files scanned" msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" -msgstr "" +msgstr "Размер" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" -msgstr "" - -#: js/files.js:774 -msgid "folder" -msgstr "" +msgstr "Изменен" #: js/files.js:776 -msgid "folders" -msgstr "" +msgid "folder" +msgstr "папка" -#: js/files.js:784 -msgid "file" -msgstr "" +#: js/files.js:778 +msgid "folders" +msgstr "папки" #: js/files.js:786 +msgid "file" +msgstr "файл" + +#: js/files.js:788 msgid "files" -msgstr "" +msgstr "файлы" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Работа с файлами" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Максимальный размер загружаемого файла" #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "Максимально возможный" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Необходимо для множественной загрузки." #: templates/admin.php:9 msgid "Enable ZIP-download" -msgstr "" +msgstr "Включение ZIP-загрузки" #: templates/admin.php:11 msgid "0 is unlimited" -msgstr "" +msgstr "0 без ограничений" #: templates/admin.php:12 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Максимальный размер входящих ZIP-файлов " #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "Сохранить" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "Новый" #: templates/index.php:9 msgid "Text file" -msgstr "" +msgstr "Текстовый файл" #: templates/index.php:10 msgid "Folder" -msgstr "" +msgstr "Папка" #: templates/index.php:11 msgid "From url" -msgstr "" +msgstr "Из url" #: templates/index.php:21 msgid "Upload" -msgstr "" +msgstr "Загрузить " #: templates/index.php:27 msgid "Cancel upload" -msgstr "" +msgstr "Отмена загрузки" #: templates/index.php:40 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Здесь ничего нет. Загрузите что-нибудь!" #: templates/index.php:48 msgid "Name" -msgstr "" +msgstr "Имя" #: templates/index.php:50 msgid "Share" -msgstr "" +msgstr "Сделать общим" #: templates/index.php:52 msgid "Download" -msgstr "" +msgstr "Загрузить" #: templates/index.php:75 msgid "Upload too large" -msgstr "" +msgstr "Загрузка слишком велика" #: templates/index.php:77 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Файлы сканируются, пожалуйста, подождите." #: templates/index.php:85 msgid "Current scanning" -msgstr "" +msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index f7ff8068c7..d48bed5764 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 210a41b049..b8db330381 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:10+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,82 +20,86 @@ msgstr "" #: ajax/apps/ocs.php:23 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Невозможно загрузить список из App Store" #: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" -msgstr "" +msgstr "Ошибка авторизации" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "Группа уже существует" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Невозможно добавить группу" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Не удалось запустить приложение" #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "" +msgstr "Email сохранен" #: ajax/lostpassword.php:16 msgid "Invalid email" -msgstr "" +msgstr "Неверный email" #: ajax/openid.php:16 msgid "OpenID Changed" -msgstr "" +msgstr "OpenID изменен" #: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 msgid "Invalid request" -msgstr "" +msgstr "Неверный запрос" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Невозможно удалить группу" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "Невозможно удалить пользователя" #: ajax/setlanguage.php:18 msgid "Language changed" -msgstr "" +msgstr "Язык изменен" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Невозможно добавить пользователя в группу %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Невозможно удалить пользователя из группы %s" #: js/apps.js:18 msgid "Error" -msgstr "" +msgstr "Ошибка" #: js/apps.js:39 js/apps.js:73 msgid "Disable" -msgstr "" +msgstr "Отключить" #: js/apps.js:39 js/apps.js:62 msgid "Enable" -msgstr "" +msgstr "Включить" #: js/personal.js:69 msgid "Saving..." -msgstr "" +msgstr "Сохранение" #: personal.php:46 personal.php:47 msgid "__language_name__" -msgstr "" +msgstr "__язык_имя__" #: templates/admin.php:14 msgid "Security Warning" -msgstr "" +msgstr "Предупреждение системы безопасности" #: templates/admin.php:17 msgid "" @@ -103,69 +108,73 @@ 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 "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера." #: templates/admin.php:31 msgid "Cron" -msgstr "" - -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" +msgstr "Cron" #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "" +msgid "Execute one task with each page loaded" +msgstr "Выполняйте одну задачу на каждой загружаемой странице" -#: templates/admin.php:41 -msgid "Share API" -msgstr "" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Совместное использование" + +#: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Включить разделяемые API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Разрешить приложениям использовать Share API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Предоставить ссылки" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Разрешить повторное совместное использование" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Разрешить пользователям разделение с кем-либо" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Разрешить пользователям разделение только с пользователями в их группах" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" -msgstr "" +msgstr "Вход" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" -msgstr "" +msgstr "Подробнее" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Разработанный ownCloud community, the source code is licensed under the AGPL." #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "Добавить Ваше приложение" #: templates/apps.php:26 msgid "Select an App" -msgstr "" +msgstr "Выбрать приложение" #: templates/apps.php:29 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Обратитесь к странице приложений на apps.owncloud.com" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "-licensed by " #: templates/help.php:9 msgid "Documentation" -msgstr "" +msgstr "Документация" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "" +msgstr "Управление большими файлами" #: templates/help.php:11 msgid "Ask a question" -msgstr "" +msgstr "Задать вопрос" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "" +msgstr "Проблемы, связанные с разделом Помощь базы данных" #: templates/help.php:24 msgid "Go there manually." -msgstr "" +msgstr "Сделать вручную." #: templates/help.php:32 msgid "Answer" -msgstr "" +msgstr "Ответ" #: templates/personal.php:8 msgid "You use" -msgstr "" +msgstr "Вы используете" #: templates/personal.php:8 msgid "of the available" -msgstr "" +msgstr "из доступных" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" -msgstr "" +msgstr "Клиенты синхронизации настольной и мобильной систем" #: templates/personal.php:13 msgid "Download" -msgstr "" +msgstr "Загрузка" #: templates/personal.php:19 msgid "Your password got changed" -msgstr "" +msgstr "Ваш пароль был изменен" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "" +msgstr "Невозможно изменить Ваш пароль" #: templates/personal.php:21 msgid "Current password" -msgstr "" +msgstr "Текущий пароль" #: templates/personal.php:22 msgid "New password" -msgstr "" +msgstr "Новый пароль" #: templates/personal.php:23 msgid "show" -msgstr "" +msgstr "показать" #: templates/personal.php:24 msgid "Change password" -msgstr "" +msgstr "Изменить пароль" #: templates/personal.php:30 msgid "Email" -msgstr "" +msgstr "Электронная почта" #: templates/personal.php:31 msgid "Your email address" -msgstr "" +msgstr "Адрес Вашей электронной почты" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "Введите адрес электронной почты для возможности восстановления пароля" #: templates/personal.php:38 templates/personal.php:39 msgid "Language" -msgstr "" +msgstr "Язык" #: templates/personal.php:44 msgid "Help translate" -msgstr "" +msgstr "Помогите перевести" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере" #: templates/users.php:21 templates/users.php:76 msgid "Name" -msgstr "" +msgstr "Имя" #: templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "" +msgstr "Пароль" #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" -msgstr "" +msgstr "Группы" #: templates/users.php:32 msgid "Create" -msgstr "" +msgstr "Создать" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "Квота по умолчанию" #: templates/users.php:55 templates/users.php:138 msgid "Other" -msgstr "" +msgstr "Другой" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "Группа Admin" #: templates/users.php:82 msgid "Quota" -msgstr "" +msgstr "квота" #: templates/users.php:146 msgid "Delete" -msgstr "" +msgstr "Удалить" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index a9285f4547..9730f5a8e9 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+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" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -89,11 +89,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veľkosť" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Upravené" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "priečinok" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "priečinky" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "súbor" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 0f50826d2b..4116e72935 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 952da74548..3b261aff56 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email uložený" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Záznam" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Viac" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "ekliči" msgid "replaced" msgstr "nadomeščen" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "razveljavi" @@ -90,11 +90,11 @@ msgstr "razveljavi" msgid "with" msgstr "z" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "odstranjeno iz souporabe" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "izbrisano" @@ -127,27 +127,35 @@ msgstr "Nalaganje datoteke je v teku. Če zapustite to stran zdaj, boste nalagan msgid "Invalid name, '/' is not allowed." msgstr "Neveljavno ime. Znak '/' ni dovoljen." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Velikost" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapa" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mape" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "datoteka" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index d37dc15d09..716e97cbbd 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 02:04+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:09+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "To bo izbrisalo vse obstoječe različice varnostnih kopij vaših datotek" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Omogoči sledenje različicam datotek" +msgid "Files Versioning" +msgstr "Sledenje različicam" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Omogoči" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index c94a108ee3..cc9b69f3a9 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,37 +8,37 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 09:04+0000\n" +"POT-Creation-Date: 2012-09-15 02:02+0200\n" +"PO-Revision-Date: 2012-09-14 08:53+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Pomoč" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Osebno" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Nastavitve" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Uporabniki" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Aplikacije" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Skrbnik" @@ -70,47 +70,47 @@ msgstr "Napaka overitve" msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Prosimo, če spletno stran znova naložite." -#: template.php:86 -msgid "seconds ago" -msgstr "sekund nazaj" - #: template.php:87 +msgid "seconds ago" +msgstr "pred nekaj sekundami" + +#: template.php:88 msgid "1 minute ago" msgstr "pred minuto" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "pred %d minutami" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "danes" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "včeraj" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "pred %d dnevi" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "prejšnji mesec" -#: template.php:95 -msgid "months ago" -msgstr "mesecev nazaj" - #: template.php:96 +msgid "months ago" +msgstr "pred nekaj meseci" + +#: template.php:97 msgid "last year" msgstr "lani" -#: template.php:97 +#: template.php:98 msgid "years ago" -msgstr "let nazaj" +msgstr "pred nekaj leti" #: updater.php:66 #, php-format diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index bd1e022b7d..729ff8c04d 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 06:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 11:14+0000\n" "Last-Translator: Peter Peroša \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Aplikacije ni bilo mogoče omogočiti." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-poštni naslov je bil shranjen" @@ -112,63 +116,67 @@ msgstr "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko intern msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "izvedi eno nalogo z vsako naloženo stranjo" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php je vpisan na storitev webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "uporabi sistemski servis za periodična opravila" +msgid "Execute one task with each page loaded" +msgstr "Izvede eno opravilo z vsako naloženo stranjo." -#: templates/admin.php:41 -msgid "Share API" -msgstr "API souporabe" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Souporaba" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "Dovoli aplikacijam uporabo API-ja souporabe" +msgstr "Aplikacijam dovoli uporabo API-ja souporabe" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo z javnimi povezavami" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo le znotraj njihove skupine" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Več" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL." +msgstr "Razvija ga ownCloud skupnost. Izvorna koda je izdana pod licenco AGPL." #: templates/apps.php:10 msgid "Add your App" diff --git a/l10n/so/files.po b/l10n/so/files.po index f168f0b775..331c5b9de8 100644 --- a/l10n/so/files.po +++ b/l10n/so/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/so/files_versions.po b/l10n/so/files_versions.po index ce768ee5ce..194dbdb067 100644 --- a/l10n/so/files_versions.po +++ b/l10n/so/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/so/settings.po b/l10n/so/settings.po index 8ed5f9eb22..68d750e156 100644 --- a/l10n/so/settings.po +++ b/l10n/so/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Величина" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Задња измена" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index b252793ef8..4018647302 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index bccf5024d3..da8a79a19f 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -80,7 +80,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -88,11 +88,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -125,27 +125,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Veličina" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 23dcd43098..821c0e6607 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 4e8ca92540..eba1c39cf0 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +85,7 @@ msgstr "avbryt" msgid "replaced" msgstr "ersatt" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "ångra" @@ -93,11 +93,11 @@ msgstr "ångra" msgid "with" msgstr "med" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "Ej delad" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "raderad" @@ -130,27 +130,35 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "Invalid name, '/' is not allowed." msgstr "Ogiltigt namn, '/' är inte tillåten." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Storlek" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Ändrad" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "mapp" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "mappar" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "fil" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 29af9f4e97..f78979b79a 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 09:50+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:33+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" "Content-Transfer-Encoding: 8bit\n" "Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Detta kommer att radera alla befintliga säkerhetskopior av dina filer" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "Aktivera versionshantering" +msgid "Files Versioning" +msgstr "Versionshantering av filer" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Aktivera" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f93b1f0f3c..acbae422b2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 06:05+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 07:31+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" @@ -41,6 +41,10 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "Kunde inte aktivera appen." + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "E-post sparad" @@ -116,63 +120,67 @@ msgstr "Din datamapp och dina filer kan möjligen vara nåbara från internet. F msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "utför en uppgift vid varje sidladdning" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php är registrerad på en webcron-tjänst" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "använd systemets cron-tjänst" +msgid "Execute one task with each page loaded" +msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Delat API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Dela" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Tillåt dela vidare" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dom" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Logg" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Mera" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea363823aa..670af957c7 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -79,7 +79,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -87,11 +87,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -124,27 +124,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 02737458e0..b2b36ec7a0 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\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 75f49385fd..17df827012 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\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 2eec3ef024..ce17ba853f 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\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 7bc25825f9..6c86a3725f 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c1f018d3ec..3f9e5f57f2 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\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 33da8992be..c0c8b14a7e 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: 2012-09-12 02:01+0200\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,6 +34,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -109,63 +113,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 1ade0abea9..81201d846b 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-09 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 03:31+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "ยกเลิก" msgid "replaced" msgstr "แทนที่แล้ว" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "เลิกทำ" @@ -89,11 +89,11 @@ msgstr "เลิกทำ" msgid "with" msgstr "กับ" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "ยกเลิกการแชร์ข้อมูลแล้ว" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "ลบแล้ว" @@ -126,27 +126,35 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "Invalid name, '/' is not allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง '/' ไม่อนุญาตให้ใช้งาน" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "ขนาด" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "โฟลเดอร์" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "โฟลเดอร์" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "ไฟล์" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 28f3effc2a..aa1ceaf157 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-03 02:04+0200\n" -"PO-Revision-Date: 2012-09-02 22:45+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:39+0000\n" "Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์" +msgid "Files Versioning" +msgstr "การกำหนดเวอร์ชั่นของไฟล์" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "เปิดใช้งาน" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1919a13b9e..bc06688343 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:31+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 05:37+0000\n" "Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,10 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "ไม่สามารถเปิดใช้งานแอปได้" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "อีเมลถูกบันทึกแล้ว" @@ -112,63 +116,67 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php ได้ถูกลงทะเบียนที่บริการ webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "ใช้บริการ cron จากระบบ" +msgid "Execute one task with each page loaded" +msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:41 -msgid "Share API" -msgstr "API สำหรับคุณสมบัติแชร์ข้อมูล" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "การแชร์ข้อมูล" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "เพิ่มเติม" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -83,7 +83,7 @@ msgstr "iptal" msgid "replaced" msgstr "değiştirildi" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "geri al" @@ -91,11 +91,11 @@ msgstr "geri al" msgid "with" msgstr "ile" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "silindi" @@ -128,27 +128,35 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "Invalid name, '/' is not allowed." msgstr "Geçersiz isim, '/' işaretine izin verilmiyor." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Boyut" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "dizin" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "dizinler" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "dosya" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "dosyalar" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index be45079a55..b358355e28 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 927817d543..3cf53f10ff 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -37,6 +37,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Eposta kaydedildi" @@ -112,63 +116,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Günlük" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "Devamı" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -81,7 +81,7 @@ msgstr "" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "відмінити" @@ -89,11 +89,11 @@ msgstr "відмінити" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "видалені" @@ -126,27 +126,35 @@ msgstr "" msgid "Invalid name, '/' is not allowed." msgstr "Некоректне ім'я, '/' не дозволено." -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Розмір" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Змінено" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "тека" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "теки" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "файл" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "файли" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index f2a35bd674..15fa3309cd 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 7a1ef6e3a0..768ec5f798 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+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" @@ -35,6 +35,10 @@ msgstr "" msgid "Unable to add group" msgstr "" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "" @@ -110,63 +114,67 @@ msgstr "" msgid "Cron" msgstr "" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:41 -msgid "Share API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." msgstr "" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." msgstr "" #: templates/admin.php:56 -msgid "Allow resharing" +msgid "Sharing" msgstr "" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" +#: templates/admin.php:61 +msgid "Enable Share API" msgstr "" #: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgstr "hủy" msgid "replaced" msgstr "đã được thay thế" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "lùi lại" @@ -89,11 +89,11 @@ msgstr "lùi lại" msgid "with" msgstr "với" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "đã xóa" @@ -126,27 +126,35 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "folder" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "folders" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "file" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "files" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 9a03e55a3b..0ce200328c 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 14:50+0000\n" -"Last-Translator: Sơn Nguyễn \n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có " #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "BẬT tập tin phiên bản" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 12a6254703..587aca88e4 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:02+0200\n" -"PO-Revision-Date: 2012-09-07 16:01+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,10 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Lưu email" @@ -113,63 +117,67 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ msgid "Cron" msgstr "Cron" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "Thực thi một nhiệm vụ với mỗi trang được nạp" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "cron.php đã được đăng ký ở một dịch vụ webcron" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "sử dụng hệ thống dịch vụ cron" +msgid "Execute one task with each page loaded" +msgstr "" -#: templates/admin.php:41 -msgid "Share API" -msgstr "Chia sẻ API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "Log" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "nhiều hơn" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-06 02:02+0200\n" -"PO-Revision-Date: 2012-09-06 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:26+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +31,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:208 templates/layout.user.php:60 templates/layout.user.php:61 +#: js/js.js:214 templates/layout.user.php:54 templates/layout.user.php:55 msgid "Settings" msgstr "设置" -#: js/js.js:593 +#: js/js.js:642 msgid "January" msgstr "一月" -#: js/js.js:593 +#: js/js.js:642 msgid "February" msgstr "二月" -#: js/js.js:593 +#: js/js.js:642 msgid "March" msgstr "三月" -#: js/js.js:593 +#: js/js.js:642 msgid "April" msgstr "四月" -#: js/js.js:593 +#: js/js.js:642 msgid "May" msgstr "五月" -#: js/js.js:593 +#: js/js.js:642 msgid "June" msgstr "六月" -#: js/js.js:594 +#: js/js.js:643 msgid "July" msgstr "七月" -#: js/js.js:594 +#: js/js.js:643 msgid "August" msgstr "八月" -#: js/js.js:594 +#: js/js.js:643 msgid "September" msgstr "九月" -#: js/js.js:594 +#: js/js.js:643 msgid "October" msgstr "十月" -#: js/js.js:594 +#: js/js.js:643 msgid "November" msgstr "十一月" -#: js/js.js:594 +#: js/js.js:643 msgid "December" msgstr "十二月" @@ -226,7 +227,7 @@ msgstr "数据库用户名" #: templates/installation.php:109 msgid "Database tablespace" -msgstr "" +msgstr "数据库表格空间" #: templates/installation.php:115 msgid "Database host" @@ -236,11 +237,11 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.guest.php:42 +#: templates/layout.guest.php:36 msgid "web services under your control" msgstr "你控制下的网络服务" -#: templates/layout.user.php:45 +#: templates/layout.user.php:39 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 27fb4d0b39..bbf13e6f0f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -4,12 +4,13 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:02+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" @@ -54,7 +55,7 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消共享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -70,7 +71,7 @@ msgstr "替换" #: js/filelist.js:186 msgid "suggest name" -msgstr "" +msgstr "推荐名称" #: js/filelist.js:186 js/filelist.js:188 msgid "cancel" @@ -80,7 +81,7 @@ msgstr "取消" msgid "replaced" msgstr "替换过了" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -88,11 +89,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "已取消共享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "删除" @@ -119,33 +120,41 @@ msgstr "上传取消了" #: js/files.js:423 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "文件正在上传。关闭页面会取消上传。" #: js/files.js:493 msgid "Invalid name, '/' is not allowed." msgstr "非法文件名,\"/\"是不被许可的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" @@ -179,7 +188,7 @@ msgstr "最大的ZIP文件输入大小" #: templates/admin.php:14 msgid "Save" -msgstr "" +msgstr "保存" #: templates/index.php:7 msgid "New" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 2073826c24..eb4ddd9c54 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. 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" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "加密" #: templates/settings.php:4 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "从加密中排除如下文件类型" #: templates/settings.php:5 msgid "None" -msgstr "" +msgstr "无" #: templates/settings.php:10 msgid "Enable Encryption" -msgstr "" +msgstr "启用加密" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27dfa58801..4573b7bbdd 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,80 +3,81 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. 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" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:25+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:7 templates/settings.php:19 msgid "Mount point" -msgstr "" +msgstr "挂载点" #: templates/settings.php:8 msgid "Backend" -msgstr "" +msgstr "后端" #: templates/settings.php:9 msgid "Configuration" -msgstr "" +msgstr "配置" #: templates/settings.php:10 msgid "Options" -msgstr "" +msgstr "选项" #: templates/settings.php:11 msgid "Applicable" -msgstr "" +msgstr "可应用" #: templates/settings.php:23 msgid "Add mount point" -msgstr "" +msgstr "添加挂载点" #: templates/settings.php:54 templates/settings.php:62 msgid "None set" -msgstr "" +msgstr "未设置" #: templates/settings.php:63 msgid "All Users" -msgstr "" +msgstr "所有用户" #: templates/settings.php:64 msgid "Groups" -msgstr "" +msgstr "群组" #: templates/settings.php:69 msgid "Users" -msgstr "" +msgstr "用户" #: templates/settings.php:77 templates/settings.php:96 msgid "Delete" -msgstr "" +msgstr "删除" #: templates/settings.php:88 msgid "SSL root certificates" -msgstr "" +msgstr "SSL 根证书" #: templates/settings.php:102 msgid "Import Root Certificate" -msgstr "" +msgstr "导入根证书" #: templates/settings.php:108 msgid "Enable User External Storage" -msgstr "" +msgstr "启用用户外部存储" #: templates/settings.php:109 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "允许用户挂载他们的外部存储" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 4fdcb4f36f..e7446b3059 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,36 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-31 02:02+0200\n" -"PO-Revision-Date: 2012-08-31 00:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:46+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "密码" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "提交" #: templates/public.php:9 templates/public.php:19 msgid "Download" -msgstr "" +msgstr "下载" #: templates/public.php:18 msgid "No preview available for" -msgstr "" +msgstr "没有预览可用于" -#: templates/public.php:23 +#: templates/public.php:25 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 89fa8dd1ef..e2016da8c6 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,32 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 10:51+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" -msgstr "" +msgstr "作废所有版本" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/settings-personal.php:7 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "这将删除所有您现有文件的备份版本" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "" +msgid "Files Versioning" +msgstr "文件版本" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "启用" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 541a462fb8..4eac71c656 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,123 +3,124 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:19+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:288 +#: app.php:285 msgid "Help" -msgstr "" +msgstr "帮助" -#: app.php:295 +#: app.php:292 msgid "Personal" -msgstr "" +msgstr "私人" -#: app.php:300 +#: app.php:297 msgid "Settings" -msgstr "" +msgstr "设置" -#: app.php:305 +#: app.php:302 msgid "Users" -msgstr "" +msgstr "用户" -#: app.php:312 +#: app.php:309 msgid "Apps" -msgstr "" +msgstr "程序" -#: app.php:314 +#: app.php:311 msgid "Admin" -msgstr "" +msgstr "管理员" #: files.php:280 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP 下载已关闭" #: files.php:281 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "需要逐个下载文件。" #: files.php:281 files.php:306 msgid "Back to Files" -msgstr "" +msgstr "返回到文件" #: files.php:305 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:63 json.php:75 msgid "Authentication error" -msgstr "" +msgstr "验证错误" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" - -#: template.php:86 -msgid "seconds ago" -msgstr "" +msgstr "会话过期。请刷新页面。" #: template.php:87 -msgid "1 minute ago" -msgstr "" +msgid "seconds ago" +msgstr "秒前" #: template.php:88 +msgid "1 minute ago" +msgstr "1 分钟前" + +#: template.php:89 #, php-format msgid "%d minutes ago" -msgstr "" - -#: template.php:91 -msgid "today" -msgstr "" +msgstr "%d 分钟前" #: template.php:92 -msgid "yesterday" -msgstr "" +msgid "today" +msgstr "今天" #: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "yesterday" +msgstr "昨天" #: template.php:94 -msgid "last month" -msgstr "" +#, php-format +msgid "%d days ago" +msgstr "%d 天前" #: template.php:95 -msgid "months ago" -msgstr "" +msgid "last month" +msgstr "上个月" #: template.php:96 -msgid "last year" -msgstr "" +msgid "months ago" +msgstr "月前" #: template.php:97 +msgid "last year" +msgstr "去年" + +#: template.php:98 msgid "years ago" -msgstr "" +msgstr "年前" #: updater.php:66 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s 不可用。获知 详情" #: updater.php:68 msgid "up to date" -msgstr "" +msgstr "最新" #: updater.php:71 msgid "updates check is disabled" -msgstr "" +msgstr "更新检测已禁用" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 5e3311e021..d6d1b69b01 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-05 02:02+0200\n" -"PO-Revision-Date: 2012-09-05 00:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:24+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +30,15 @@ msgstr "认证错误" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "群组已存在" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "未能添加群组" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "未能启用应用" #: ajax/lostpassword.php:14 msgid "Email saved" @@ -53,11 +58,11 @@ msgstr "非法请求" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "未能删除群组" #: ajax/removeuser.php:22 msgid "Unable to delete user" -msgstr "" +msgstr "未能删除用户" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -66,12 +71,12 @@ msgstr "语言改变了" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "未能添加用户到群组 %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "未能将用户从群组 %s 移除" #: js/apps.js:18 msgid "Error" @@ -104,69 +109,73 @@ 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 "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。" #: templates/admin.php:31 msgid "Cron" msgstr "定时" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "" +msgid "Execute one task with each page loaded" +msgstr "在每个页面载入时执行一项任务" -#: templates/admin.php:41 -msgid "Share API" -msgstr "" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" -#: templates/admin.php:46 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:47 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:51 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:52 -msgid "Allow users to share items to the public with links" -msgstr "" +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" #: templates/admin.php:56 -msgid "Allow resharing" -msgstr "" +msgid "Sharing" +msgstr "分享" -#: templates/admin.php:57 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:60 -msgid "Allow users to share with anyone" -msgstr "" +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "启用分享 API" #: templates/admin.php:62 -msgid "Allow users to only share with users in their groups" -msgstr "" +msgid "Allow apps to use the Share API" +msgstr "允许应用使用分享 API" -#: templates/admin.php:69 +#: templates/admin.php:67 +msgid "Allow links" +msgstr "允许链接" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "允许用户使用链接与公众分享条目" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "允许重复分享" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "允许用户再次分享已经分享过的条目" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "允许用户与任何人分享" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "只允许用户与群组内用户分享" + +#: templates/admin.php:88 msgid "Log" msgstr "日志" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" #: templates/apps.php:10 msgid "Add your App" @@ -190,7 +199,7 @@ msgstr "在owncloud.com上查看应用程序" #: templates/apps.php:30 msgid "-licensed by " -msgstr "" +msgstr "授权协议 " #: templates/help.php:9 msgid "Documentation" @@ -306,7 +315,7 @@ msgstr "其他的" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "群组管理员" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 67a667a8ee..119c718867 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -3,168 +3,169 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 12:39+0000\n" +"Last-Translator: marguerite su \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:8 msgid "Host" -msgstr "" +msgstr "主机" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "基本判别名" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "用户判别名" #: templates/settings.php:10 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 "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" #: templates/settings.php:11 msgid "Password" -msgstr "" +msgstr "密码" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名访问请留空判别名和密码。" #: templates/settings.php:12 msgid "User Login Filter" -msgstr "" +msgstr "用户登录过滤器" #: templates/settings.php:12 #, 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:12 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "使用 %%uid 占位符,例如 \"uid=%%uid\"" #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "用户列表过滤器" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "定义撷取用户时要应用的过滤器。" #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=person\"。" #: templates/settings.php:14 msgid "Group Filter" -msgstr "" +msgstr "群组过滤器" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "定义撷取群组时要应用的过滤器" #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "不能使用占位符,例如 \"objectClass=posixGroup\"。" #: templates/settings.php:17 msgid "Port" -msgstr "" +msgstr "端口" #: templates/settings.php:18 msgid "Base User Tree" -msgstr "" +msgstr "基本用户树" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "基本群组树" #: templates/settings.php:20 msgid "Group-Member association" -msgstr "" +msgstr "群组-成员组合" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "使用 TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "不要使用它进行 SSL 连接,会失败的。" #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "大小写不敏感的 LDAP 服务器 (Windows)" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "关闭 SSL 证书校验。" #: templates/settings.php:23 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" #: templates/settings.php:23 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推荐,仅供测试" #: templates/settings.php:24 msgid "User Display Name Field" -msgstr "" +msgstr "用户显示名称字段" #: templates/settings.php:24 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "群组显示名称字段" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" #: templates/settings.php:27 msgid "in bytes" -msgstr "" +msgstr "以字节计" #: templates/settings.php:29 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒计。修改会清空缓存。" #: templates/settings.php:30 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" #: templates/settings.php:32 msgid "Help" -msgstr "" +msgstr "帮助" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index a7489a4246..52e765ef10 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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: 2012-09-08 02:01+0200\n" -"PO-Revision-Date: 2012-09-08 00:02+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-18 00:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "文件" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "取消分享" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "已经替换" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "撤销" @@ -90,11 +90,11 @@ msgstr "撤销" msgid "with" msgstr "随着" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" -msgstr "" +msgstr "已取消分享" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "已经删除" @@ -127,27 +127,35 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "Invalid name, '/' is not allowed." msgstr "非法的名称,不允许使用‘/’。" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改日期" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "文件夹" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "文件夹" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "文件" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 8fc46b7498..157efc0c27 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 13:03+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 16:01+0000\n" "Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -31,5 +31,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "将会删除您的文件的所有备份版本" #: templates/settings.php:3 -msgid "Enable Files Versioning" -msgstr "开启文件版本" +msgid "Files Versioning" +msgstr "文件版本" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "开启" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c72ea361e0..84ab4991d1 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-07 02:04+0200\n" -"PO-Revision-Date: 2012-09-06 08:01+0000\n" +"POT-Creation-Date: 2012-09-18 02:01+0200\n" +"PO-Revision-Date: 2012-09-17 15:59+0000\n" "Last-Translator: hanfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -38,6 +38,10 @@ msgstr "已存在组" msgid "Unable to add group" msgstr "不能添加组" +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "无法开启App" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "电子邮件已保存" @@ -113,63 +117,67 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的. msgid "Cron" msgstr "计划任务" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "为每个装入的页面执行任务" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "crop.php 已" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "实现系统 cron 服务" +msgid "Execute one task with each page loaded" +msgstr "每次页面加载完成后执行任务" -#: templates/admin.php:41 -msgid "Share API" -msgstr "共享API" +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" -#: templates/admin.php:46 +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "分享" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "开启共享API" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "允许 应用 使用共享API" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "允许连接" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接向公众共享" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "日志" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "取消" msgid "replaced" msgstr "" -#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:268 js/filelist.js:270 +#: js/filelist.js:235 js/filelist.js:237 js/filelist.js:267 js/filelist.js:269 msgid "undo" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "with" msgstr "" -#: js/filelist.js:268 +#: js/filelist.js:267 msgid "unshared" msgstr "" -#: js/filelist.js:270 +#: js/filelist.js:269 msgid "deleted" msgstr "" @@ -127,27 +127,35 @@ msgstr "檔案上傳中. 離開此頁面將會取消上傳." msgid "Invalid name, '/' is not allowed." msgstr "無效的名稱, '/'是不被允許的" -#: js/files.js:746 templates/index.php:56 +#: js/files.js:666 +msgid "files scanned" +msgstr "" + +#: js/files.js:674 +msgid "error while scanning" +msgstr "" + +#: js/files.js:748 templates/index.php:56 msgid "Size" msgstr "大小" -#: js/files.js:747 templates/index.php:58 +#: js/files.js:749 templates/index.php:58 msgid "Modified" msgstr "修改" -#: js/files.js:774 +#: js/files.js:776 msgid "folder" msgstr "" -#: js/files.js:776 +#: js/files.js:778 msgid "folders" msgstr "" -#: js/files.js:784 +#: js/files.js:786 msgid "file" msgstr "" -#: js/files.js:786 +#: js/files.js:788 msgid "files" msgstr "" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 731c9d14f5..eedc03d79e 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 13:35+0200\n" -"PO-Revision-Date: 2012-09-01 11:35+0000\n" +"POT-Creation-Date: 2012-09-17 02:02+0200\n" +"PO-Revision-Date: 2012-09-17 00: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: js/settings-personal.js:31 templates/settings-personal.php:10 msgid "Expire all versions" @@ -30,5 +30,9 @@ msgid "This will delete all existing backup versions of your files" msgstr "" #: templates/settings.php:3 -msgid "Enable Files Versioning" +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 64bf08a813..15d4d53529 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-12 02:01+0200\n" -"PO-Revision-Date: 2012-09-11 15:49+0000\n" -"Last-Translator: Jeff5555 \n" +"POT-Creation-Date: 2012-09-17 02:03+0200\n" +"PO-Revision-Date: 2012-09-17 00:03+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,6 +38,10 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" +#: ajax/enableapp.php:13 +msgid "Could not enable app. " +msgstr "" + #: ajax/lostpassword.php:14 msgid "Email saved" msgstr "Email已儲存" @@ -113,63 +117,67 @@ msgstr "" msgid "Cron" msgstr "定期執行" -#: templates/admin.php:33 -msgid "execute one task with each page loaded" -msgstr "當頁面載入時,執行" - -#: templates/admin.php:35 -msgid "cron.php is registered at a webcron service" -msgstr "" - #: templates/admin.php:37 -msgid "use systems cron service" -msgstr "使用系統定期執行服務" - -#: templates/admin.php:41 -msgid "Share API" +msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 msgid "Enable Share API" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:62 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:51 +#: templates/admin.php:67 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:52 +#: templates/admin.php:68 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:56 +#: templates/admin.php:73 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:57 +#: templates/admin.php:74 msgid "Allow users to share items shared with them again" msgstr "允許使用者轉貼共享檔案" -#: templates/admin.php:60 +#: templates/admin.php:79 msgid "Allow users to share with anyone" msgstr "允許使用者公開分享" -#: templates/admin.php:62 +#: templates/admin.php:81 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:69 +#: templates/admin.php:88 msgid "Log" msgstr "紀錄" -#: templates/admin.php:97 +#: templates/admin.php:116 msgid "More" msgstr "更多" -#: templates/admin.php:105 +#: templates/admin.php:124 msgid "" "Developed by the ownCloud community, the store($info['index'], $data); if ($chunk_handler->isComplete()) { diff --git a/lib/connector/sabre/node.php b/lib/connector/sabre/node.php index 2916575e2d..ecbbef8129 100644 --- a/lib/connector/sabre/node.php +++ b/lib/connector/sabre/node.php @@ -235,7 +235,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr static public function removeETagPropertyForPath($path) { // remove tags from this and parent paths $paths = array(); - while ($path != '/' && $path != '') { + while ($path != '/' && $path != '.' && $path != '') { $paths[] = $path; $path = dirname($path); } diff --git a/lib/db.php b/lib/db.php index 4317f79848..9c10512350 100644 --- a/lib/db.php +++ b/lib/db.php @@ -187,7 +187,7 @@ class OC_DB { // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE), + 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, 'log_line_break' => '
', 'idxname_format' => '%s', 'debug' => true, @@ -232,6 +232,7 @@ class OC_DB { $dsn['database'] = $name; } else { // use dbname for hostspec $dsn['hostspec'] = $name; + $dsn['database'] = $user; } break; } @@ -457,7 +458,8 @@ class OC_DB { $previousSchema = self::$schema->getDefinitionFromDatabase(); if (PEAR::isError($previousSchema)) { $error = $previousSchema->getMessage(); - OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.')', OC_Log::FATAL); + $detail = $previousSchema->getDebugInfo(); + OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.', '.$detail.')', OC_Log::FATAL); return false; } diff --git a/lib/filecache/cached.php b/lib/filecache/cached.php index 4e8ff23793..9b1eb4f780 100644 --- a/lib/filecache/cached.php +++ b/lib/filecache/cached.php @@ -18,8 +18,19 @@ class OC_FileCache_Cached{ $root=OC_Filesystem::getRoot(); } $path=$root.$path; - $query=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); - $result=$query->execute(array(md5($path)))->fetchRow(); + $stmt=OC_DB::prepare('SELECT `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?'); + if ( ! OC_DB::isError($stmt) ) { + $result=$stmt->execute(array(md5($path))); + if ( ! OC_DB::isError($result) ) { + $result = $result->fetchRow(); + } else { + OC:Log::write('OC_FileCache_Cached', 'could not execute get: '. OC_DB::getErrorMessage($result), OC_Log::ERROR); + $result = false; + } + } else { + OC_Log::write('OC_FileCache_Cached', 'could not prepare get: '. OC_DB::getErrorMessage($stmt), OC_Log::ERROR); + $result = false; + } if(is_array($result)) { if(isset(self::$savedData[$path])) { $result=array_merge($result, self::$savedData[$path]); diff --git a/lib/fileproxy/quota.php b/lib/fileproxy/quota.php index adbff3d301..5a0dbdb6fe 100644 --- a/lib/fileproxy/quota.php +++ b/lib/fileproxy/quota.php @@ -26,6 +26,7 @@ */ class OC_FileProxy_Quota extends OC_FileProxy{ + static $rootView; private $userQuota=-1; /** @@ -86,7 +87,10 @@ class OC_FileProxy_Quota extends OC_FileProxy{ } public function preCopy($path1,$path2) { - return (OC_Filesystem::filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); + if(!self::$rootView){ + self::$rootView = new OC_FilesystemView(''); + } + return (self::$rootView->filesize($path1)<$this->getFreeSpace() or $this->getFreeSpace()==0); } public function preFromTmpFile($tmpfile,$path) { @@ -96,4 +100,4 @@ class OC_FileProxy_Quota extends OC_FileProxy{ public function preFromUploadedFile($tmpfile,$path) { return (filesize($tmpfile)<$this->getFreeSpace() or $this->getFreeSpace()==0); } -} \ No newline at end of file +} diff --git a/lib/filesystem.php b/lib/filesystem.php index 92eb4fa477..ce4d3a0cf4 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -527,6 +527,7 @@ class OC_Filesystem{ } else { $path=$params['oldpath']; } + $path = self::normalizePath($path); OC_Connector_Sabre_Node::removeETagPropertyForPath($path); } diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 3a17af510c..fcf419e864 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -263,24 +263,26 @@ class OC_FilesystemView { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path, + OC_Filesystem::signal_param_run => &$run + ) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_write, array( OC_Filesystem::signal_param_path => $path, OC_Filesystem::signal_param_run => &$run ) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path, - OC_Filesystem::signal_param_run => &$run - ) - ); if(!$run) { return false; } @@ -289,18 +291,20 @@ class OC_FilesystemView { $count=OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array( OC_Filesystem::signal_param_path => $path) + ); + } OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, + OC_Filesystem::signal_post_write, array( OC_Filesystem::signal_param_path => $path) ); - }/* - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path) - );*/ + } OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count); return $count > 0; }else{ @@ -330,14 +334,16 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, OC_Filesystem::signal_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } if($run) { $mp1 = $this->getMountPoint($path1.$postFix1); $mp2 = $this->getMountPoint($path2.$postFix2); @@ -353,14 +359,16 @@ class OC_FilesystemView { $storage1->unlink($this->getInternalPath($path1.$postFix1)); $result = $count>0; } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_rename, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath => $path2 - ) - ); + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_rename, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath => $path2 + ) + ); + } return $result; } } @@ -378,35 +386,37 @@ class OC_FilesystemView { return false; } $run=true; - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - $exists=$this->file_exists($path2); - if($run and !$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_create, + OC_Filesystem::signal_copy, array( - OC_Filesystem::signal_param_path => $path2, - OC_Filesystem::signal_param_run => &$run - ) - ); - } - if($run) { - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_write, - array( - OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2, OC_Filesystem::signal_param_run => &$run ) ); + $exists=$this->file_exists($path2); + if($run and !$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_create, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } + if($run) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_write, + array( + OC_Filesystem::signal_param_path => $path2, + OC_Filesystem::signal_param_run => &$run + ) + ); + } } if($run) { $mp1=$this->getMountPoint($path1.$postFix1); @@ -420,26 +430,28 @@ class OC_FilesystemView { $target = $this->fopen($path2.$postFix2, 'w'); $result = OC_Helper::streamCopy($source, $target); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_copy, - array( - OC_Filesystem::signal_param_oldpath => $path1, - OC_Filesystem::signal_param_newpath=>$path2 - ) - ); - if(!$exists) { + if( $this->fakeRoot==OC_Filesystem::getRoot() ){ OC_Hook::emit( OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_create, - array(OC_Filesystem::signal_param_path => $path2) + OC_Filesystem::signal_post_copy, + array( + OC_Filesystem::signal_param_oldpath => $path1, + OC_Filesystem::signal_param_newpath=>$path2 + ) + ); + if(!$exists) { + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_create, + array(OC_Filesystem::signal_param_path => $path2) + ); + } + OC_Hook::emit( + OC_Filesystem::CLASSNAME, + OC_Filesystem::signal_post_write, + array( OC_Filesystem::signal_param_path => $path2) ); } - OC_Hook::emit( - OC_Filesystem::CLASSNAME, - OC_Filesystem::signal_post_write, - array( OC_Filesystem::signal_param_path => $path2) - ); return $result; } } diff --git a/lib/helper.php b/lib/helper.php index 70b2f78862..dda5fcc5f0 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -62,8 +62,11 @@ class OC_Helper { } } - foreach($args as $k => $v) { - $urlLinkTo .= '&'.$k.'='.$v; + if (!empty($args)) { + $urlLinkTo .= '?'; + foreach($args as $k => $v) { + $urlLinkTo .= '&'.$k.'='.$v; + } } return $urlLinkTo; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 7a9ee26b47..5c68174fa0 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -21,5 +21,7 @@ "last month" => "Sidste måned", "months ago" => "måneder siden", "last year" => "Sidste år", -"years ago" => "år siden" +"years ago" => "år siden", +"%s is available. Get
more information" => "%s er tilgængelig. Få mere information", +"up to date" => "opdateret" ); diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 4a567003de..aea631aba2 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -14,10 +14,10 @@ "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", "seconds ago" => "Vor wenigen Sekunden", "1 minute ago" => "Vor einer Minute", -"%d minutes ago" => "Vor %d Minuten", +"%d minutes ago" => "Vor %d Minute(n)", "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tagen", +"%d days ago" => "Vor %d Tag(en)", "last month" => "Letzten Monat", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 273773f2f7..eac839e78f 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -12,16 +12,16 @@ "Application is not enabled" => "Aplikacija ni omogočena", "Authentication error" => "Napaka overitve", "Token expired. Please reload page." => "Žeton je potekel. Prosimo, če spletno stran znova naložite.", -"seconds ago" => "sekund nazaj", +"seconds ago" => "pred nekaj sekundami", "1 minute ago" => "pred minuto", "%d minutes ago" => "pred %d minutami", "today" => "danes", "yesterday" => "včeraj", "%d days ago" => "pred %d dnevi", "last month" => "prejšnji mesec", -"months ago" => "mesecev nazaj", +"months ago" => "pred nekaj meseci", "last year" => "lani", -"years ago" => "let nazaj", +"years ago" => "pred nekaj leti", "%s is available. Get more information" => "%s je na voljo. Več informacij.", "up to date" => "ažuren", "updates check is disabled" => "preverjanje za posodobitve je onemogočeno" diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php new file mode 100644 index 0000000000..4b0a5e9f4d --- /dev/null +++ b/lib/l10n/zh_CN.GB2312.php @@ -0,0 +1,28 @@ + "帮助", +"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." => "会话过期。请刷新页面。", +"seconds ago" => "秒前", +"1 minute ago" => "1 分钟前", +"%d minutes ago" => "%d 分钟前", +"today" => "今天", +"yesterday" => "昨天", +"%d days ago" => "%d 天前", +"last month" => "上个月", +"months ago" => "月前", +"last year" => "去年", +"years ago" => "年前", +"%s is available. Get more information" => "%s 不可用。获知 详情", +"up to date" => "最新", +"updates check is disabled" => "更新检测已禁用" +); diff --git a/lib/util.php b/lib/util.php index c2edc660e8..5e39fd1f91 100755 --- a/lib/util.php +++ b/lib/util.php @@ -89,7 +89,7 @@ class OC_Util { * @return string */ public static function getVersionString() { - return '4.5 beta 3'; + return '4.5 beta 3a'; } /** @@ -211,13 +211,13 @@ class OC_Util { $permissionsHint="Permissions can usually be fixed by giving the webserver write access to the ownCloud directory"; // Check if config folder is writable. - if(!is_writable(OC::$SERVERROOT."/config/")) { + if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { $errors[]=array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"); } // Check if there is a writable install folder. if(OC_Config::getValue('appstoreenabled', true)) { - if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath())) { + if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath()) || !is_readable(OC_App::getInstallPath()) ) { $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud or disabling the appstore in the config file."); } @@ -257,7 +257,7 @@ class OC_Util { if(!$success) { $errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' (in a terminal, use the command 'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); } - } else if(!is_writable($CONFIG_DATADIRECTORY)) { + } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud
','hint'=>$permissionsHint); } diff --git a/lib/vcategories.php b/lib/vcategories.php index f5123adeeb..6b1d6a316f 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -55,7 +55,10 @@ class OC_VCategories { $this->app = $app; $this->user = is_null($user) ? OC_User::getUser() : $user; $categories = trim(OC_Preferences::getValue($this->user, $app, self::PREF_CATEGORIES_LABEL, '')); - $this->categories = $categories != '' ? @unserialize($categories) : $defcategories; + if ($categories) { + $categories = @unserialize($categories); + } + $this->categories = is_array($categories) ? $categories : $defcategories; } /** diff --git a/search/js/result.js b/search/js/result.js index 27a2383e2c..aaecde08c6 100644 --- a/search/js/result.js +++ b/search/js/result.js @@ -45,7 +45,7 @@ OC.search.showResults=function(results){ var row=$('#searchresults tr.template').clone(); row.removeClass('template'); row.addClass('result'); - if (index == 0){ + if (i == 0){ row.children('td.type').text(name); } row.find('td.result a').attr('href',type[i].link); diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index a15b21e174..fb78cc8924 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -62,4 +62,4 @@ if(is_array($catagoryNames)) { } } -OCP\JSON::success(array('type' => 'external', 'data' => $apps)); \ No newline at end of file +OCP\JSON::success(array('type' => 'external', 'data' => $apps)); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index 1075a9a433..c3b3491db9 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -10,5 +10,6 @@ $appid = OC_App::enable($_POST['appid']); if($appid !== false) { OC_JSON::success(array('data' => array('appid' => $appid))); } else { + $l = OC_L10N::get('settings'); OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") ))); } diff --git a/settings/css/settings.css b/settings/css/settings.css index f41edc96fb..2015e93b43 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -65,4 +65,4 @@ span.version { margin-left:3em; margin-right:3em; color:#555; } /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } input[type=radio] { width:1em; } -table.shareAPI td { padding-right: 2em; } \ No newline at end of file +table.shareAPI td { padding-bottom: 0.8em; } diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 062e9a9734..c549ef2262 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -3,6 +3,7 @@ "Authentication error" => "Error d'autenticació", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", +"Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "OpenID Changed" => "OpenID ha canviat", @@ -20,10 +21,7 @@ "Security Warning" => "Avís de seguretat", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess que ownCloud proporciona no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Cron" => "Cron", -"execute one task with each page loaded" => "executa una tasca en carregar cada pàgina", -"cron.php is registered at a webcron service" => "cron.php està registrat en un servei web cron", -"use systems cron service" => "usa el servei cron del sistema", -"Share API" => "API de compartir", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", "Allow links" => "Permet enllaços", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index a68f10269f..09859cd3c5 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -3,6 +3,7 @@ "Authentication error" => "Chyba ověření", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "OpenID Changed" => "OpenID změněno", @@ -20,10 +21,10 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", -"execute one task with each page loaded" => "spustit jednu úlohu s každou načtenou stránkou", -"cron.php is registered at a webcron service" => "cron.php je registrován jako služba webcron", -"use systems cron service" => "použít systémovou službu cron", -"Share API" => "API sdílení", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.", +"Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 0c09a25dfd..53e51111a2 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -13,10 +13,6 @@ "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", "Cron" => "Cron", -"execute one task with each page loaded" => "udfør en opgave for hver indlæst side", -"cron.php is registered at a webcron service" => "cron.php er tilmeldt en webcron tjeneste", -"use systems cron service" => "brug systemets cron service", -"Share API" => "Del API", "Enable Share API" => "Aktiver dele API", "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", "Allow links" => "Tillad links", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 4f3a12934e..a450b60b7b 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -3,6 +3,7 @@ "Authentication error" => "Anmeldungsfehler", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail gespeichert", "Invalid email" => "Ungültige E-Mail", "OpenID Changed" => "OpenID geändert", @@ -20,10 +21,10 @@ "Security Warning" => "Sicherheitshinweis", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron", -"execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", -"cron.php is registered at a webcron service" => "cron.php ist beim Webcron-Service registriert", -"use systems cron service" => "Nutze System-Cron-Service", -"Share API" => "Teilungs-API", +"Execute one task with each page loaded" => "Führe eine Aufgabe pro geladener Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutzen Sie den System-Crondienst. Rufen Sie die cron.php im owncloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", "Enable Share API" => "Teilungs-API aktivieren", "Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", "Allow links" => "Links erlauben", @@ -47,7 +48,7 @@ "Answer" => "Antwort", "You use" => "Sie nutzen", "of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", "Download" => "Download", "Your password got changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 833ef8e10d..8dba78c858 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,26 +1,45 @@ "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", +"Group already exists" => "Η ομάδα υπάρχει ήδη", +"Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το Email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Unable to delete group" => "Αδυναμία διαγραφής ομάδας", +"Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", +"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", +"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Error" => "Σφάλμα", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανότατα προσβάσιμα από το διαδίκτυο. Το αρχείο .htaccess που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.", "Cron" => "Cron", -"execute one task with each page loaded" => "Εκτέλεση μίας εργασίας με κάθε σελίδα που φορτώνεται", -"cron.php is registered at a webcron service" => "Το cron.php έχει καταχωρηθεί σε μια webcron υπηρεσία", -"use systems cron service" => "Χρήση της υπηρεσίας cron του συστήματος", +"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", +"Sharing" => "Διαμοιρασμός", +"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", +"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", +"Allow links" => "Να επιτρέπονται σύνδεσμοι", +"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζονται δημόσια με συνδέσμους", +"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", +"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", +"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", +"Allow users to only share with users in their groups" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", "More" => "Περισσότερο", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", "Select an App" => "Επιλέξτε μια εφαρμογή", "See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"-licensed by " => "-άδεια από ", "Documentation" => "Τεκμηρίωση", "Managing Big Files" => "Διαχείριση μεγάλων αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", @@ -49,7 +68,7 @@ "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο όριο", "Other" => "Άλλα", -"Group Admin" => "Διαχειρηστής ομάδας", +"Group Admin" => "Ομάδα Διαχειριστών", "Quota" => "Σύνολο χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index cb84b2da03..c3bfa63f15 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -13,9 +13,6 @@ "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "Cron" => "Cron", -"execute one task with each page loaded" => "lanĉi unu taskon po ĉiu paĝo ŝargita", -"cron.php is registered at a webcron service" => "cron.php estas registrita kiel webcron-servilo", -"use systems cron service" => "uzi la cron-servon de la sistemo", "Log" => "Protokolo", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 2f2a06ce05..c71a6057b9 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -3,6 +3,7 @@ "Authentication error" => "Error de autenticación", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", +"Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", "OpenID Changed" => "OpenID cambiado", @@ -20,10 +21,9 @@ "Security Warning" => "Advertencia de seguridad", "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." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", -"execute one task with each page loaded" => "ejecutar una tarea con cada página cargada", -"cron.php is registered at a webcron service" => "cron.php se registra en un servicio webcron", -"use systems cron service" => "usar servicio cron del sistema", -"Share API" => "API de compartición", +"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", +"Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index ef36dbf951..9a8dd9fe13 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -19,10 +19,6 @@ "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", "Cron" => "Ajastatud töö", -"execute one task with each page loaded" => "käivita iga laetud lehe juures üks ülesanne", -"cron.php is registered at a webcron service" => "cron.php on webcron teenuses registreeritud", -"use systems cron service" => "kasuta süsteemide cron teenuseid", -"Share API" => "Jagamise API", "Enable Share API" => "Luba jagamise API", "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t", "Allow links" => "Luba linke", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index a30382f030..529b13df39 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -3,6 +3,7 @@ "Authentication error" => "Autentifikazio errorea", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", +"Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "OpenID Changed" => "OpenID aldatuta", @@ -20,10 +21,7 @@ "Security Warning" => "Segurtasun abisua", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Cron" => "Cron", -"execute one task with each page loaded" => "exekutatu zeregina orri karga bakoitzean", -"cron.php is registered at a webcron service" => "cron.php webcron zerbitzu batean erregistratuta dago", -"use systems cron service" => "erabili sistemaren cron zerbitzua", -"Share API" => "Partekatze APIa", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 54647c2961..b5571ac9a5 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -3,6 +3,7 @@ "Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", +"Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "OpenID Changed" => "OpenID on vaihdettu", @@ -20,10 +21,6 @@ "Security Warning" => "Turvallisuusvaroitus", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", -"execute one task with each page loaded" => "suorita yksi tehtävä jokaisella ladatulla sivulla", -"cron.php is registered at a webcron service" => "cron.php on rekisteröity webcron-palvelulla", -"use systems cron service" => "käytä järjestelmän cron-palvelua", -"Share API" => "Jaon ohelmointirajapinta (Share API)", "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 906e80eabb..2ef64e2531 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -20,10 +20,6 @@ "Security Warning" => "Alertes de sécurité", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "Cron" => "Cron", -"execute one task with each page loaded" => "exécuter une tâche pour chaque page chargée", -"cron.php is registered at a webcron service" => "cron.php est enregistré comme un service webcron", -"use systems cron service" => "utiliser le service cron du système ", -"Share API" => "API de partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", "Allow links" => "Autoriser les liens", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 52aa13c461..0cb1fbd646 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -13,9 +13,6 @@ "__language_name__" => "Galego", "Security Warning" => "Aviso de seguridade", "Cron" => "Cron", -"execute one task with each page loaded" => "executar unha tarefa con cada páxina cargada", -"cron.php is registered at a webcron service" => "cron.php está rexistrada como un servizo webcron", -"use systems cron service" => "utilice o servizo cron do sistema", "Log" => "Conectar", "More" => "Máis", "Add your App" => "Engade o teu aplicativo", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 8c5251520c..de540cb50f 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -12,8 +12,6 @@ "Saving..." => "Spremanje...", "__language_name__" => "__ime_jezika__", "Cron" => "Cron", -"cron.php is registered at a webcron service" => "cron.php je registriran kod webcron servisa", -"use systems cron service" => "koristi sistemski cron servis", "Log" => "dnevnik", "More" => "više", "Add your App" => "Dodajte vašu aplikaciju", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 695ed31eee..ae6999675b 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -3,6 +3,7 @@ "Authentication error" => "Errore di autenticazione", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", +"Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "OpenID Changed" => "OpenID modificato", @@ -20,10 +21,10 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", -"execute one task with each page loaded" => "esegui un'attività con ogni pagina caricata", -"cron.php is registered at a webcron service" => "cron.php è registrato a un servizio webcron", -"use systems cron service" => "usa il servizio cron di sistema", -"Share API" => "API di condivisione", +"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.", +"Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index fe1eed1980..d675cc6836 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -3,6 +3,7 @@ "Authentication error" => "認証エラー", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", +"Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "OpenID Changed" => "OpenIDが変更されました", @@ -20,10 +21,7 @@ "Security Warning" => "セキュリティ警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", -"execute one task with each page loaded" => "ページを開く毎にタスクを1つ実行", -"cron.php is registered at a webcron service" => "cron.phpをwebcronサービスに登録しました", -"use systems cron service" => "システムのcronサービスを使用", -"Share API" => "Share API", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", "Enable Share API" => "Share APIを有効", "Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", "Allow links" => "リンクを許可", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index ada09c845c..3ea2674a18 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -13,9 +13,6 @@ "__language_name__" => "한국어", "Security Warning" => "보안 경고", "Cron" => "크론", -"execute one task with each page loaded" => "각 페이지가 로드 된 하나의 작업을 실행", -"cron.php is registered at a webcron service" => "cron.php는 webcron 서비스에 등록이 되어 있습니다.", -"use systems cron service" => "cron 시스템 서비스를 사용", "Log" => "로그", "More" => "더", "Add your App" => "앱 추가", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 55db067f8c..d840a1d710 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,9 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sécherheets Warnung", "Cron" => "Cron", -"cron.php is registered at a webcron service" => "cron.php ass als en webcron Service registréiert", -"use systems cron service" => "benotz den systems cron Service", -"Share API" => "Share API", "Enable Share API" => "Share API aschalten", "Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", "Allow links" => "Links erlaben", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 701ec86727..169892d6b2 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -12,7 +12,6 @@ "__language_name__" => "Kalba", "Security Warning" => "Saugumo įspėjimas", "Cron" => "Cron", -"use systems cron service" => "naudoti sistemos cron servisą", "Log" => "Žurnalas", "More" => "Daugiau", "Add your App" => "Pridėti programėlę", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 57c1881352..8a1f42b7bf 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -13,9 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sikkerhetsadvarsel", "Cron" => "Cron", -"execute one task with each page loaded" => "utfør en oppgave med hver side som blir lastet", -"cron.php is registered at a webcron service" => "cron.php er registrert som en webcron tjeneste", -"use systems cron service" => "benytt systemets cron tjeneste", "Log" => "Logg", "More" => "Mer", "Add your App" => "Legg til din App", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 8ac7b58a4c..098f29a06e 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -3,6 +3,7 @@ "Authentication error" => "Authenticatie fout", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", +"Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "OpenID Changed" => "OpenID is aangepast", @@ -20,10 +21,7 @@ "Security Warning" => "Veiligheidswaarschuwing", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", -"execute one task with each page loaded" => "Voer 1 taak uit bij elke geladen pagina", -"cron.php is registered at a webcron service" => "cron.php is geregistreerd bij een webcron service", -"use systems cron service" => "gebruik de systeem cron service", -"Share API" => "Deel API", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op.", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", "Allow links" => "Sta links toe", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 851099ef6b..7a3dfdfdde 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -20,10 +20,6 @@ "Security Warning" => "Ostrzeżenia bezpieczeństwa", "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." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Cron" => "Cron", -"execute one task with each page loaded" => "wykonanie jednego zadania z każdej załadowanej strony", -"cron.php is registered at a webcron service" => "cron.php jest zarejestrowany w usłudze webcron", -"use systems cron service" => "korzystaj z usługi systemowej cron", -"Share API" => "Udostępnij API", "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6933e58554..b5579d4f9e 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -11,8 +11,6 @@ "Saving..." => "Gravando...", "__language_name__" => "Português", "Security Warning" => "Aviso de Segurança", -"execute one task with each page loaded" => "executar uma tarefa com cada página em aberto", -"cron.php is registered at a webcron service" => "cron.php esta registrado no serviço de webcron", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione seu Aplicativo", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index bf939df4ae..bf5a742e1b 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -13,9 +13,6 @@ "__language_name__" => "__language_name__", "Security Warning" => "Aviso de Segurança", "Cron" => "Cron", -"execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", -"cron.php is registered at a webcron service" => "cron.php está registado num serviço webcron", -"use systems cron service" => "usar o serviço cron do sistema", "Log" => "Log", "More" => "Mais", "Add your App" => "Adicione a sua aplicação", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index c82cdaab2a..d4b8c1651c 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,26 +1,40 @@ "Imposibil de încărcat lista din App Store", "Authentication error" => "Eroare de autentificare", +"Group already exists" => "Grupul există deja", +"Unable to add group" => "Nu s-a putut adăuga grupul", +"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Unable to delete group" => "Nu s-a putut șterge grupul", +"Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", +"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", +"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Error" => "Erroare", "Disable" => "Dezactivați", "Enable" => "Activați", "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Cron" => "Cron", -"execute one task with each page loaded" => "executâ o sarcină cu fiecare pagină încărcată", -"cron.php is registered at a webcron service" => "cron.php e înregistrat la un serviciu de webcron", -"use systems cron service" => "utilizează serviciul de cron al sistemului", +"Sharing" => "Partajare", +"Enable Share API" => "Activare API partajare", +"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", +"Allow links" => "Pemite legături", +"Allow resharing" => "Permite repartajarea", +"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", +"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Log" => "Jurnal de activitate", "More" => "Mai mult", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL.", "Add your App" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", +"-licensed by " => "-licențiat ", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 4e0a7e7d78..7ae8d53174 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -20,10 +20,6 @@ "Security Warning" => "Предупреждение безопасности", "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 и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.", "Cron" => "Задание", -"execute one task with each page loaded" => "Запускать задание при загрузке каждой страницы", -"cron.php is registered at a webcron service" => "cron.php зарегистрирован в службе webcron", -"use systems cron service" => "использовать системные задания", -"Share API" => "API публикации", "Enable Share API" => "Включить API публикации", "Allow apps to use the Share API" => "Разрешить API публикации для приложений", "Allow links" => "Разрешить ссылки", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php new file mode 100644 index 0000000000..edf315db7c --- /dev/null +++ b/settings/l10n/ru_RU.php @@ -0,0 +1,72 @@ + "Невозможно загрузить список из App Store", +"Authentication error" => "Ошибка авторизации", +"Group already exists" => "Группа уже существует", +"Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось запустить приложение", +"Email saved" => "Email сохранен", +"Invalid email" => "Неверный email", +"OpenID Changed" => "OpenID изменен", +"Invalid request" => "Неверный запрос", +"Unable to delete group" => "Невозможно удалить группу", +"Unable to delete user" => "Невозможно удалить пользователя", +"Language changed" => "Язык изменен", +"Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", +"Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", +"Error" => "Ошибка", +"Disable" => "Отключить", +"Enable" => "Включить", +"Saving..." => "Сохранение", +"__language_name__" => "__язык_имя__", +"Security Warning" => "Предупреждение системы безопасности", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог данных и файлы возможно доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Совместное использование", +"Enable Share API" => "Включить разделяемые API", +"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API", +"Allow links" => "Предоставить ссылки", +"Allow resharing" => "Разрешить повторное совместное использование", +"Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо", +"Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах", +"Log" => "Вход", +"More" => "Подробнее", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", +"Add your App" => "Добавить Ваше приложение", +"Select an App" => "Выбрать приложение", +"See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", +"-licensed by " => "-licensed by ", +"Documentation" => "Документация", +"Managing Big Files" => "Управление большими файлами", +"Ask a question" => "Задать вопрос", +"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", +"Go there manually." => "Сделать вручную.", +"Answer" => "Ответ", +"You use" => "Вы используете", +"of the available" => "из доступных", +"Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем", +"Download" => "Загрузка", +"Your password got changed" => "Ваш пароль был изменен", +"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" => "Помогите перевести", +"use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере", +"Name" => "Имя", +"Password" => "Пароль", +"Groups" => "Группы", +"Create" => "Создать", +"Default Quota" => "Квота по умолчанию", +"Other" => "Другой", +"Group Admin" => "Группа Admin", +"Quota" => "квота", +"Delete" => "Удалить" +); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 7b5c6bee3c..6e3cd22ce0 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -3,6 +3,7 @@ "Authentication error" => "Napaka overitve", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", +"Could not enable app. " => "Aplikacije ni bilo mogoče omogočiti.", "Email saved" => "E-poštni naslov je bil shranjen", "Invalid email" => "Neveljaven e-poštni naslov", "OpenID Changed" => "OpenID je bil spremenjen", @@ -20,12 +21,12 @@ "Security Warning" => "Varnostno opozorilo", "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." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", -"execute one task with each page loaded" => "izvedi eno nalogo z vsako naloženo stranjo", -"cron.php is registered at a webcron service" => "cron.php je vpisan na storitev webcron", -"use systems cron service" => "uporabi sistemski servis za periodična opravila", -"Share API" => "API souporabe", +"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", -"Allow apps to use the Share API" => "Dovoli aplikacijam uporabo API-ja souporabe", +"Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", "Allow links" => "Dovoli povezave", "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", "Allow resharing" => "Dovoli nadaljnjo souporabo", @@ -34,7 +35,7 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Razvit s strani skupnosti ownCloud. Izvorna koda je izdana pod licenco AGPL.", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Razvija ga ownCloud skupnost. Izvorna koda je izdana pod licenco AGPL.", "Add your App" => "Dodajte vašo aplikacijo", "Select an App" => "Izberite aplikacijo", "See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 1a18e9670d..c944cd0993 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -3,6 +3,7 @@ "Authentication error" => "Autentiseringsfel", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", +"Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "OpenID Changed" => "OpenID ändrat", @@ -20,10 +21,10 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", -"execute one task with each page loaded" => "utför en uppgift vid varje sidladdning", -"cron.php is registered at a webcron service" => "cron.php är registrerad på en webcron-tjänst", -"use systems cron service" => "använd systemets cron-tjänst", -"Share API" => "Delat API", +"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.", +"Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index d775af7671..128e548cc9 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -3,6 +3,7 @@ "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", "Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", +"Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", @@ -20,10 +21,10 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", -"execute one task with each page loaded" => "ประมวลผลหนึ่งงานเมื่อโหลดหน้าเว็บแต่ละครั้ง", -"cron.php is registered at a webcron service" => "cron.php ได้ถูกลงทะเบียนที่บริการ webcron", -"use systems cron service" => "ใช้บริการ cron จากระบบ", -"Share API" => "API สำหรับคุณสมบัติแชร์ข้อมูล", +"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", +"Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index c410bb4c3d..ade8a02131 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -20,10 +20,6 @@ "Security Warning" => "Cảnh bảo bảo mật", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", -"execute one task with each page loaded" => "Thực thi một nhiệm vụ với mỗi trang được nạp", -"cron.php is registered at a webcron service" => "cron.php đã được đăng ký ở một dịch vụ webcron", -"use systems cron service" => "sử dụng hệ thống dịch vụ cron", -"Share API" => "Chia sẻ API", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow links" => "Cho phép liên kết", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 83111beb10..760336c932 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,23 +1,45 @@ "不能从App Store 中加载列表", "Authentication error" => "认证错误", +"Group already exists" => "群组已存在", +"Unable to add group" => "未能添加群组", +"Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", +"Unable to delete group" => "未能删除群组", +"Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", +"Unable to add user to group %s" => "未能添加用户到群组 %s", +"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Error" => "错误", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "保存中...", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。", "Cron" => "定时", +"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", +"Sharing" => "分享", +"Enable Share API" => "启用分享 API", +"Allow apps to use the Share API" => "允许应用使用分享 API", +"Allow links" => "允许链接", +"Allow users to share items to the public with links" => "允许用户使用链接与公众分享条目", +"Allow resharing" => "允许重复分享", +"Allow users to share items shared with them again" => "允许用户再次分享已经分享过的条目", +"Allow users to share with anyone" => "允许用户与任何人分享", +"Allow users to only share with users in their groups" => "只允许用户与群组内用户分享", "Log" => "日志", "More" => "更多", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Add your App" => "添加你的应用程序", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", +"-licensed by " => "授权协议 ", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", @@ -46,6 +68,7 @@ "Create" => "新建", "Default Quota" => "默认限额", "Other" => "其他的", +"Group Admin" => "群组管理员", "Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 7927cec61c..13f2f38925 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -3,6 +3,7 @@ "Authentication error" => "认证错误", "Group already exists" => "已存在组", "Unable to add group" => "不能添加组", +"Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", @@ -20,10 +21,10 @@ "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Cron" => "计划任务", -"execute one task with each page loaded" => "为每个装入的页面执行任务", -"cron.php is registered at a webcron service" => "crop.php 已", -"use systems cron service" => "实现系统 cron 服务", -"Share API" => "共享API", +"Execute one task with each page loaded" => "每次页面加载完成后执行任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "分享", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 4f72c8398b..1a16215230 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -19,8 +19,6 @@ "__language_name__" => "__語言_名稱__", "Security Warning" => "安全性警告", "Cron" => "定期執行", -"execute one task with each page loaded" => "當頁面載入時,執行", -"use systems cron service" => "使用系統定期執行服務", "Allow links" => "允許連結", "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow resharing" => "允許轉貼分享", diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 4edbe64e96..35f34489fe 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -29,16 +29,31 @@ if(!$_['htaccessworking']) {
t('Cron');?> - > -
- > -
- > -
+ + + + + + + + +
+ > +
+ t("Execute one task with each page loaded"); ?> +
+ > +
+ t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?> +
+ > +
+ t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?> +
- t('Share API');?> + t('Sharing');?> + + +
@@ -46,15 +61,19 @@ if(!$_['htaccessworking']) {
t('Allow apps to use the Share API'); ?>
> />
t('Allow users to share items to the public with links'); ?>
> />
t('Allow users to share items shared with them again'); ?> +
> />