Merge branch 'master' into disable-anon-upload-master

This commit is contained in:
Thomas Müller 2013-07-22 11:36:52 +02:00
commit 934f2e94a3
674 changed files with 6937 additions and 10088 deletions

@ -1 +1 @@
Subproject commit 217626723957161191572ea50172a3943c30696d
Subproject commit 25e8568d41a9b9a6d1662ccf33058822a890e7f5

20
README
View File

@ -1,20 +0,0 @@
ownCloud gives you freedom and control over your own data.
A personal cloud which runs on your own server.
http://ownCloud.org
Installation instructions: http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html
Contribution Guidelines: http://owncloud.org/dev/contribute/
Source code: https://github.com/owncloud
Mailing list: https://mail.kde.org/mailman/listinfo/owncloud
IRC channel: https://webchat.freenode.net/?channels=owncloud
Diaspora: https://joindiaspora.com/u/owncloud
Identi.ca: https://identi.ca/owncloud
Important notice on translations:
Please submit translations via Transifex:
https://www.transifex.com/projects/p/owncloud/
For more detailed information about translations:
http://owncloud.org/dev/translation/

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# ownCloud
[ownCloud](http://ownCloud.org) gives you freedom and control over your own data.
A personal cloud which runs on your own server.
### Build Status on [Jenkins CI](https://ci.owncloud.org/)
Git master: [![Build Status](https://ci.owncloud.org/buildStatus/icon?job=ownCloud-Server%28master%29)](https://ci.owncloud.org/job/ownCloud-Server%28master%29/)
### Installation instructions
http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html
### Contribution Guidelines
http://owncloud.org/dev/contribute/
### Get in touch
* [Forum](http://forum.owncloud.org)
* [Mailing list](https://mail.kde.org/mailman/listinfo/owncloud)
* [IRC channel](https://webchat.freenode.net/?channels=owncloud)
* [Twitter](https://twitter.com/ownClouders)
### Important notice on translations
Please submit translations via Transifex:
https://www.transifex.com/projects/p/owncloud/
For more detailed information about translations:
http://owncloud.org/dev/translation/

View File

@ -16,72 +16,56 @@ if (isset($_GET['users'])) {
}
$eventSource = new OC_EventSource();
ScanListener::$eventSource = $eventSource;
ScanListener::$view = \OC\Files\Filesystem::getView();
OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_folder', 'ScanListener', 'folder');
OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_file', 'ScanListener', 'file');
$listener = new ScanListener($eventSource);
foreach ($users as $user) {
$eventSource->send('user', $user);
OC_Util::tearDownFS();
OC_Util::setupFS($user);
$absolutePath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir);
$mountPoints = \OC\Files\Filesystem::getMountPoints($absolutePath);
$mountPoints[] = \OC\Files\Filesystem::getMountPoint($absolutePath);
$mountPoints = array_reverse($mountPoints); //start with the mount point of $dir
foreach ($mountPoints as $mountPoint) {
$storage = \OC\Files\Filesystem::getStorage($mountPoint);
if ($storage) {
ScanListener::$mountPoints[$storage->getId()] = $mountPoint;
$scanner = $storage->getScanner();
if ($force) {
$scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG);
} else {
$scanner->backgroundScan();
}
}
$scanner = new \OC\Files\Utils\Scanner($user);
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', array($listener, 'file'));
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', array($listener, 'folder'));
if ($force) {
$scanner->scan($dir);
} else {
$scanner->backgroundScan($dir);
}
}
$eventSource->send('done', ScanListener::$fileCount);
$eventSource->send('done', $listener->getCount());
$eventSource->close();
class ScanListener {
static public $fileCount = 0;
static public $lastCount = 0;
/**
* @var \OC\Files\View $view
*/
static public $view;
/**
* @var array $mountPoints map storage ids to mountpoints
*/
static public $mountPoints = array();
private $fileCount = 0;
private $lastCount = 0;
/**
* @var \OC_EventSource event source to pass events to
*/
static public $eventSource;
private $eventSource;
static function folder($params) {
$internalPath = $params['path'];
$mountPoint = self::$mountPoints[$params['storage']];
$path = self::$view->getRelativePath($mountPoint . $internalPath);
self::$eventSource->send('folder', $path);
/**
* @param \OC_EventSource $eventSource
*/
public function __construct($eventSource) {
$this->eventSource = $eventSource;
}
static function file() {
self::$fileCount++;
if (self::$fileCount > self::$lastCount + 20) { //send a count update every 20 files
self::$lastCount = self::$fileCount;
self::$eventSource->send('count', self::$fileCount);
/**
* @param string $path
*/
public function folder($path) {
$this->eventSource->send('folder', $path);
}
public function file() {
$this->fileCount++;
if ($this->fileCount > $this->lastCount + 20) { //send a count update every 20 files
$this->lastCount = $this->fileCount;
$this->eventSource->send('count', $this->fileCount);
}
}
public function getCount() {
return $this->fileCount;
}
}

View File

@ -47,7 +47,7 @@ var FileList={
//size column
if(size!=t('files', 'Pending')){
simpleSize=simpleFileSize(size);
simpleSize = humanFileSize(size);
}else{
simpleSize=t('files', 'Pending');
}
@ -55,7 +55,6 @@ var FileList={
var lastModifiedTime = Math.round(lastModified.getTime() / 1000);
td = $('<td></td>').attr({
"class": "filesize",
"title": humanFileSize(size),
"style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')'
}).text(simpleSize);
tr.append(td);

View File

@ -756,9 +756,7 @@ function procesSelection(){
for(var i=0;i<selectedFolders.length;i++){
totalSize+=selectedFolders[i].size;
};
simpleSize=simpleFileSize(totalSize);
$('#headerSize').text(simpleSize);
$('#headerSize').attr('title',humanFileSize(totalSize));
$('#headerSize').text(humanFileSize(totalSize));
var selection='';
if(selectedFolders.length>0){
if(selectedFolders.length==1){

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "Du hast hier keine Schreib-Berechtigung.",
"Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!",
"Download" => "Herunterladen",
"Size (MB)" => "Größe (MB)",
"Unshare" => "Freigabe aufheben",
"Upload too large" => "Der Upload ist 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.",

View File

@ -1,5 +1,5 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits",
"Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.",
"Could not move %s" => "Konnte %s nicht verschieben",
"Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.",
"Invalid Token" => "Ungültiges Merkmal",
@ -68,7 +68,6 @@
"You dont have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.",
"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!",
"Download" => "Herunterladen",
"Size (MB)" => "Größe (MB)",
"Unshare" => "Freigabe aufheben",
"Upload too large" => "Der Upload ist 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.",

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "No tiene permisos de escritura aquí.",
"Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!",
"Download" => "Descargar",
"Size (MB)" => "Tamaño (MB)",
"Unshare" => "Dejar de compartir",
"Upload too large" => "Subida demasido grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.",

View File

@ -9,20 +9,20 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"The uploaded file was only partially uploaded" => "El archivo fue subido parcialmente",
"No file was uploaded" => "No se subió ningún archivo ",
"Missing a temporary folder" => "Error en la carpera temporal",
"Missing a temporary folder" => "Falta un directorio temporal",
"Failed to write to disk" => "Error al escribir en el disco",
"Not enough storage available" => "No hay suficiente capacidad de almacenamiento",
"Invalid directory." => "Directorio invalido.",
"Not enough storage available" => "No hay suficiente almacenamiento",
"Invalid directory." => "Directorio inválido.",
"Files" => "Archivos",
"Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes",
"Not enough space available" => "No hay suficiente espacio disponible",
"Upload cancelled." => "La subida fue cancelada",
"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.",
"URL cannot be empty." => "La URL no puede estar vacía",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de carpeta inválido. El uso de \"Shared\" está reservado por ownCloud",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud",
"Error" => "Error",
"Share" => "Compartir",
"Delete permanently" => "Borrar de manera permanente",
"Delete permanently" => "Borrar permanentemente",
"Delete" => "Borrar",
"Rename" => "Cambiar nombre",
"Pending" => "Pendientes",
@ -30,9 +30,9 @@
"replace" => "reemplazar",
"suggest name" => "sugerir nombre",
"cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}",
"replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}",
"undo" => "deshacer",
"perform delete operation" => "Eliminar",
"perform delete operation" => "Llevar a cabo borrado",
"1 file uploading" => "Subiendo 1 archivo",
"files uploading" => "Subiendo archivos",
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
@ -40,7 +40,7 @@
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.",
"Your storage is full, files can not be updated or synced anymore!" => "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando",
"Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.",
"Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud",
"Name" => "Nombre",
"Size" => "Tamaño",
@ -49,12 +49,12 @@
"{count} folders" => "{count} directorios",
"1 file" => "1 archivo",
"{count} files" => "{count} archivos",
"%s could not be renamed" => "%s no se pudo renombrar",
"%s could not be renamed" => "No se pudo renombrar %s",
"Upload" => "Subir",
"File handling" => "Tratamiento de archivos",
"Maximum upload size" => "Tamaño máximo de subida",
"max. possible: " => "máx. posible:",
"Needed for multi-file and folder downloads." => "Es necesario para descargas multi-archivo y de carpetas",
"Needed for multi-file and folder downloads." => "Es necesario para descargas multi-archivo y de directorios.",
"Enable ZIP-download" => "Habilitar descarga en formato ZIP",
"0 is unlimited" => "0 significa ilimitado",
"Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada",
@ -63,12 +63,11 @@
"Text file" => "Archivo de texto",
"Folder" => "Carpeta",
"From link" => "Desde enlace",
"Deleted files" => "Archivos Borrados",
"Deleted files" => "Archivos borrados",
"Cancel upload" => "Cancelar subida",
"You dont have write permissions here." => "No tenés permisos de escritura acá.",
"Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!",
"Download" => "Descargar",
"Size (MB)" => "Tamaño (MB)",
"Unshare" => "Dejar de compartir",
"Upload too large" => "El tamaño del archivo que querés subir es demasiado grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ",

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da",
"Could not move %s" => "Ezin dira fitxategiak mugitu %s",
"Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.",
"Invalid Token" => "Lekuko baliogabea",
"No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna",
"There is no error, the file uploaded with success" => "Ez da errorerik egon, fitxategia ongi igo da",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:",
@ -17,6 +19,7 @@
"Upload cancelled." => "Igoera ezeztatuta",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.",
"URL cannot be empty." => "URLa ezin da hutsik egon.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago.",
"Error" => "Errorea",
"Share" => "Elkarbanatu",
"Delete permanently" => "Ezabatu betirako",
@ -46,6 +49,7 @@
"{count} folders" => "{count} karpeta",
"1 file" => "fitxategi bat",
"{count} files" => "{count} fitxategi",
"%s could not be renamed" => "%s ezin da berrizendatu",
"Upload" => "Igo",
"File handling" => "Fitxategien kudeaketa",
"Maximum upload size" => "Igo daitekeen gehienezko tamaina",
@ -69,6 +73,8 @@
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.",
"Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.",
"Current scanning" => "Orain eskaneatzen ari da",
"directory" => "direktorioa",
"directories" => "direktorioak",
"file" => "fitxategia",
"files" => "fitxategiak",
"Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..."

View File

@ -60,7 +60,6 @@
"You dont have write permissions here." => "Tunnuksellasi ei ole kirjoitusoikeuksia tänne.",
"Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!",
"Download" => "Lataa",
"Size (MB)" => "Koko (Mt)",
"Unshare" => "Peru jakaminen",
"Upload too large" => "Lähetettävä tiedosto on liian suuri",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.",

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "Vous n'avez pas le droit d'écriture ici.",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)",
"Download" => "Télécharger",
"Size (MB)" => "Taille (Mo)",
"Unshare" => "Ne plus partager",
"Upload too large" => "Téléversement trop volumineux",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.",

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "Non ten permisos para escribir aquí.",
"Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.",
"Download" => "Descargar",
"Size (MB)" => "Tamaño (MB)",
"Unshare" => "Deixar de compartir",
"Upload too large" => "Envío demasiado grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor",

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "Qui non hai i permessi di scrittura.",
"Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!",
"Download" => "Scarica",
"Size (MB)" => "Dimensione (MB)",
"Unshare" => "Rimuovi condivisione",
"Upload too large" => "Caricamento troppo grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.",

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "あなたには書き込み権限がありません。",
"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。",
"Download" => "ダウンロード",
"Size (MB)" => "サイズ(MB)",
"Unshare" => "共有解除",
"Upload too large" => "アップロードには大きすぎます。",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。",

View File

@ -1,6 +1,7 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede",
"Could not move %s" => "Kunne ikke flytte %s",
"Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.",
"No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.",
"There is no error, the file uploaded with success" => "Pust ut, ingen feil. Filen ble lastet opp problemfritt",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen.",
@ -70,6 +71,8 @@
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.",
"Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.",
"Current scanning" => "Pågående skanning",
"directory" => "katalog",
"directories" => "kataloger",
"file" => "fil",
"files" => "filer",
"Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..."

View File

@ -49,6 +49,7 @@
"{count} folders" => "{count} mappen",
"1 file" => "1 bestand",
"{count} files" => "{count} bestanden",
"%s could not be renamed" => "%s kon niet worden hernoemd",
"Upload" => "Uploaden",
"File handling" => "Bestand",
"Maximum upload size" => "Maximale bestandsgrootte voor uploads",
@ -72,6 +73,8 @@
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.",
"Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.",
"Current scanning" => "Er wordt gescand",
"directory" => "directory",
"directories" => "directories",
"file" => "bestand",
"files" => "bestanden",
"Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..."

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome",
"Could not move %s" => "Não foi possível move o ficheiro %s",
"Unable to set upload directory." => "Não foi possível criar o diretório de upload",
"Invalid Token" => "Token inválido",
"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido",
"There is no error, the file uploaded with success" => "Não ocorreram erros, o ficheiro foi submetido com sucesso",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize",
@ -47,6 +49,7 @@
"{count} folders" => "{count} pastas",
"1 file" => "1 ficheiro",
"{count} files" => "{count} ficheiros",
"%s could not be renamed" => "%s não pode ser renomeada",
"Upload" => "Carregar",
"File handling" => "Manuseamento de ficheiros",
"Maximum upload size" => "Tamanho máximo de envio",
@ -70,6 +73,8 @@
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.",
"Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.",
"Current scanning" => "Análise actual",
"directory" => "diretório",
"directories" => "diretórios",
"file" => "ficheiro",
"files" => "ficheiros",
"Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..."

View File

@ -68,7 +68,6 @@
"You dont have write permissions here." => "У вас нет разрешений на запись здесь.",
"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!",
"Download" => "Скачать",
"Size (MB)" => "Размер (Мб)",
"Unshare" => "Закрыть общий доступ",
"Upload too large" => "Файл слишком велик",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.",

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.",
"Could not move %s" => "%s taşınamadı",
"Unable to set upload directory." => "Yükleme dizini tanımlanamadı.",
"Invalid Token" => "Geçeriz simge",
"No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata",
"There is no error, the file uploaded with success" => "Dosya başarıyla yüklendi, hata oluşmadı",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırııldı.",
@ -47,6 +49,7 @@
"{count} folders" => "{count} dizin",
"1 file" => "1 dosya",
"{count} files" => "{count} dosya",
"%s could not be renamed" => "%s yeniden adlandırılamadı",
"Upload" => "Yükle",
"File handling" => "Dosya taşıma",
"Maximum upload size" => "Maksimum yükleme boyutu",
@ -70,6 +73,8 @@
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.",
"Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.",
"Current scanning" => "Güncel tarama",
"directory" => "dizin",
"directories" => "dizinler",
"file" => "dosya",
"files" => "dosyalar",
"Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor"

View File

@ -1,18 +1,28 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "无法移动 %s - 存在同名文件",
"Could not move %s" => "无法移动 %s",
"Unable to set upload directory." => "无法设置上传文件夹",
"Invalid Token" => "非法Token",
"No file was uploaded. Unknown error" => "没有上传文件。未知错误",
"There is no error, the file uploaded with success" => "文件上传成功",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传的文件超过了php.ini指定的upload_max_filesize",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项",
"The uploaded file was only partially uploaded" => "文件部分上传",
"No file was uploaded" => "没有上传文件",
"Missing a temporary folder" => "缺失临时文件夹",
"Failed to write to disk" => "写磁盘失败",
"Not enough storage available" => "容量不足",
"Invalid directory." => "无效文件夹",
"Files" => "文件",
"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件",
"Not enough space available" => "容量不足",
"Upload cancelled." => "上传取消了",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。",
"URL cannot be empty." => "网址不能为空。",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "无效文件夹名。“Shared”已经被系统保留。",
"Error" => "出错",
"Share" => "分享",
"Delete permanently" => "永久删除",
"Delete" => "删除",
"Rename" => "重命名",
"Pending" => "等待中",
@ -22,8 +32,16 @@
"cancel" => "取消",
"replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}",
"undo" => "撤销",
"perform delete operation" => "执行删除",
"1 file uploading" => "1 个文件正在上传",
"files uploading" => "个文件正在上传",
"'.' is an invalid file name." => "'.' 文件名不正确",
"File name cannot be empty." => "文件名不能为空",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "文件名内不能包含以下符号:\\ / < > : \" | ?和 *",
"Your storage is full, files can not be updated or synced anymore!" => "容量已满,不能再同步/上传文件了!",
"Your storage is almost full ({usedSpacePercent}%)" => "你的空间快用满了 ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "正在下载,可能会花点时间,跟文件大小有关",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "不正确文件夹名。Shared是保留名不能使用。",
"Name" => "名称",
"Size" => "大小",
"Modified" => "修改日期",
@ -31,6 +49,7 @@
"{count} folders" => "{count} 个文件夹",
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件",
"%s could not be renamed" => "不能重命名 %s",
"Upload" => "上传",
"File handling" => "文件处理中",
"Maximum upload size" => "最大上传大小",
@ -44,7 +63,9 @@
"Text file" => "文本文档",
"Folder" => "文件夹",
"From link" => "来自链接",
"Deleted files" => "已删除的文件",
"Cancel upload" => "取消上传",
"You dont have write permissions here." => "您没有写入权限。",
"Nothing in here. Upload something!" => "这里没有东西.上传点什么!",
"Download" => "下载",
"Unshare" => "取消分享",
@ -52,6 +73,9 @@
"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" => "正在扫描",
"directory" => "文件夹",
"directories" => "文件夹",
"file" => "文件",
"files" => "文件"
"files" => "文件",
"Upgrading filesystem cache..." => "升级系统缓存..."
);

View File

@ -1,6 +1,8 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在",
"Could not move %s" => "無法移動 %s",
"Unable to set upload directory." => "無法設定上傳目錄。",
"Invalid Token" => "無效的 token",
"No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。",
"There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:",
@ -47,6 +49,7 @@
"{count} folders" => "{count} 個資料夾",
"1 file" => "1 個檔案",
"{count} files" => "{count} 個檔案",
"%s could not be renamed" => "無法重新命名 %s",
"Upload" => "上傳",
"File handling" => "檔案處理",
"Maximum upload size" => "最大上傳檔案大小",
@ -70,5 +73,9 @@
"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" => "目前掃描",
"directory" => "目錄",
"directories" => "目錄",
"file" => "檔案",
"files" => "檔案",
"Upgrading filesystem cache..." => "正在升級檔案系統快取..."
);

View File

@ -77,7 +77,7 @@
<?php endif; ?>
</span>
</th>
<th id="headerSize"><?php p($l->t('Size (MB)')); ?></th>
<th id="headerSize"><?php p($l->t('Size')); ?></th>
<th id="headerDate">
<span id="modified"><?php p($l->t( 'Modified' )); ?></span>
<?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?>

View File

@ -9,7 +9,6 @@ $totalsize = 0; ?>
} else {
$totalfiles++;
}
$simple_file_size = OCP\simple_file_size($file['size']);
// the bigger the file, the darker the shade of grey; megabytes*2
$simple_size_color = intval(160-$file['size']/(1024*1024)*2);
if($simple_size_color<0) $simple_size_color = 0;
@ -52,9 +51,8 @@ $totalsize = 0; ?>
</a>
</td>
<td class="filesize"
title="<?php p(OCP\human_file_size($file['size'])); ?>"
style="color:rgb(<?php p($simple_size_color.','.$simple_size_color.','.$simple_size_color) ?>)">
<?php print_unescaped($simple_file_size); ?>
<?php print_unescaped(OCP\human_file_size($file['size'])); ?>
</td>
<td class="date">
<span class="modified"
@ -91,7 +89,7 @@ $totalsize = 0; ?>
} ?>
</span></td>
<td class="filesize">
<?php print_unescaped(OCP\simple_file_size($totalsize)); ?>
<?php print_unescaped(OCP\human_file_size($totalsize)); ?>
</td>
<td></td>
</tr>

View File

@ -2,7 +2,7 @@
<info>
<id>files_encryption</id>
<name>Encryption</name>
<description>WARNING: This is a preview release of the new ownCloud 5 encryption system. Testing and feedback is very welcome but don't use this in production yet. After the app was enabled you need to re-login to initialize your encryption keys</description>
<description>The new ownCloud 5 files encryption system. After the app was enabled you need to re-login to initialize your encryption keys.</description>
<licence>AGPL</licence>
<author>Sam Tuke, Bjoern Schiessle, Florin Peter</author>
<require>4</require>

View File

@ -8,10 +8,13 @@
"Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.",
"Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.",
"Saving..." => "Ukládám...",
"personal settings" => "osobní nastavení",
"Encryption" => "Šifrování",
"Enabled" => "Povoleno",
"Disabled" => "Zakázáno",
"Change Password" => "Změnit heslo",
"Old log-in password" => "Staré přihlašovací heslo",
"Current log-in password" => "Aktuální přihlašovací heslo",
"Enable password recovery:" => "Povolit obnovu hesla:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo",
"File recovery settings updated" => "Možnosti obnovy souborů aktualizovány",

View File

@ -29,7 +29,7 @@
"Old log-in password" => "Altes Login-Passwort",
"Current log-in password" => "Momentanes Login-Passwort",
"Update Private Key Password" => "Das Passwort des privaten Schlüssels aktualisieren",
"Enable password recovery:" => "Passwort-Wiederherstellung aktivieren:",
"Enable password recovery:" => "Die Passwort-Wiederherstellung aktivieren:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.",
"File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
"Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden."

View File

@ -6,16 +6,16 @@
"Password successfully changed." => "Tu contraseña fue cambiada",
"Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.",
"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.",
"Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en tus opciones personales, para recuperar el acceso a sus archivos.",
"Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.",
"Missing requirements." => "Requisitos incompletos.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación fue deshabilitada.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada.",
"Saving..." => "Guardando...",
"Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.",
"You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu",
"personal settings" => "Configuración personal",
"Encryption" => "Encriptación",
"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso en que pierdas la contraseña):",
"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):",
"Recovery key password" => "Contraseña de recuperación de clave",
"Enabled" => "Habilitado",
"Disabled" => "Deshabilitado",
@ -23,14 +23,14 @@
"Old Recovery key password" => "Contraseña antigua de recuperación de clave",
"New Recovery key password" => "Nueva contraseña de recuperación de clave",
"Change Password" => "Cambiar contraseña",
"Your private key password no longer match your log-in password:" => "Tu contraseña de recuperación de clave ya no coincide con la contraseña de ingreso:",
"Set your old private key password to your current log-in password." => "Usá tu contraseña de recuperación de clave antigua para tu contraseña de ingreso actual.",
"Your private key password no longer match your log-in password:" => "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:",
"Set your old private key password to your current log-in password." => "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual.",
" If you don't remember your old password you can ask your administrator to recover your files." => "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos",
"Old log-in password" => "Contraseña anterior",
"Current log-in password" => "Contraseña actual",
"Update Private Key Password" => "Actualizar contraseña de la clave privada",
"Enable password recovery:" => "Habilitar contraseña de recuperación:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitando esta opción te va a permitir tener acceso a tus archivos encriptados incluso si perdés la contraseña",
"Enable password recovery:" => "Habilitar recuperación de contraseña:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña",
"File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas",
"Could not update file recovery" => "No fue posible actualizar la recuperación de archivos"
);

View File

@ -8,6 +8,8 @@
"Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.",
"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.",
"Missing requirements." => "Krav som saknas",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.",
"Saving..." => "Sparar...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.",
"You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina",

View File

@ -751,6 +751,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase {
* @large
*/
function testRecoveryForUser() {
$this->markTestIncomplete(
'This test drives Jenkins crazy - "Cannot modify header information - headers already sent" - line 811'
);
// login as admin
\Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1);

View File

@ -1,10 +1,24 @@
td.status>span { display:inline-block; height:16px; width:16px; }
span.success { background-image: url('../img/success.png'); background-repeat:no-repeat; }
span.error { background-image: url('../img/error.png'); background-repeat:no-repeat; }
span.waiting { background-image: url('../img/waiting.png'); background-repeat:no-repeat; }
td.status > span {
display: inline-block;
height: 16px;
width: 16px;
vertical-align: text-bottom;
}
span.success {
background: #37ce02;
border-radius: 8px;
}
span.error {
background: #ce3702;
}
span.waiting {
background: none;
}
td.mountPoint, td.backend { width:10em; }
td.remove>img { visibility:hidden; padding-top:0.8em; }
tr:hover>td.remove>img { visibility:visible; cursor:pointer; }
#addMountPoint>td { border:none; }
#addMountPoint>td.applicable { visibility:hidden; }
#selectBackend { margin-left:-10px; }
#selectBackend { margin-left:-10px; }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 512 B

View File

@ -5,16 +5,22 @@
"Please provide a valid Dropbox app key and secret." => "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید.",
"Error configuring Google Drive storage" => "خطا به هنگام تنظیم فضای Google Drive",
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید.",
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید.",
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "خطا: پشتیبانی Curl فعال نمی باشد یا نصب نشده است. نصب و راه اندازی ownCloud / WebDAV یا GoogleDrive امکان پذیر نیست. لطفا از مدیر سیستم خود برای نصب آن درخواست کنید.",
"External Storage" => "حافظه خارجی",
"Folder name" => "نام پوشه",
"External storage" => "حافظه خارجی",
"Configuration" => "پیکربندی",
"Options" => "تنظیمات",
"Applicable" => "قابل اجرا",
"Add storage" => "اضافه کردن حافظه",
"None set" => "تنظیم نشده",
"All Users" => "تمام کاربران",
"Groups" => "گروه ها",
"Users" => "کاربران",
"Delete" => "حذف",
"Enable User External Storage" => "فعال سازی حافظه خارجی کاربر",
"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان"
"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان",
"SSL root certificates" => "گواهی های اصلی SSL ",
"Import Root Certificate" => "وارد کردن گواهی اصلی"
);

View File

@ -234,7 +234,13 @@ class DAV extends \OC\Files\Storage\Common{
$mtime=time();
}
$path=$this->cleanPath($path);
$this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime));
// if file exists, update the mtime, else create a new empty file
if ($this->file_exists($path)) {
$this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime));
} else {
$this->file_put_contents($path, '');
}
}
public function getFile($path, $target) {

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.",
"Password" => "Salasana",
"Submit" => "Lähetä",
"%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.",
"Password" => "Passord",
"Submit" => "Send inn",
"%s shared the folder %s with you" => "%s delte mappen %s med deg",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.",
"Password" => "Wachtwoord",
"Submit" => "Verzenden",
"%s shared the folder %s with you" => "%s deelt de map %s met u",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"The password is wrong. Try again." => "Password errada, por favor tente de novo",
"Password" => "Password",
"Submit" => "Submeter",
"%s shared the folder %s with you" => "%s partilhou a pasta %s consigo",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"The password is wrong. Try again." => "Lösenordet är fel. Försök igen.",
"Password" => "Lösenord",
"Submit" => "Skicka",
"%s shared the folder %s with you" => "%s delade mappen %s med dig",

View File

@ -1,6 +1,6 @@
<form action="<?php p($_['URL']); ?>" method="post">
<fieldset>
<?php if ($_['wrongpw']): ?>
<?php if (isset($_['wrongpw'])): ?>
<div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div>
<?php endif; ?>
<p class="infield">

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array(
"Error" => "出错",
"Delete permanently" => "永久删除",
"Name" => "名称",
"1 folder" => "1 个文件夹",
"{count} folders" => "{count} 个文件夹",

View File

@ -1,8 +1,13 @@
<?php $TRANSLATIONS = array(
"Failed to clear the mappings." => "عدم موفقیت در پاک کردن نگاشت.",
"Failed to delete the server configuration" => "عملیات حذف پیکربندی سرور ناموفق ماند",
"The configuration is valid and the connection could be established!" => "پیکربندی معتبر است و ارتباط می تواند برقرار شود",
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید.",
"Deletion failed" => "حذف کردن انجام نشد",
"Keep settings?" => "آیا تنظیمات ذخیره شود ؟",
"Cannot add server configuration" => "نمی توان پیکربندی سرور را اضافه نمود",
"mappings cleared" => "نگاشت پاک شده است",
"Success" => "موفقیت",
"Error" => "خطا",
"Connection test succeeded" => "تست اتصال با موفقیت انجام گردید",
"Connection test failed" => "تست اتصال ناموفق بود",
@ -11,9 +16,56 @@
"Server configuration" => "پیکربندی سرور",
"Add Server Configuration" => "افزودن پیکربندی سرور",
"Host" => "میزبانی",
"Base DN" => "پایه DN",
"One Base DN per line" => "یک پایه DN در هر خط",
"You can specify Base DN for users and groups in the Advanced tab" => "شما می توانید پایه DN را برای کاربران و گروه ها در زبانه Advanced مشخص کنید.",
"User DN" => "کاربر DN",
"Password" => "گذرواژه",
"For anonymous access, leave DN and Password empty." => "برای دسترسی ناشناس، DN را رها نموده و رمزعبور را خالی بگذارید.",
"User Login Filter" => "فیلتر ورودی کاربر",
"Group Filter" => "فیلتر گروه",
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "بدون هیچ گونه حفره یا سوراخ، به عنوان مثال، \"objectClass = posixGroup\".",
"Connection Settings" => "تنظیمات اتصال",
"Configuration Active" => "پیکربندی فعال",
"When unchecked, this configuration will be skipped." => "زمانیکه انتخاب نشود، این پیکربندی نادیده گرفته خواهد شد.",
"Port" => "درگاه",
"Backup (Replica) Host" => "پشتیبان گیری (بدل) میزبان",
"Backup (Replica) Port" => "پشتیبان گیری (بدل) پورت",
"Disable Main Server" => "غیر فعال کردن سرور اصلی",
"When switched on, ownCloud will only connect to the replica server." => "وقتی روشن می شود، ownCloud تنها با سرور ماکت ارتباط برقرار می کند.",
"Use TLS" => "استفاده ازTLS",
"Do not use it additionally for LDAPS connections, it will fail." => "علاوه بر این برای اتصالات LDAPS از آن استفاده نکنید، با شکست مواجه خواهد شد.",
"Case insensitve LDAP server (Windows)" => "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)",
"Turn off SSL certificate validation." => "غیرفعال کردن اعتبار گواهی نامه SSL .",
"Not recommended, use for testing only." => "توصیه نمی شود، تنها برای آزمایش استفاده کنید.",
"Directory Settings" => "تنظیمات پوشه",
"User Display Name Field" => "فیلد نام کاربر",
"Base User Tree" => "کاربر درخت پایه",
"One User Base DN per line" => "یک کاربر پایه DN در هر خط",
"User Search Attributes" => "ویژگی های جستجوی کاربر",
"Optional; one attribute per line" => "اختیاری؛ یک ویژگی در هر خط",
"Group Display Name Field" => "فیلد نام گروه",
"Base Group Tree" => "گروه درخت پایه ",
"One Group Base DN per line" => "یک گروه پایه DN در هر خط",
"Group Search Attributes" => "گروه صفات جستجو",
"Group-Member association" => "انجمن گروه کاربران",
"Special Attributes" => "ویژگی های مخصوص",
"Quota Field" => "سهمیه بندی انجام نشد.",
"Quota Default" => "سهمیه بندی پیش فرض",
"in bytes" => "در بایت",
"Email Field" => "ایمیل ارسال نشد.",
"User Home Folder Naming Rule" => "قانون نامگذاری پوشه خانه کاربر",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "خالی گذاشتن برای نام کاربری (پیش فرض). در غیر این صورت، تعیین یک ویژگی LDAP/AD.",
"Internal Username" => "نام کاربری داخلی",
"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "به طور پیش فرض نام کاربری داخلی از ویژگی UUID ایجاد خواهد شد. این اطمینان حاصل می کند که نام کاربری منحصر به فرد است و کاراکترها نیاز به تبدیل ندارند. نام کاربری داخلی دارای محدودیت است که فقط این کاراکتر ها مجاز می باشند: [ a-zA-Z0-9_.@- ]. بقیه کاراکترها با مکاتبات ASCII آنها جایگزین میشود یا به سادگی حذف شوند. در برخورد یک عدد اضافه خواهد شد / افزایش یافته است. نام کاربری داخلی برای شناسایی یک کاربر داخلی استفاده می شود.همچنین این نام به طور پیش فرض برای پوشه خانه کاربر در ownCloud. همچنین یک پورت برای آدرس های دور از راه است، به عنوان مثال برای تمام خدمات *DAV. با این تنظیمات، رفتار پیش فرض می تواند لغو گردد. برای رسیدن به یک رفتار مشابه به عنوان قبل، ownCloud 5 وارد نمایش ویژگی نام کاربر در زمینه های زیر است. آن را برای رفتار پیش فرض خالی بگذارید. تغییرات اثربخش خواهد بود فقط در نگاشت جدید(اضافه شده) کاربران LDAP .",
"Internal Username Attribute:" => "ویژگی نام کاربری داخلی:",
"Override UUID detection" => "نادیده گرفتن تشخیص UUID ",
"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "به طور پیش فرض، ownCloud ویژگی UUID را به صورت اتوماتیک تشخیص می دهد. ویژگی UUID برای شناسایی کاربران و گروه های LDAP استفاده می شود. همچنین، نام کاربری داخلی بر پایه UUID ایجاد خواهد شد، در غیر اینصورت در بالا مشخص نشده باشد. شما می توانید تنظیمات را لغو کنید و یک ویژگی از انتخابتان را تصویب کنید. شما باید مطمئن شوید که ویژگی انتخاب شده شما می تواند آورده شود برای کاربران و گروه ها و آن منحصر به فرد است. آن را برای رفتار پیش فرض ترک کن. تغییرات فقط بر روی نگاشت جدید (اضافه شده) کاربران و گروه های LDAP .",
"UUID Attribute:" => "صفت UUID:",
"Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر LDAP ",
"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "ownCloud از نام های کاربری برای ذخیره و تعیین داده (متا) استفاده می کند. به منظور دقت شناسایی و به رسمیت شناختن کاربران، هر کاربرLDAP باید یک نام کاربری داخلی داشته باشد. این نیازمند یک نگاشت از نام کاربری ownCloud به کاربرLDAP است. نام کاربری ساخته شده به UUID از کاربرLDAP نگاشته شده است. علاوه بر این DN پنهانی نیز بخوبی برای کاهش تعامل LDAP است، اما برای شناسایی مورد استفاده قرار نمی گیرد. اگر DN تغییر کند، تغییرات توسط ownCloud یافت خواهند شد. نام داخلی ownCloud در تمام ownCloud استفاده می شود. پاک سازی نگاشت ها در همه جا باقی مانده باشد. پیکربندی پاک سازی نگاشت ها حساس نیست، آن تحت تاثیر تمام پیکربندی های LDAP است! آیا هرگز نگاشت را در یک محیط تولید پاک کرده اید. نگاشت ها را فقط در وضعیت آزمایشی یا تجربی پاک کن.",
"Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ",
"Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری",
"Test Configuration" => "امتحان پیکربندی",
"Help" => "راه‌نما"
);

View File

@ -75,10 +75,13 @@
"User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador",
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.",
"Internal Username" => "Nome de utilizador interno",
"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres nao necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituidos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para novos utilizadores LDAP.",
"Internal Username Attribute:" => "Atributo do nome de utilizador interno",
"Override UUID detection" => "Passar a detecção do UUID",
"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defeito, o ownCloud deteta automaticamente o atributo UUID. Este atributo é usado para identificar inequivocamente grupos e utilizadores LDAP. Igualmente, o nome de utilizador interno é criado com base no UUID, se o contrário não for especificado. Pode sobrepor esta definição colocando um atributo à sua escolha. Tenha em atenção que esse atributo deve ser válido tanto para grupos como para utilizadores, e que é único. Deixe em branco para optar pelo comportamento por defeito. Estas alteração apenas terão efeito em novos utilizadores e grupos mapeados (adicionados).",
"UUID Attribute:" => "Atributo UUID:",
"Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP",
"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental.",
"Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP",
"Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP",
"Test Configuration" => "Testar a configuração",

View File

@ -134,21 +134,19 @@ class Jobs extends \OC\BackgroundJob\TimedJob {
\OCP\Util::DEBUG);
}
static private function getConnector() {
if(!is_null(self::$connector)) {
return self::$connector;
}
self::$connector = new \OCA\user_ldap\lib\Connection('user_ldap');
return self::$connector;
}
static private function getGroupBE() {
if(!is_null(self::$groupBE)) {
return self::$groupBE;
}
self::getConnector();
self::$groupBE = new \OCA\user_ldap\GROUP_LDAP();
self::$groupBE->setConnector(self::$connector);
$configPrefixes = Helper::getServerConfigurationPrefixes(true);
if(count($configPrefixes) == 1) {
//avoid the proxy when there is only one LDAP server configured
$connector = new Connection($configPrefixes[0]);
self::$groupBE = new \OCA\user_ldap\GROUP_LDAP();
self::$groupBE->setConnector($connector);
} else {
self::$groupBE = new \OCA\user_ldap\Group_Proxy($configPrefixes);
}
return self::$groupBE;
}

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"WebDAV Authentication" => "WebDAV 認證",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 會將把用戶的登入資訊發送到這個網址以嘗試登入,並檢查回應, HTTP 狀態碼401和403視為登入失敗所有其他回應視為登入成功。"
"URL: " => "URL: ",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 將會把用戶的帳密傳送至這個網址以嘗試登入並檢查回應HTTP 狀態碼401和403視為登入失敗所有其他回應視為登入成功。"
);

View File

@ -69,8 +69,6 @@ jQuery,$$,OC,$,oc_webroot,oc_appswebroots,oc_current_user,t,Files,FileList,FileA
<arg value="--log-csv" />
<arg value="${basedir}/build/logs/phploc.csv" />
<arg path="${basedir}" />
<arg value="--exclude" />
<arg value="${basedir}/3rdparty/" />
</exec>
</target>
@ -172,8 +170,6 @@ jQuery,$$,OC,$,oc_webroot,oc_appswebroots,oc_current_user,t,Files,FileList,FileA
<arg path="${basedir}" />
<arg value="--output" />
<arg path="${basedir}/build/code-browser" />
<arg value="--exclude" />
<arg value="${basedir}/3rdparty/" />
</exec>
</target>
</project>

View File

@ -129,17 +129,17 @@ $CONFIG = array(
/* Are we connected to the internet or are we running in a closed network? */
"has_internet_connection" => true,
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
"log_type" => "owncloud",
/* File for the owncloud logger to log to, (default is ownloud.log in the data dir */
/* File for the owncloud logger to log to, (default is ownloud.log in the data dir) */
"logfile" => "",
/* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */
"loglevel" => "",
/* Append All database query and parameters to the log file.
(whatch out, this option can increase the size of your log file)*/
/* Append all database queries and parameters to the log file.
(watch out, this option can increase the size of your log file)*/
"log_query" => false,
/* Lifetime of the remember login cookie, default is 15 days */
@ -167,8 +167,8 @@ $CONFIG = array(
/* Set an array of path for your apps directories
key 'path' is for the fs path and the key 'url' is for the http path to your
applications paths. 'writable' indicate if the user can install apps in this folder.
You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false
applications paths. 'writable' indicates whether the user can install apps in this folder.
You must have at least 1 app folder writable or you must set the parameter 'appstoreenabled' to false
*/
array(
'path'=> '/var/www/owncloud/apps',

View File

@ -673,7 +673,16 @@ button.loading {
/* ---- BROWSER-SPECIFIC FIXES ---- */
::-moz-focus-inner {
border: 0; /* remove dotted outlines in Firefox */
}
/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
.ie #show, .ie #show+label {
display: none;
visibility: hidden;
}

View File

@ -666,8 +666,6 @@ $(document).ready(function(){
$('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
$('a.delete').tipsy({gravity: 'e', fade:true, live:true});
$('a.action').tipsy({gravity:'s', fade:true, live:true});
$('#headerSize').tipsy({gravity:'s', fade:true, live:true});
$('td.filesize').tipsy({gravity:'s', fade:true, live:true});
$('td .modified').tipsy({gravity:'s', fade:true, live:true});
$('input').tipsy({gravity:'w', fade:true});
@ -697,14 +695,6 @@ function humanFileSize(size) {
return relativeSize + ' ' + readableFormat;
}
function simpleFileSize(bytes) {
var mbytes = Math.round(bytes/(1024*1024/10))/10;
if(bytes == 0) { return '0'; }
else if(mbytes < 0.1) { return '< 0.1'; }
else if(mbytes > 1000) { return '> 1000'; }
else { return mbytes.toFixed(1); }
}
function formatDate(date){
if(typeof date=='number'){
date=new Date(date);

View File

@ -62,7 +62,7 @@
"Share with link" => "Über einen Link teilen",
"Password protect" => "Passwortschutz",
"Password" => "Passwort",
"Allow Public Upload" => "Erlaube öffentliches hochladen",
"Allow Public Upload" => "Öffentliches Hochladen erlauben",
"Email link to person" => "Link per E-Mail verschicken",
"Send" => "Senden",
"Set expiration date" => "Ein Ablaufdatum setzen",
@ -91,7 +91,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!<br>Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?",
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.",
"Username" => "Benutzername",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?",
"Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.",
"Request reset" => "Zurücksetzung anfordern",
"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"%s shared »%s« with you" => "%s-ek »%s« zurekin partekatu du",
"Category type not provided." => "Kategoria mota ez da zehaztu.",
"No category to add?" => "Ez dago gehitzeko kategoriarik?",
"This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s",
@ -42,6 +43,7 @@
"years ago" => "urte",
"Choose" => "Aukeratu",
"Cancel" => "Ezeztatu",
"Error loading file picker template" => "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan",
"Yes" => "Bai",
"No" => "Ez",
"Ok" => "Ados",
@ -60,6 +62,7 @@
"Share with link" => "Elkarbanatu lotura batekin",
"Password protect" => "Babestu pasahitzarekin",
"Password" => "Pasahitza",
"Allow Public Upload" => "Gaitu igotze publikoa",
"Email link to person" => "Postaz bidali lotura ",
"Send" => "Bidali",
"Set expiration date" => "Ezarri muga data",
@ -84,8 +87,12 @@
"The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.",
"ownCloud password reset" => "ownCloud-en pasahitza berrezarri",
"Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.<br>Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.<br>Hor ere ez badago kudeatzailearekin harremanetan ipini.",
"Request failed!<br>Did you make sure your email/username was right?" => "Eskaerak huts egin du!<br>Ziur zaude posta/pasahitza zuzenak direla?",
"You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.",
"Username" => "Erabiltzaile izena",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo. Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik. Ziur zaude aurrera jarraitu nahi duzula?",
"Yes, I really want to reset my password now" => "Bai, nire pasahitza orain berrabiarazi nahi dut",
"Request reset" => "Eskaera berrezarri da",
"Your password was reset" => "Zure pasahitza berrezarri da",
"To login page" => "Sarrera orrira",
@ -98,6 +105,7 @@
"Help" => "Laguntza",
"Access forbidden" => "Sarrera debekatuta",
"Cloud not found" => "Ez da hodeia aurkitu",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!",
"Edit categories" => "Editatu kategoriak",
"Add" => "Gehitu",
"Security Warning" => "Segurtasun abisua",
@ -118,6 +126,7 @@
"Database tablespace" => "Datu basearen taula-lekua",
"Database host" => "Datubasearen hostalaria",
"Finish setup" => "Bukatu konfigurazioa",
"%s is available. Get more information on how to update." => "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu.",
"Log out" => "Saioa bukatu",
"Automatic logon rejected!" => "Saio hasiera automatikoa ez onartuta!",
"If you did not change your password recently, your account may be compromised!" => "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!",
@ -126,6 +135,7 @@
"remember" => "gogoratu",
"Log in" => "Hasi saioa",
"Alternative Logins" => "Beste erabiltzaile izenak",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.<br><a href=\"%s\">\nIkusi ezazu</a><br><br>Ongi jarraitu!",
"prev" => "aurrekoa",
"next" => "hurrengoa",
"Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake."

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"%s shared »%s« with you" => "%s partilhado »%s« contigo",
"Category type not provided." => "Tipo de categoria não fornecido",
"No category to add?" => "Nenhuma categoria para adicionar?",
"This category already exists: %s" => "A categoria já existe: %s",
@ -61,6 +62,7 @@
"Share with link" => "Partilhar com link",
"Password protect" => "Proteger com palavra-passe",
"Password" => "Password",
"Allow Public Upload" => "Permitir Envios Públicos",
"Email link to person" => "Enviar o link por e-mail",
"Send" => "Enviar",
"Set expiration date" => "Especificar data de expiração",
@ -89,6 +91,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "O pedido falhou! <br> Tem a certeza que introduziu o seu email/username correcto?",
"You will receive a link to reset your password via Email." => "Vai receber um endereço para repor a sua password",
"Username" => "Nome de utilizador",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?",
"Yes, I really want to reset my password now" => "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora.",
"Request reset" => "Pedir reposição",
"Your password was reset" => "A sua password foi reposta",
"To login page" => "Para a página de entrada",
@ -101,6 +105,7 @@
"Help" => "Ajuda",
"Access forbidden" => "Acesso interdito",
"Cloud not found" => "Cloud nao encontrada",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!",
"Edit categories" => "Editar categorias",
"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
@ -130,6 +135,7 @@
"remember" => "lembrar",
"Log in" => "Entrar",
"Alternative Logins" => "Contas de acesso alternativas",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Olá,<br><br>Apenas para lhe informar que %s partilhou »%s« consigo.<br><a href=\"%s\">Consulte-o aqui!</a><br><br>Cumprimentos!",
"prev" => "anterior",
"next" => "seguinte",
"Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar."

View File

@ -83,7 +83,7 @@
"Error setting expiration date" => "Fel vid sättning av utgångsdatum",
"Sending ..." => "Skickar ...",
"Email sent" => "E-post skickat",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-gemenskapen</a>.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.",
"The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.",
"ownCloud password reset" => "ownCloud lösenordsåterställning",
"Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu",
"Category type not provided." => "Kategori türü desteklenmemektedir.",
"No category to add?" => "Eklenecek kategori yok?",
"This category already exists: %s" => "Bu kategori zaten mevcut: %s",
@ -61,6 +62,7 @@
"Share with link" => "Bağlantı ile paylaş",
"Password protect" => "Şifre korunması",
"Password" => "Parola",
"Allow Public Upload" => "Herkes tarafından yüklemeye izin ver",
"Email link to person" => "Kişiye e-posta linki",
"Send" => "Gönder",
"Set expiration date" => "Son kullanma tarihini ayarla",
@ -89,6 +91,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Isteği başarısız oldu!<br>E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?",
"You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.",
"Username" => "Kullanıcı Adı",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını aktif etmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?",
"Yes, I really want to reset my password now" => "Evet,Şu anda parolamı sıfırlamak istiyorum.",
"Request reset" => "Sıfırlama iste",
"Your password was reset" => "Parolanız sıfırlandı",
"To login page" => "Giriş sayfasına git",
@ -101,6 +105,7 @@
"Help" => "Yardım",
"Access forbidden" => "Erişim yasaklı",
"Cloud not found" => "Bulut bulunamadı",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!",
"Edit categories" => "Kategorileri düzenle",
"Add" => "Ekle",
"Security Warning" => "Güvenlik Uyarisi",
@ -130,6 +135,7 @@
"remember" => "hatırla",
"Log in" => "Giriş yap",
"Alternative Logins" => "Alternatif Girişler",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>İyi günler!",
"prev" => "önceki",
"next" => "sonraki",
"Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir."

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array(
"%s shared »%s« with you" => "%s 與您分享了 %s",
"Category type not provided." => "未提供分類類型。",
"No category to add?" => "沒有可增加的分類?",
"This category already exists: %s" => "分類已經存在: %s",
@ -61,6 +62,7 @@
"Share with link" => "使用連結分享",
"Password protect" => "密碼保護",
"Password" => "密碼",
"Allow Public Upload" => "允許任何人上傳",
"Email link to person" => "將連結 email 給別人",
"Send" => "寄出",
"Set expiration date" => "設置到期日",
@ -87,8 +89,9 @@
"Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}",
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。",
"Request failed!<br>Did you make sure your email/username was right?" => "請求失敗!<br>您確定填入的電子郵件地址或是帳號名稱是正確的嗎?",
"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到的電子郵件信箱。",
"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到的電子郵件信箱。",
"Username" => "使用者名稱",
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "您的檔案已加密,如果您沒有設定還原金鑰,未來重設密碼後將無法取回您的資料。如果您不確定該怎麼做,請洽詢系統管理員後再繼續。您確定要現在繼續嗎?",
"Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。",
"Request reset" => "請求重設",
"Your password was reset" => "您的密碼已重設",
@ -102,6 +105,7 @@
"Help" => "說明",
"Access forbidden" => "存取被拒",
"Cloud not found" => "未發現雲端",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "嗨,\n\n通知您,%s 與您分享了 %s 。\n看一下:%s",
"Edit categories" => "編輯分類",
"Add" => "增加",
"Security Warning" => "安全性警告",
@ -131,6 +135,7 @@
"remember" => "記住",
"Log in" => "登入",
"Alternative Logins" => "替代登入方法",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "嗨,<br><br>通知您,%s 與您分享了 %s <br><a href=\"%s\">看一下吧</a>",
"prev" => "上一頁",
"next" => "下一頁",
"Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。"

View File

@ -308,7 +308,7 @@
<name>etag</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<notnull>false</notnull>
<length>40</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: 2013-07-11 02:17+0200\n"
"PO-Revision-Date: 2013-07-11 00:12+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-21 06:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -141,55 +141,55 @@ msgstr ""
msgid "Settings"
msgstr "Instellings"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr ""
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr ""
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr ""
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr ""
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr ""
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr ""
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr ""
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr ""
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr ""
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr ""
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr ""
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr ""
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
msgstr ""
@ -366,14 +366,14 @@ msgstr ""
msgid "Email sent"
msgstr ""
#: js/update.js:14
#: js/update.js:17
msgid ""
"The update was unsuccessful. Please report this issue to the <a "
"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud "
"community</a>."
msgstr ""
#: js/update.js:18
#: js/update.js:21
msgid "The update was successful. Redirecting you to ownCloud now."
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: 2013-07-11 02:16+0200\n"
"PO-Revision-Date: 2013-07-11 00:18+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr ""
msgid "Rename"
msgstr ""
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr ""
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr ""
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr ""
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr ""
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr ""
msgid "Name"
msgstr ""
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr ""
@ -212,19 +212,19 @@ msgstr ""
msgid "Modified"
msgstr ""
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr ""
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr ""
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr ""
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr ""
@ -305,10 +305,6 @@ msgstr ""
msgid "Download"
msgstr ""
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr ""
@ -331,19 +327,19 @@ msgstr ""
msgid "Current scanning"
msgstr ""
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr ""
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-11 02:17+0200\n"
"PO-Revision-Date: 2013-07-11 00:12+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-21 06:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -170,74 +170,74 @@ msgstr ""
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:42
#: setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:45
#: setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:198
#: setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:199
#: setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template.php:113
#: template.php:95
msgid "seconds ago"
msgstr ""
#: template.php:114
#: template.php:96
msgid "1 minute ago"
msgstr ""
#: template.php:115
#: template.php:97
#, php-format
msgid "%d minutes ago"
msgstr ""
#: template.php:116
#: template.php:98
msgid "1 hour ago"
msgstr ""
#: template.php:117
#: template.php:99
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:118
#: template.php:100
msgid "today"
msgstr ""
#: template.php:119
#: template.php:101
msgid "yesterday"
msgstr ""
#: template.php:120
#: template.php:102
#, php-format
msgid "%d days ago"
msgstr ""
#: template.php:121
#: template.php:103
msgid "last month"
msgstr ""
#: template.php:122
#: template.php:104
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:123
#: template.php:105
msgid "last year"
msgstr ""
#: template.php:124
#: template.php:106
msgid "years ago"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -141,55 +141,55 @@ msgstr "كانون الاول"
msgid "Settings"
msgstr "إعدادات"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr "منذ ثواني"
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr "منذ دقيقة"
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr "{minutes} منذ دقائق"
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr "قبل ساعة مضت"
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr "{hours} ساعة مضت"
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr "اليوم"
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr "يوم أمس"
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr "{days} يوم سابق"
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr "الشهر الماضي"
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr "{months} شهر مضت"
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr "شهر مضى"
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr "السنةالماضية"
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr "إلغاء"
msgid "Rename"
msgstr "إعادة تسميه"
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr "قيد الانتظار"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr "{new_name} موجود مسبقا"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr "استبدال"
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr "اقترح إسم"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr "إلغاء"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr "استبدل {new_name} بـ {old_name}"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr "تراجع"
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr "جاري تنفيذ عملية الحذف"
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr "جاري رفع 1 ملف"
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" م
msgid "Name"
msgstr "اسم"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "حجم"
@ -212,19 +212,19 @@ msgstr "حجم"
msgid "Modified"
msgstr "معدل"
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr "مجلد عدد 1"
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr "{count} مجلدات"
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr "ملف واحد"
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr "{count} ملفات"
@ -305,10 +305,6 @@ msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!"
msgid "Download"
msgstr "تحميل"
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr "إلغاء مشاركة"
@ -331,19 +327,19 @@ msgstr "يرجى الانتظار , جاري فحص الملفات ."
msgid "Current scanning"
msgstr "الفحص الحالي"
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr ""
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -170,74 +170,74 @@ msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s,
msgid "PostgreSQL username and/or password not valid"
msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة"
#: setup.php:42
#: setup.php:28
msgid "Set an admin username."
msgstr "اعداد اسم مستخدم للمدير"
#: setup.php:45
#: setup.php:31
msgid "Set an admin password."
msgstr "اعداد كلمة مرور للمدير"
#: setup.php:198
#: setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة"
#: setup.php:199
#: setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>."
#: template.php:113
#: template.php:95
msgid "seconds ago"
msgstr "منذ ثواني"
#: template.php:114
#: template.php:96
msgid "1 minute ago"
msgstr "منذ دقيقة"
#: template.php:115
#: template.php:97
#, php-format
msgid "%d minutes ago"
msgstr "%d دقيقة مضت"
#: template.php:116
#: template.php:98
msgid "1 hour ago"
msgstr "قبل ساعة مضت"
#: template.php:117
#: template.php:99
#, php-format
msgid "%d hours ago"
msgstr "%d ساعة مضت"
#: template.php:118
#: template.php:100
msgid "today"
msgstr "اليوم"
#: template.php:119
#: template.php:101
msgid "yesterday"
msgstr "يوم أمس"
#: template.php:120
#: template.php:102
#, php-format
msgid "%d days ago"
msgstr "%d يوم مضى"
#: template.php:121
#: template.php:103
msgid "last month"
msgstr "الشهر الماضي"
#: template.php:122
#: template.php:104
#, php-format
msgid "%d months ago"
msgstr "%d شهر مضت"
#: template.php:123
#: template.php:105
msgid "last year"
msgstr "السنةالماضية"
#: template.php:124
#: template.php:106
msgid "years ago"
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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-11 02:16+0200\n"
"PO-Revision-Date: 2013-07-11 00:18+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr ""
msgid "Rename"
msgstr ""
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr ""
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr ""
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr ""
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr ""
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr ""
msgid "Name"
msgstr ""
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr ""
@ -212,19 +212,19 @@ msgstr ""
msgid "Modified"
msgstr ""
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr ""
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr ""
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr ""
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr ""
@ -305,10 +305,6 @@ msgstr ""
msgid "Download"
msgstr ""
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr ""
@ -331,19 +327,19 @@ msgstr ""
msgid "Current scanning"
msgstr ""
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr ""
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -141,55 +141,55 @@ msgstr "Декември"
msgid "Settings"
msgstr "Настройки"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr "преди секунди"
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr "преди 1 минута"
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr ""
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr "преди 1 час"
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr ""
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr "днес"
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr "вчера"
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr ""
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr "последният месец"
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr ""
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr ""
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr "последната година"
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr "Изтриване"
msgid "Rename"
msgstr "Преименуване"
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr "Чакащо"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr "препокриване"
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr "отказ"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr "възтановяване"
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr ""
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr ""
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr ""
msgid "Name"
msgstr "Име"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "Размер"
@ -212,19 +212,19 @@ msgstr "Размер"
msgid "Modified"
msgstr "Променено"
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr "1 папка"
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr "{count} папки"
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr "1 файл"
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr "{count} файла"
@ -305,10 +305,6 @@ msgstr "Няма нищо тук. Качете нещо."
msgid "Download"
msgstr "Изтегляне"
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr ""
@ -331,19 +327,19 @@ msgstr "Файловете се претърсват, изчакайте."
msgid "Current scanning"
msgstr ""
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr "файл"
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -171,74 +171,74 @@ msgstr "Проблемната команда беше: \"%s\", име: %s, па
msgid "PostgreSQL username and/or password not valid"
msgstr "Невалидно PostgreSQL потребителско име и/или парола"
#: setup.php:42
#: setup.php:28
msgid "Set an admin username."
msgstr "Въведете потребителско име за администратор."
#: setup.php:45
#: setup.php:31
msgid "Set an admin password."
msgstr "Въведете парола за администратор."
#: setup.php:198
#: setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи."
#: setup.php:199
#: setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr "Моля направете повторна справка с <a href='%s'>ръководството за инсталиране</a>."
#: template.php:113
#: template.php:95
msgid "seconds ago"
msgstr "преди секунди"
#: template.php:114
#: template.php:96
msgid "1 minute ago"
msgstr "преди 1 минута"
#: template.php:115
#: template.php:97
#, php-format
msgid "%d minutes ago"
msgstr "преди %d минути"
#: template.php:116
#: template.php:98
msgid "1 hour ago"
msgstr "преди 1 час"
#: template.php:117
#: template.php:99
#, php-format
msgid "%d hours ago"
msgstr "преди %d часа"
#: template.php:118
#: template.php:100
msgid "today"
msgstr "днес"
#: template.php:119
#: template.php:101
msgid "yesterday"
msgstr "вчера"
#: template.php:120
#: template.php:102
#, php-format
msgid "%d days ago"
msgstr "преди %d дни"
#: template.php:121
#: template.php:103
msgid "last month"
msgstr "последният месец"
#: template.php:122
#: template.php:104
#, php-format
msgid "%d months ago"
msgstr "преди %d месеца"
#: template.php:123
#: template.php:105
msgid "last year"
msgstr "последната година"
#: template.php:124
#: template.php:106
msgid "years ago"
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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -141,55 +141,55 @@ msgstr "ডিসেম্বর"
msgid "Settings"
msgstr "নিয়ামকসমূহ"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr "সেকেন্ড পূর্বে"
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr "১ মিনিট পূর্বে"
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr "{minutes} মিনিট পূর্বে"
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr "1 ঘন্টা পূর্বে"
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr "{hours} ঘন্টা পূর্বে"
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr "আজ"
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr "গতকাল"
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr "{days} দিন পূর্বে"
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr "গত মাস"
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr "{months} মাস পূর্বে"
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr "মাস পূর্বে"
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr "গত বছর"
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr "মুছে"
msgid "Rename"
msgstr "পূনঃনামকরণ"
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr "মুলতুবি"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr "{new_name} টি বিদ্যমান"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr "প্রতিস্থাপন"
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr "নাম সুপারিশ করুন"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr "বাতিল"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr "ক্রিয়া প্রত্যাহার"
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr ""
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr "১টি ফাইল আপলোড করা হচ্ছে"
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভ
msgid "Name"
msgstr "রাম"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "আকার"
@ -212,19 +212,19 @@ msgstr "আকার"
msgid "Modified"
msgstr "পরিবর্তিত"
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr "১টি ফোল্ডার"
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr "{count} টি ফোল্ডার"
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr "১টি ফাইল"
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr "{count} টি ফাইল"
@ -305,10 +305,6 @@ msgstr "এখানে কিছুই নেই। কিছু আপলো
msgid "Download"
msgstr "ডাউনলোড"
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr "ভাগাভাগি বাতিল "
@ -331,19 +327,19 @@ msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে
msgid "Current scanning"
msgstr "বর্তমান স্ক্যানিং"
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr ""
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -170,74 +170,74 @@ msgstr ""
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:42
#: setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:45
#: setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:198
#: setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:199
#: setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template.php:113
#: template.php:95
msgid "seconds ago"
msgstr "সেকেন্ড পূর্বে"
#: template.php:114
#: template.php:96
msgid "1 minute ago"
msgstr "১ মিনিট পূর্বে"
#: template.php:115
#: template.php:97
#, php-format
msgid "%d minutes ago"
msgstr "%d মিনিট পূর্বে"
#: template.php:116
#: template.php:98
msgid "1 hour ago"
msgstr "1 ঘন্টা পূর্বে"
#: template.php:117
#: template.php:99
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:118
#: template.php:100
msgid "today"
msgstr "আজ"
#: template.php:119
#: template.php:101
msgid "yesterday"
msgstr "গতকাল"
#: template.php:120
#: template.php:102
#, php-format
msgid "%d days ago"
msgstr "%d দিন পূর্বে"
#: template.php:121
#: template.php:103
msgid "last month"
msgstr "গত মাস"
#: template.php:122
#: template.php:104
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:123
#: template.php:105
msgid "last year"
msgstr "গত বছর"
#: template.php:124
#: template.php:106
msgid "years ago"
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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -141,55 +141,55 @@ msgstr ""
msgid "Settings"
msgstr ""
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr ""
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr ""
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr ""
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr ""
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr ""
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr ""
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr ""
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr ""
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr ""
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr ""
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr ""
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr ""
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -128,43 +128,43 @@ msgstr ""
msgid "Rename"
msgstr ""
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr ""
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr ""
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr ""
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr ""
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr ""
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr ""
@ -204,7 +204,7 @@ msgstr ""
msgid "Name"
msgstr "Ime"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "Veličina"
@ -212,19 +212,19 @@ msgstr "Veličina"
msgid "Modified"
msgstr ""
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr ""
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr ""
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr ""
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr ""
@ -305,10 +305,6 @@ msgstr ""
msgid "Download"
msgstr ""
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr ""
@ -331,19 +327,19 @@ msgstr ""
msgid "Current scanning"
msgstr ""
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr ""
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -143,55 +143,55 @@ msgstr "Desembre"
msgid "Settings"
msgstr "Configuració"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr "segons enrere"
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr "fa 1 minut"
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr "fa {minutes} minuts"
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr "fa 1 hora"
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr "fa {hours} hores"
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr "avui"
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr "ahir"
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr "fa {days} dies"
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr "el mes passat"
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr "fa {months} mesos"
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr "mesos enrere"
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr "l'any passat"
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
msgstr "anys enrere"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -130,43 +130,43 @@ msgstr "Esborra"
msgid "Rename"
msgstr "Reanomena"
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr "Pendent"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr "{new_name} ja existeix"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr "substitueix"
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr "sugereix un nom"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr "cancel·la"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr "s'ha substituït {old_name} per {new_name}"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr "desfés"
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr "executa d'operació d'esborrar"
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr "1 fitxer pujant"
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr "fitxers pujant"
@ -206,7 +206,7 @@ msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud"
msgid "Name"
msgstr "Nom"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "Mida"
@ -214,19 +214,19 @@ msgstr "Mida"
msgid "Modified"
msgstr "Modificat"
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr "1 carpeta"
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr "{count} carpetes"
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr "1 fitxer"
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr "{count} fitxers"
@ -307,10 +307,6 @@ msgstr "Res per aquí. Pugeu alguna cosa!"
msgid "Download"
msgstr "Baixa"
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr "Deixa de compartir"
@ -333,19 +329,19 @@ msgstr "S'estan escanejant els fitxers, espereu"
msgid "Current scanning"
msgstr "Actualment escanejant"
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr "directori"
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr "directoris"
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr "fitxer"
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
msgstr "fitxers"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -171,74 +171,74 @@ msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s"
msgid "PostgreSQL username and/or password not valid"
msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids"
#: setup.php:42
#: setup.php:28
msgid "Set an admin username."
msgstr "Establiu un nom d'usuari per l'administrador."
#: setup.php:45
#: setup.php:31
msgid "Set an admin password."
msgstr "Establiu una contrasenya per l'administrador."
#: setup.php:198
#: setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament."
#: setup.php:199
#: setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>."
#: template.php:113
#: template.php:95
msgid "seconds ago"
msgstr "segons enrere"
#: template.php:114
#: template.php:96
msgid "1 minute ago"
msgstr "fa 1 minut"
#: template.php:115
#: template.php:97
#, php-format
msgid "%d minutes ago"
msgstr "fa %d minuts"
#: template.php:116
#: template.php:98
msgid "1 hour ago"
msgstr "fa 1 hora"
#: template.php:117
#: template.php:99
#, php-format
msgid "%d hours ago"
msgstr "fa %d hores"
#: template.php:118
#: template.php:100
msgid "today"
msgstr "avui"
#: template.php:119
#: template.php:101
msgid "yesterday"
msgstr "ahir"
#: template.php:120
#: template.php:102
#, php-format
msgid "%d days ago"
msgstr "fa %d dies"
#: template.php:121
#: template.php:103
msgid "last month"
msgstr "el mes passat"
#: template.php:122
#: template.php:104
#, php-format
msgid "%d months ago"
msgstr "fa %d mesos"
#: template.php:123
#: template.php:105
msgid "last year"
msgstr "l'any passat"
#: template.php:124
#: template.php:106
msgid "years ago"
msgstr "anys enrere"

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: 2013-07-12 02:04+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:25+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -458,7 +458,7 @@ msgstr "WebDAV"
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
msgstr "Useu aquesta adreça per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedir als fitxers via WebDAV</a>"
#: templates/users.php:21
msgid "Login Name"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:15+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:26+0000\n"
"Last-Translator: rogerc\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:24+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -143,55 +143,55 @@ msgstr "Prosinec"
msgid "Settings"
msgstr "Nastavení"
#: js/js.js:725
#: js/js.js:715
msgid "seconds ago"
msgstr "před pár vteřinami"
#: js/js.js:726
#: js/js.js:716
msgid "1 minute ago"
msgstr "před minutou"
#: js/js.js:727
#: js/js.js:717
msgid "{minutes} minutes ago"
msgstr "před {minutes} minutami"
#: js/js.js:728
#: js/js.js:718
msgid "1 hour ago"
msgstr "před hodinou"
#: js/js.js:729
#: js/js.js:719
msgid "{hours} hours ago"
msgstr "před {hours} hodinami"
#: js/js.js:730
#: js/js.js:720
msgid "today"
msgstr "dnes"
#: js/js.js:731
#: js/js.js:721
msgid "yesterday"
msgstr "včera"
#: js/js.js:732
#: js/js.js:722
msgid "{days} days ago"
msgstr "před {days} dny"
#: js/js.js:733
#: js/js.js:723
msgid "last month"
msgstr "minulý měsíc"
#: js/js.js:734
#: js/js.js:724
msgid "{months} months ago"
msgstr "před {months} měsíci"
#: js/js.js:735
#: js/js.js:725
msgid "months ago"
msgstr "před měsíci"
#: js/js.js:736
#: js/js.js:726
msgid "last year"
msgstr "minulý rok"
#: js/js.js:737
#: js/js.js:727
msgid "years ago"
msgstr "před lety"

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: 2013-07-12 02:03+0200\n"
"PO-Revision-Date: 2013-07-11 23:14+0000\n"
"POT-Creation-Date: 2013-07-22 01:54-0400\n"
"PO-Revision-Date: 2013-07-22 05:55+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -130,43 +130,43 @@ msgstr "Smazat"
msgid "Rename"
msgstr "Přejmenovat"
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464
#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465
msgid "Pending"
msgstr "Nevyřízené"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "{new_name} already exists"
msgstr "{new_name} již existuje"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "replace"
msgstr "nahradit"
#: js/filelist.js:302
#: js/filelist.js:303
msgid "suggest name"
msgstr "navrhnout název"
#: js/filelist.js:302 js/filelist.js:304
#: js/filelist.js:303 js/filelist.js:305
msgid "cancel"
msgstr "zrušit"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "replaced {new_name} with {old_name}"
msgstr "nahrazeno {new_name} s {old_name}"
#: js/filelist.js:349
#: js/filelist.js:350
msgid "undo"
msgstr "zpět"
#: js/filelist.js:374
#: js/filelist.js:375
msgid "perform delete operation"
msgstr "provést smazání"
#: js/filelist.js:456
#: js/filelist.js:457
msgid "1 file uploading"
msgstr "odesílá se 1 soubor"
#: js/filelist.js:459 js/filelist.js:517
#: js/filelist.js:460 js/filelist.js:518
msgid "files uploading"
msgstr "soubory se odesílají"
@ -206,7 +206,7 @@ msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřn
msgid "Name"
msgstr "Název"
#: js/files.js:745
#: js/files.js:745 templates/index.php:80
msgid "Size"
msgstr "Velikost"
@ -214,19 +214,19 @@ msgstr "Velikost"
msgid "Modified"
msgstr "Upraveno"
#: js/files.js:765
#: js/files.js:763
msgid "1 folder"
msgstr "1 složka"
#: js/files.js:767
#: js/files.js:765
msgid "{count} folders"
msgstr "{count} složky"
#: js/files.js:775
#: js/files.js:773
msgid "1 file"
msgstr "1 soubor"
#: js/files.js:777
#: js/files.js:775
msgid "{count} files"
msgstr "{count} soubory"
@ -307,10 +307,6 @@ msgstr "Žádný obsah. Nahrajte něco."
msgid "Download"
msgstr "Stáhnout"
#: templates/index.php:80
msgid "Size (MB)"
msgstr ""
#: templates/index.php:87 templates/index.php:88
msgid "Unshare"
msgstr "Zrušit sdílení"
@ -333,19 +329,19 @@ msgstr "Soubory se prohledávají, prosím čekejte."
msgid "Current scanning"
msgstr "Aktuální prohledávání"
#: templates/part.list.php:76
#: templates/part.list.php:74
msgid "directory"
msgstr ""
#: templates/part.list.php:78
#: templates/part.list.php:76
msgid "directories"
msgstr ""
#: templates/part.list.php:87
#: templates/part.list.php:85
msgid "file"
msgstr "soubor"
#: templates/part.list.php:89
#: templates/part.list.php:87
msgid "files"
msgstr "soubory"

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