This commit is contained in:
Sam Tuke 2012-09-18 14:36:08 +01:00
commit dc0dc56d48
319 changed files with 5605 additions and 3892 deletions

View File

@ -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(

View File

@ -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()

View File

@ -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);
}

View File

@ -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));
}
}

View File

@ -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

View File

@ -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'));
}
});
}

View File

@ -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",

View File

@ -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"
);

View File

@ -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" => "Φάκελος",

View File

@ -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",

View File

@ -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" => "שגיאת העלאה",

View File

@ -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",

56
apps/files/l10n/ru_RU.php Normal file
View File

@ -0,0 +1,56 @@
<?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.",
"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" => "Текущее сканирование"
);

View File

@ -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" => "文件夹",

View File

@ -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 字节",

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Kryptering",
"Exclude the following file types from encryption" => "Ekskluder følgende filtyper fra kryptering",
"None" => "Ingen",
"Enable Encryption" => "Aktivér kryptering"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "加密",
"Exclude the following file types from encryption" => "从加密中排除如下文件类型",
"None" => "",
"Enable Encryption" => "启用加密"
);

View File

@ -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('<span id="access" style="padding-left:0.5em;">Access granted</span>');

View File

@ -1,10 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "Εξωτερική αποθήκευση",
"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" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
);

View File

@ -0,0 +1,18 @@
<?php $TRANSLATIONS = array(
"External Storage" => "外部存储",
"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" => "允许用户挂载他们的外部存储"
);

View File

@ -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());

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Password" => "Kodeord",
"Submit" => "Send",
"Download" => "Download",
"No preview available for" => "Forhåndsvisning ikke tilgængelig for",
"web services under your control" => "Webtjenester under din kontrol"
);

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Password" => "Συνθηματικό",
"Submit" => "Καταχώρηση"
"Submit" => "Καταχώρηση",
"Download" => "Λήψη",
"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για",
"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Password" => "密码",
"Submit" => "提交",
"Download" => "下载",
"No preview available for" => "没有预览可用于",
"web services under your control" => "您控制的网络服务"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -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"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -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"
);

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "Λήξη όλων των εκδόσεων",
"Enable Files Versioning" => "Ενεργοποίηση παρακολούθησης εκδόσεων αρχείων"
"Versions" => "Εκδόσεις",
"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας",
"Files Versioning" => "Εκδόσεις Αρχείων",
"Enable" => "Ενεργοποίηση"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -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"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -1,4 +1,3 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "انقضای تمامی نسخه‌ها",
"Enable Files Versioning" => "فعال‌کردن پرونده‌های نسخه‌بندی"
"Expire all versions" => "انقضای تمامی نسخه‌ها"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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)."
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "הפגת תוקף כל הגרסאות",
"Versions" => "גרסאות",
"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך",
"Enable Files Versioning" => "הפעלת ניהול גרסאות לקבצים"
"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך"
);

View File

@ -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"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "すべてのバージョンを削除する",
"Versions" => "バージョン",
"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します",
"Enable Files Versioning" => "ファイルのバージョン管理を有効にする"
"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します"
);

View File

@ -1,4 +1,3 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "Panaikinti visų versijų galiojimą",
"Enable Files Versioning" => "Įjungti failų versijų vedimą"
"Expire all versions" => "Panaikinti visų versijų galiojimą"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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"
);

View File

@ -1,4 +1,3 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "Expirar todas as versões",
"Enable Files Versioning" => "Habilitar versionamento de arquivos"
"Expire all versions" => "Expirar todas as versões"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "Просрочить все версии",
"Versions" => "Версии",
"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов",
"Enable Files Versioning" => "Включить ведение версий файлов"
"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов"
);

View File

@ -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"
);

View File

@ -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"
);

View File

@ -2,5 +2,6 @@
"Expire all versions" => "หมดอายุทุกรุ่น",
"Versions" => "รุ่น",
"This will delete all existing backup versions of your files" => "นี่จะเป็นลบทิ้งไฟล์รุ่นที่ทำการสำรองข้อมูลทั้งหมดที่มีอยู่ของคุณทิ้งไป",
"Enable Files Versioning" => "เปิดใช้งานคุณสมบัติการแยกสถานะรุ่นหรือเวอร์ชั่นของไฟล์"
"Files Versioning" => "การกำหนดเวอร์ชั่นของไฟล์",
"Enable" => "เปิดใช้งาน"
);

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "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ó "
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Expire all versions" => "作废所有版本",
"Versions" => "版本",
"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本",
"Files Versioning" => "文件版本",
"Enable" => "启用"
);

View File

@ -2,5 +2,6 @@
"Expire all versions" => "过期所有版本",
"Versions" => "版本",
"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本",
"Enable Files Versioning" => "开启文件版本"
"Files Versioning" => "文件版本",
"Enable" => "开启"
);

View File

@ -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);

View File

@ -1,5 +1,6 @@
<form id="versionssettings">
<fieldset class="personalblock">
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable Files Versioning'); ?></label> <br/>
<legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
</fieldset>
</form>

View File

@ -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. ",

View File

@ -0,0 +1,37 @@
<?php $TRANSLATIONS = array(
"Host" => "主机",
"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" => "帮助"
);

View File

@ -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('

View File

@ -1,5 +1,5 @@
<?php $TRANSLATIONS = array(
"Application name not provided." => "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",

View File

@ -50,6 +50,7 @@
"Database user" => "Χρήστης της βάσης δεδομένων",
"Database password" => "Κωδικός πρόσβασης βάσης δεδομένων",
"Database name" => "Όνομα βάσης δεδομένων",
"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων",
"Database host" => "Διακομιστής βάσης δεδομένων",
"Finish setup" => "Ολοκλήρωση εγκατάστασης",
"web services under your control" => "Υπηρεσίες web υπό τον έλεγχό σας",

View File

@ -50,6 +50,7 @@
"Database user" => "שם משתמש במסד הנתונים",
"Database password" => "ססמת מסד הנתונים",
"Database name" => "שם מסד הנתונים",
"Database tablespace" => "מרחב הכתובות של מסד הנתונים",
"Database host" => "שרת בסיס נתונים",
"Finish setup" => "סיום התקנה",
"web services under your control" => "שירותי רשת בשליטתך",

View File

@ -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",

64
core/l10n/ru_RU.php Normal file
View File

@ -0,0 +1,64 @@
<?php $TRANSLATIONS = array(
"Application name not provided." => "Имя приложения не предоставлено.",
"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 <strong>admin account</strong>" => "Создать <strong>admin account</strong>",
"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" => "следующий"
);

View File

@ -50,6 +50,7 @@
"Database user" => "数据库用户",
"Database password" => "数据库密码",
"Database name" => "数据库用户名",
"Database tablespace" => "数据库表格空间",
"Database host" => "数据库主机",
"Finish setup" => "完成安装",
"web services under your control" => "你控制下的网络服务",

View File

@ -76,8 +76,7 @@
<field>
<name>parent</name>
<type>integer</type>
<default>
</default>
<default>0</default>
<notnull>true</notnull>
<length>8</length>
</field>
@ -85,8 +84,7 @@
<field>
<name>name</name>
<type>text</type>
<default>
</default>
<default></default>
<notnull>true</notnull>
<length>300</length>
</field>
@ -94,8 +92,7 @@
<field>
<name>user</name>
<type>text</type>
<default>
</default>
<default></default>
<notnull>true</notnull>
<length>64</length>
</field>
@ -103,7 +100,7 @@
<field>
<name>size</name>
<type>integer</type>
<default></default>
<default>0</default>
<notnull>true</notnull>
<length>8</length>
</field>
@ -111,8 +108,7 @@
<field>
<name>ctime</name>
<type>integer</type>
<default>
</default>
<default>0</default>
<notnull>true</notnull>
<length>8</length>
</field>
@ -120,8 +116,7 @@
<field>
<name>mtime</name>
<type>integer</type>
<default>
</default>
<default>0</default>
<notnull>true</notnull>
<length>8</length>
</field>
@ -129,8 +124,7 @@
<field>
<name>mimetype</name>
<type>text</type>
<default>
</default>
<default></default>
<notnull>true</notnull>
<length>96</length>
</field>
@ -138,8 +132,7 @@
<field>
<name>mimepart</name>
<type>text</type>
<default>
</default>
<default></default>
<notnull>true</notnull>
<length>32</length>
</field>
@ -322,7 +315,6 @@
<field>
<name>timeout</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
<length>4</length>
@ -331,7 +323,6 @@
<field>
<name>created</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<length>8</length>
</field>
@ -347,7 +338,6 @@
<field>
<name>scope</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<length>1</length>
</field>
@ -355,7 +345,6 @@
<field>
<name>depth</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<length>1</length>
</field>
@ -469,7 +458,7 @@
<field>
<name>share_type</name>
<type>integer</type>
<default></default>
<default>0</default>
<notnull>true</notnull>
<length>1</length>
</field>
@ -493,7 +482,6 @@
<field>
<name>parent</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<length>4</length>
</field>
@ -525,7 +513,6 @@
<field>
<name>file_source</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<length>4</length>
</field>
@ -541,7 +528,7 @@
<field>
<name>permissions</name>
<type>integer</type>
<default></default>
<default>0</default>
<notnull>true</notnull>
<length>1</length>
</field>
@ -549,7 +536,7 @@
<field>
<name>stime</name>
<type>integer</type>
<default></default>
<default>0</default>
<notnull>true</notnull>
<length>8</length>
</field>

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -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-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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -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-11 02:02+0200\n"
"PO-Revision-Date: 2012-09-10 07:25+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <rcalvoi@yahoo.com>\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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -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 <rcalvoi@yahoo.com>\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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -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-10 02:02+0200\n"
"PO-Revision-Date: 2012-09-09 10:25+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <tomas.chvatal@gmail.com>\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"

View File

@ -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 <tomas.chvatal@gmail.com>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -4,6 +4,7 @@
#
# Translators:
# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012.
# <osos@openeyes.dk>, 2012.
# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011.
# <simon@rosmi.dk>, 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 <thomas.mueller@tmit.eu>\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"

View File

@ -3,32 +3,33 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <osos@openeyes.dk>, 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 <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-09-14 02:01+0200\n"
"PO-Revision-Date: 2012-09-13 09:42+0000\n"
"Last-Translator: osos <osos@openeyes.dk>\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"

View File

@ -3,36 +3,37 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <osos@openeyes.dk>, 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 <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2012-09-14 02:01+0200\n"
"PO-Revision-Date: 2012-09-13 09:35+0000\n"
"Last-Translator: osos <osos@openeyes.dk>\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"

View File

@ -3,32 +3,37 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <osos@openeyes.dk>, 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 <thomas.mueller@tmit.eu>\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 ""

View File

@ -4,41 +4,42 @@
#
# Translators:
# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012.
# <osos@openeyes.dk>, 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 <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2012-09-14 02:01+0200\n"
"PO-Revision-Date: 2012-09-13 09:43+0000\n"
"Last-Translator: osos <osos@openeyes.dk>\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 <a href=\"%s\">more information</a>"
msgstr ""
msgstr "%s er tilgængelig. Få <a href=\"%s\">mere information</a>"
#: updater.php:68
msgid "up to date"
msgstr ""
msgstr "opdateret"
#: updater.php:71
msgid "updates check is disabled"

View File

@ -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 <thomas.mueller@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "

View File

@ -8,6 +8,7 @@
# <georg.stefan.germany@googlemail.com>, 2011.
# I Robot <thomas.mueller@tmit.eu>, 2012.
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
# <mail@felixmoeller.de>, 2012.
# Marcel Kühlhorn <susefan93@gmx.de>, 2012.
# <m.fresel@sysangels.com>, 2012.
# <niko@nik-o-mat.de>, 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 <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
"PO-Revision-Date: 2012-09-17 06:28+0000\n"
"Last-Translator: fmms <mail@felixmoeller.de>\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"

View File

@ -7,6 +7,7 @@
# I Robot <thomas.mueller@tmit.eu>, 2012.
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
# Jan-Christoph Borchardt <jan@unhosted.org>, 2011.
# <mail@felixmoeller.de>, 2012.
# Marcel Kühlhorn <susefan93@gmx.de>, 2012.
# Michael Krell <m4dmike.mni@gmail.com>, 2012.
# <nelsonfritsch@gmail.com>, 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 <thomas.mueller@tmit.eu>\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"

View File

@ -4,21 +4,22 @@
#
# Translators:
# I Robot <thomas.mueller@tmit.eu>, 2012.
# <mail@felixmoeller.de>, 2012.
# <niko@nik-o-mat.de>, 2012.
# <thomas.mueller@tmit.eu>, 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 <niko@nik-o-mat.de>\n"
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
"PO-Revision-Date: 2012-09-17 06:25+0000\n"
"Last-Translator: fmms <mail@felixmoeller.de>\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"

View File

@ -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 <transifex.3.mensaje@spamgourmet.com>\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"

View File

@ -7,6 +7,8 @@
# <icewind1991@gmail.com>, 2012.
# I Robot <thomas.mueller@tmit.eu>, 2012.
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
# Jan T <jan-temesinko@web.de>, 2012.
# <mail@felixmoeller.de>, 2012.
# Marcel Kühlhorn <susefan93@gmx.de>, 2012.
# <nelsonfritsch@gmail.com>, 2012.
# <niko@nik-o-mat.de>, 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 <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
"PO-Revision-Date: 2012-09-17 06:24+0000\n"
"Last-Translator: fmms <mail@felixmoeller.de>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -235,7 +245,7 @@ msgstr "der verfügbaren"
#: templates/personal.php:12
msgid "Desktop and Mobile Syncing Clients"
msgstr "Desktop- und mobile Synchronierungs-Clients"
msgstr "Desktop- und mobile Clients für die Synchronisation"
#: templates/personal.php:13
msgid "Download"

View File

@ -12,15 +12,15 @@ 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-08-31 15:48+0000\n"
"POT-Creation-Date: 2012-09-18 02:01+0200\n"
"PO-Revision-Date: 2012-09-17 20:49+0000\n"
"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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."

View File

@ -4,6 +4,7 @@
#
# Translators:
# Dimitris M. <monopatis@gmail.com>, 2012.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Marios Bekatoros <>, 2012.
# <petros.kyladitis@gmail.com>, 2011.
# Petros Kyladitis <petros.kyladitis@gmail.com>, 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 <thomas.mueller@tmit.eu>\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 <diamond_gr@freemail.gr>\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 "Αποσύνδεση"

View File

@ -4,14 +4,15 @@
#
# Translators:
# Dimitris M. <monopatis@gmail.com>, 2012.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Marios Bekatoros <>, 2012.
# Petros Kyladitis <petros.kyladitis@gmail.com>, 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 <thomas.mueller@tmit.eu>\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"

View File

@ -3,25 +3,26 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012.
# Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
# Petros Kyladitis <petros.kyladitis@gmail.com>, 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 <petros.kyladitis@gmail.com>\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 <diamond_gr@freemail.gr>\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 "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"

View File

@ -4,20 +4,21 @@
#
# Translators:
# Dimitris M. <monopatis@gmail.com>, 2012.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Nisok Kosin <nikos.efthimiou@gmail.com>, 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 <thomas.mueller@tmit.eu>\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 <diamond_gr@freemail.gr>\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 "υπηρεσίες δικτύου υπό τον έλεγχό σας"

View File

@ -3,20 +3,21 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Nisok Kosin <nikos.efthimiou@gmail.com>, 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 <thomas.mueller@tmit.eu>\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 <diamond_gr@freemail.gr>\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 "Ενεργοποίηση"

View File

@ -4,19 +4,20 @@
#
# Translators:
# Dimitris M. <monopatis@gmail.com>, 2012.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012.
# <icewind1991@gmail.com>, 2012.
# Marios Bekatoros <>, 2012.
# Nisok Kosin <nikos.efthimiou@gmail.com>, 2012.
# <petros.kyladitis@gmail.com>, 2011.
# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012.
# Petros Kyladitis <petros.kyladitis@gmail.com>, 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 <thomas.mueller@tmit.eu>\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 <diamond_gr@freemail.gr>\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 <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -180,7 +189,7 @@ msgid ""
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
"target=\"_blank\"><abbr title=\"Affero General Public "
"License\">AGPL</abbr></a>."
msgstr ""
msgstr "Αναπτύχθηκε από την <a href=\"http://ownCloud.org/contact\" target=\"_blank\">κοινότητα ownCloud</a>, ο <a href=\"https://github.com/owncloud\" target=\"_blank\">πηγαίος κώδικας</a> είναι υπό άδεια χρήσης <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."
#: templates/apps.php:10
msgid "Add your App"
@ -196,7 +205,7 @@ msgstr "Η σελίδα εφαρμογών στο apps.owncloud.com"
#: templates/apps.php:30
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
msgstr ""
msgstr "<span class=\"licence\"></span>-άδεια από <span class=\"author\"></span>"
#: 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"

View File

@ -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 <mstreet@kde.org.ar>\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 <thomas.mueller@tmit.eu>\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"

View File

@ -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 <mstreet@kde.org.ar>\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 <thomas.mueller@tmit.eu>\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 ""

Some files were not shown because too many files have changed in this diff Show More