merge master into filesystem

This commit is contained in:
Robin Appelman 2012-12-15 02:21:26 +01:00
commit 946d58eaa8
302 changed files with 15457 additions and 6651 deletions

View File

@ -10,7 +10,7 @@ OCP\JSON::callCheck();
$dir = stripslashes($_POST["dir"]); $dir = stripslashes($_POST["dir"]);
$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]); $files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);
$files = explode(';', $files); $files = json_decode($files);
$filesWithError = ''; $filesWithError = '';
$success = true; $success = true;

View File

@ -8,15 +8,9 @@
#new { #new {
height:17px; margin:0 0 0 1em; z-index:1010; float:left; height:17px; margin:0 0 0 1em; z-index:1010; float:left;
background-color:#5bb75b;
border:1px solid; border-color:#51a351 #419341 #387038;
-moz-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset;
-webkit-box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset;
box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset;
} }
#new:hover, #upload:hover { background-color:#4b964b; }
#new.active { border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:none; } #new.active { border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:none; }
#new>a { padding:.5em 1.2em .3em; color:#fff; text-shadow:0 1px 0 #51a351; } #new>a { padding:.5em 1.2em .3em; }
#new>ul { #new>ul {
display:none; position:fixed; min-width:7em; z-index:-1; display:none; position:fixed; min-width:7em; z-index:-1;
padding:.5em; margin-top:0.075em; margin-left:-.5em; padding:.5em; margin-top:0.075em; margin-left:-.5em;
@ -31,15 +25,11 @@
#upload { #upload {
height:27px; padding:0; margin-left:0.2em; overflow:hidden; height:27px; padding:0; margin-left:0.2em; overflow:hidden;
color:#fff; text-shadow:0 1px 0 #51a351;
border-color:#51a351 #419341 #387038;
box-shadow:0 1px 1px #f8f8f8, 1px 1px 1px #ada inset;
background-color:#5bb75b;
} }
#upload a { #upload a {
position:relative; display:block; width:100%; height:27px; position:relative; display:block; width:100%; height:27px;
cursor:pointer; z-index:1000; cursor:pointer; z-index:1000;
background-image:url('%webroot%/core/img/actions/upload-white.svg'); background-image:url('%webroot%/core/img/actions/upload.svg');
background-repeat:no-repeat; background-repeat:no-repeat;
background-position:7px 6px; background-position:7px 6px;
} }

View File

@ -288,7 +288,7 @@ var FileList={
}, },
finishDelete:function(ready,sync){ finishDelete:function(ready,sync){
if(!FileList.deleteCanceled && FileList.deleteFiles){ if(!FileList.deleteCanceled && FileList.deleteFiles){
var fileNames=FileList.deleteFiles.join(';'); var fileNames=JSON.stringify(FileList.deleteFiles);
$.ajax({ $.ajax({
url: OC.filePath('files', 'ajax', 'delete.php'), url: OC.filePath('files', 'ajax', 'delete.php'),
async:!sync, async:!sync,

View File

@ -845,7 +845,7 @@ function getMimeIcon(mime, ready){
if(getMimeIcon.cache[mime]){ if(getMimeIcon.cache[mime]){
ready(getMimeIcon.cache[mime]); ready(getMimeIcon.cache[mime]);
}else{ }else{
$.get( OC.filePath('files','ajax','mimeicon.php')+'&mime='+mime, function(path){ $.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path){
getMimeIcon.cache[mime]=path; getMimeIcon.cache[mime]=path;
ready(getMimeIcon.cache[mime]); ready(getMimeIcon.cache[mime]);
}); });

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
"The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.", "The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.",
"No file was uploaded" => "Es wurde keine Datei hochgeladen.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
"The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.", "The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.",
"No file was uploaded" => "Es wurde keine Datei hochgeladen.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da", "There is no error, the file uploaded with success" => "Ez da arazorik izan, 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:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da",
"The uploaded file was only partially uploaded" => "Igotako fitxategiaren zati bat baino gehiago ez da igo", "The uploaded file was only partially uploaded" => "Igotako fitxategiaren zati bat baino gehiago ez da igo",
"No file was uploaded" => "Ez da fitxategirik igo", "No file was uploaded" => "Ez da fitxategirik igo",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Файл успешно загружен", "There is no error, the file uploaded with success" => "Файл успешно загружен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме",
"The uploaded file was only partially uploaded" => "Файл был загружен не полностью", "The uploaded file was only partially uploaded" => "Файл был загружен не полностью",
"No file was uploaded" => "Файл не был загружен", "No file was uploaded" => "Файл не был загружен",

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "مجموعات",
"Users" => "المستخدمين",
"Delete" => "حذف"
);

View File

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Groups" => "Групи",
"Delete" => "Изтриване"
);

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Ompliu els camps requerits", "Fill out all required fields" => "Ompliu els camps requerits",
"Please provide a valid Dropbox app key and secret." => "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox", "Please provide a valid Dropbox app key and secret." => "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox",
"Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament Google Drive", "Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament 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." => "<b>Avís:</b> \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li.",
"<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." => "<b>Avís:</b> El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li.",
"External Storage" => "Emmagatzemament extern", "External Storage" => "Emmagatzemament extern",
"Mount point" => "Punt de muntatge", "Mount point" => "Punt de muntatge",
"Backend" => "Dorsal", "Backend" => "Dorsal",

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Vyplňte všechna povinná pole", "Fill out all required fields" => "Vyplňte všechna povinná pole",
"Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.",
"Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště 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." => "<b>Varování:</b> není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.",
"<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." => "<b>Varování:</b> není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.",
"External Storage" => "Externí úložiště", "External Storage" => "Externí úložiště",
"Mount point" => "Přípojný bod", "Mount point" => "Přípojný bod",
"Backend" => "Podpůrná vrstva", "Backend" => "Podpůrná vrstva",

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Rellenar todos los campos requeridos", "Fill out all required fields" => "Rellenar todos los campos requeridos",
"Please provide a valid Dropbox app key and secret." => "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox.", "Please provide a valid Dropbox app key and secret." => "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox.",
"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de 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." => "<b>Advertencia:</b> El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.",
"<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." => "<b>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.",
"External Storage" => "Almacenamiento externo", "External Storage" => "Almacenamiento externo",
"Mount point" => "Punto de montaje", "Mount point" => "Punto de montaje",
"Backend" => "Motor", "Backend" => "Motor",

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Rellenar todos los campos requeridos", "Fill out all required fields" => "Rellenar todos los campos requeridos",
"Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.",
"Error configuring Google Drive storage" => "Error al configurar el almacenamiento de Google Drive", "Error configuring Google Drive storage" => "Error al configurar el almacenamiento de 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." => "<b>Advertencia:</b> El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.",
"<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." => "<b>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.",
"External Storage" => "Almacenamiento externo", "External Storage" => "Almacenamiento externo",
"Mount point" => "Punto de montaje", "Mount point" => "Punto de montaje",
"Backend" => "Motor", "Backend" => "Motor",

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "گروه ها",
"Users" => "کاربران",
"Delete" => "حذف"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Grupe",
"Users" => "Korisnici",
"Delete" => "Obriši"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Csoportok",
"Users" => "Felhasználók",
"Delete" => "Törlés"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Gruppos",
"Users" => "Usatores",
"Delete" => "Deler"
);

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Compila tutti i campi richiesti", "Fill out all required fields" => "Compila tutti i campi richiesti",
"Please provide a valid Dropbox app key and secret." => "Fornisci chiave di applicazione e segreto di Dropbox validi.", "Please provide a valid Dropbox app key and secret." => "Fornisci chiave di applicazione e segreto di Dropbox validi.",
"Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive", "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio 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." => "<b>Avviso:</b> \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo.",
"<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." => "<b>Avviso:</b> il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo.",
"External Storage" => "Archiviazione esterna", "External Storage" => "Archiviazione esterna",
"Mount point" => "Punto di mount", "Mount point" => "Punto di mount",
"Backend" => "Motore", "Backend" => "Motore",

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "すべての必須フィールドを埋めて下さい", "Fill out all required fields" => "すべての必須フィールドを埋めて下さい",
"Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力して下さい。", "Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力して下さい。",
"Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー", "Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー",
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b> \"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." => "<b>警告:</b> PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。",
"External Storage" => "外部ストレージ", "External Storage" => "外部ストレージ",
"Mount point" => "マウントポイント", "Mount point" => "マウントポイント",
"Backend" => "バックエンド", "Backend" => "バックエンド",

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "ჯგუფები",
"Users" => "მომხმარებელი",
"Delete" => "წაშლა"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Users" => "به‌كارهێنه‌ر"
);

View File

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Groups" => "Gruppen",
"Delete" => "Läschen"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Grupas",
"Users" => "Lietotāji",
"Delete" => "Izdzēst"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Групи",
"Users" => "Корисници",
"Delete" => "Избриши"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Kumpulan",
"Users" => "Pengguna",
"Delete" => "Padam"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Grupper",
"Users" => "Brukarar",
"Delete" => "Slett"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Grops",
"Users" => "Usancièrs",
"Delete" => "Escafa"
);

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Wypełnij wszystkie wymagane pola", "Fill out all required fields" => "Wypełnij wszystkie wymagane pola",
"Please provide a valid Dropbox app key and secret." => "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny.", "Please provide a valid Dropbox app key and secret." => "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny.",
"Error configuring Google Drive storage" => "Wystąpił błąd podczas konfigurowania zasobu Google Drive", "Error configuring Google Drive storage" => "Wystąpił błąd podczas konfigurowania zasobu 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." => "<b>Ostrzeżenie:</b> \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania.",
"<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." => "<b>Ostrzeżenie:</b> Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go.",
"External Storage" => "Zewnętrzna zasoby dyskowe", "External Storage" => "Zewnętrzna zasoby dyskowe",
"Mount point" => "Punkt montowania", "Mount point" => "Punkt montowania",
"Backend" => "Zaplecze", "Backend" => "Zaplecze",

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Заполните все обязательные поля", "Fill out all required fields" => "Заполните все обязательные поля",
"Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.", "Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.",
"Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", "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." => "<b>Внимание:</b> \"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." => "<b>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.",
"External Storage" => "Внешний носитель", "External Storage" => "Внешний носитель",
"Mount point" => "Точка монтирования", "Mount point" => "Точка монтирования",
"Backend" => "Подсистема", "Backend" => "Подсистема",

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Групе",
"Users" => "Корисници",
"Delete" => "Обриши"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Grupe",
"Users" => "Korisnici",
"Delete" => "Obriši"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Groups" => "Gruplar",
"Users" => "Kullanıcılar",
"Delete" => "Sil"
);

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "Заповніть всі обов'язкові поля", "Fill out all required fields" => "Заповніть всі обов'язкові поля",
"Please provide a valid Dropbox app key and secret." => "Будь ласка, надайте дійсний ключ та пароль Dropbox.", "Please provide a valid Dropbox app key and secret." => "Будь ласка, надайте дійсний ключ та пароль Dropbox.",
"Error configuring Google Drive storage" => "Помилка при налаштуванні сховища Google Drive", "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." => "<b>Попередження:</b> Клієнт \"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." => "<b>Попередження:</b> Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.",
"External Storage" => "Зовнішні сховища", "External Storage" => "Зовнішні сховища",
"Mount point" => "Точка монтування", "Mount point" => "Точка монтування",
"Backend" => "Backend", "Backend" => "Backend",

View File

@ -38,66 +38,74 @@ class OC_Mount_Config {
* @return array * @return array
*/ */
public static function getBackends() { public static function getBackends() {
return array(
'\OC\Files\Storage\Local' => array( $backends['\OC\Files\Storage\Local']=array(
'backend' => 'Local', 'backend' => 'Local',
'configuration' => array( 'configuration' => array(
'datadir' => 'Location')), 'datadir' => 'Location'));
'\OC\Files\Storage\AmazonS3' => array(
'backend' => 'Amazon S3', $backends['\OC\Files\Storage\AmazonS3']=array(
'configuration' => array( 'backend' => 'Amazon S3',
'key' => 'Key', 'configuration' => array(
'secret' => '*Secret', 'key' => 'Key',
'bucket' => 'Bucket')), 'secret' => '*Secret',
'\OC\Files\Storage\Dropbox' => array( 'bucket' => 'Bucket'));
'backend' => 'Dropbox',
'configuration' => array( $backends['\OC\Files\Storage\Dropbox']=array(
'configured' => '#configured', 'backend' => 'Dropbox',
'app_key' => 'App key', 'configuration' => array(
'app_secret' => 'App secret', 'configured' => '#configured',
'token' => '#token', 'app_key' => 'App key',
'token_secret' => '#token_secret'), 'app_secret' => 'App secret',
'custom' => 'dropbox'), 'token' => '#token',
'\OC\Files\Storage\FTP' => array( 'token_secret' => '#token_secret'),
'backend' => 'FTP', 'custom' => 'dropbox');
'configuration' => array(
'host' => 'URL', if(OC_Mount_Config::checkphpftp()) $backends['\OC\Files\Storage\FTP']=array(
'user' => 'Username', 'backend' => 'FTP',
'password' => '*Password', 'configuration' => array(
'root' => '&Root', 'host' => 'URL',
'secure' => '!Secure ftps://')), 'user' => 'Username',
'\OC\Files\Storage\Google' => array( 'password' => '*Password',
'backend' => 'Google Drive', 'root' => '&Root',
'configuration' => array( 'secure' => '!Secure ftps://'));
'configured' => '#configured',
'token' => '#token', $backends['\OC\Files\Storage\Google']=array(
'token_secret' => '#token secret'), 'backend' => 'Google Drive',
'custom' => 'google'), 'configuration' => array(
'\OC\Files\Storage\SWIFT' => array( 'configured' => '#configured',
'backend' => 'OpenStack Swift', 'token' => '#token',
'configuration' => array( 'token_secret' => '#token secret'),
'host' => 'URL', 'custom' => 'google');
'user' => 'Username',
'token' => '*Token', $backends['\OC\Files\Storage\SWIFT']=array(
'root' => '&Root', 'backend' => 'OpenStack Swift',
'secure' => '!Secure ftps://')), 'configuration' => array(
'\OC\Files\Storage\SMB' => array( 'host' => 'URL',
'backend' => 'SMB', 'user' => 'Username',
'configuration' => array( 'token' => '*Token',
'host' => 'URL', 'root' => '&Root',
'user' => 'Username', 'secure' => '!Secure ftps://'));
'password' => '*Password',
'share' => 'Share', if(OC_Mount_Config::checksmbclient()) $backends['\OC\Files\Storage\SMB']=array(
'root' => '&Root')), 'backend' => 'SMB / CIFS',
'\OC\Files\Storage\DAV' => array( 'configuration' => array(
'backend' => 'WebDAV', 'host' => 'URL',
'configuration' => array( 'user' => 'Username',
'host' => 'URL', 'password' => '*Password',
'user' => 'Username', 'share' => 'Share',
'password' => '*Password', 'root' => '&Root'));
'root' => '&Root',
'secure' => '!Secure https://')) $backends['\OC\Files\Storage\DAV']=array(
); 'backend' => 'ownCloud / WebDAV',
'configuration' => array(
'host' => 'URL',
'user' => 'Username',
'password' => '*Password',
'root' => '&Root',
'secure' => '!Secure https://'));
return($backends);
} }
/** /**
@ -394,4 +402,38 @@ class OC_Mount_Config {
return true; return true;
} }
/**
* check if smbclient is installed
*/
public static function checksmbclient() {
if(function_exists('shell_exec')) {
$output=shell_exec('which smbclient');
return (empty($output)?false:true);
}else{
return(false);
}
}
/**
* check if php-ftp is installed
*/
public static function checkphpftp() {
if(function_exists('ftp_login')) {
return(true);
}else{
return(false);
}
}
/**
* check dependencies
*/
public static function checkDependencies() {
$l= new OC_L10N('files_external');
$txt='';
if(!OC_Mount_Config::checksmbclient()) $txt.=$l->t('<b>Warning:</b> "smbclient" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.').'<br />';
if(!OC_Mount_Config::checkphpftp()) $txt.=$l->t('<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.').'<br />';
return($txt);
}
} }

View File

@ -29,5 +29,6 @@ $tmpl = new OCP\Template('files_external', 'settings');
$tmpl->assign('isAdminPage', false, false); $tmpl->assign('isAdminPage', false, false);
$tmpl->assign('mounts', OC_Mount_Config::getPersonalMountPoints()); $tmpl->assign('mounts', OC_Mount_Config::getPersonalMountPoints());
$tmpl->assign('certs', OC_Mount_Config::getCertificates()); $tmpl->assign('certs', OC_Mount_Config::getCertificates());
$tmpl->assign('dependencies', OC_Mount_Config::checkDependencies(), false);
$tmpl->assign('backends', $backends); $tmpl->assign('backends', $backends);
return $tmpl->fetchPage(); return $tmpl->fetchPage();

View File

@ -30,5 +30,6 @@ $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints());
$tmpl->assign('backends', OC_Mount_Config::getBackends()); $tmpl->assign('backends', OC_Mount_Config::getBackends());
$tmpl->assign('groups', OC_Group::getGroups()); $tmpl->assign('groups', OC_Group::getGroups());
$tmpl->assign('users', OCP\User::getUsers()); $tmpl->assign('users', OCP\User::getUsers());
$tmpl->assign('dependencies', OC_Mount_Config::checkDependencies(), false);
$tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes')); $tmpl->assign('allowUserMounting', OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes'));
return $tmpl->fetchPage(); return $tmpl->fetchPage();

View File

@ -1,6 +1,7 @@
<form id="files_external"> <form id="files_external">
<fieldset class="personalblock"> <fieldset class="personalblock">
<legend><strong><?php echo $l->t('External Storage'); ?></strong></legend> <legend><strong><?php echo $l->t('External Storage'); ?></strong></legend>
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) echo ''.$_['dependencies'].''; ?>
<table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'> <table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
<thead> <thead>
<tr> <tr>
@ -157,4 +158,4 @@
<input type="submit" name="cert_import" value="<?php echo $l->t('Import Root Certificate'); ?>" /> <input type="submit" name="cert_import" value="<?php echo $l->t('Import Root Certificate'); ?>" />
<?php endif; ?> <?php endif; ?>
</fieldset> </fieldset>
</form> </form>

View File

@ -33,6 +33,4 @@ $(document).ready(function() {
}); });
OC.Share.loadIcons('file'); OC.Share.loadIcons('file');
} }
});
});

View File

@ -175,7 +175,7 @@ if ($linkItem) {
if (isset($_GET['path'])) { if (isset($_GET['path'])) {
$path .= $_GET['path']; $path .= $_GET['path'];
} }
if (!$path || !OC_Filesystem::isValidPath($path) || !OC_Filesystem::file_exists($path)) { if (!$path || !\OC\Files\Filesystem::isValidPath($path) || !OC_Filesystem::file_exists($path)) {
OCP\Util::writeLog('share', 'Invalid path ' . $path . ' for share id ' . $linkItem['id'], \OCP\Util::ERROR); OCP\Util::writeLog('share', 'Invalid path ' . $path . ' for share id ' . $linkItem['id'], \OCP\Util::ERROR);
header('HTTP/1.0 404 Not Found'); header('HTTP/1.0 404 Not Found');
$tmpl = new OCP\Template('', '404', 'guest'); $tmpl = new OCP\Template('', '404', 'guest');

View File

@ -33,7 +33,7 @@ if ( isset( $_GET['path'] ) ) {
$versions = new OCA_Versions\Storage(); $versions = new OCA_Versions\Storage();
// roll back to old version if button clicked // roll back to old version if button clicked
if( isset( $_GET['revert'] ) ) { if( isset( $_GET['revert'] ) ) {
if( $versions->rollback( $path, $_GET['revert'] ) ) { if( $versions->rollback( $path, $_GET['revert'] ) ) {
@ -52,7 +52,7 @@ if ( isset( $_GET['path'] ) ) {
} }
// show the history only if there is something to show // show the history only if there is something to show
if( OCA_Versions\Storage::isversioned( $path ) ) { if( OCA_Versions\Storage::isversioned( $path ) ) {
$count = 999; //show the newest revisions $count = 999; //show the newest revisions
$versions = OCA_Versions\Storage::getVersions( $path, $count); $versions = OCA_Versions\Storage::getVersions( $path, $count);

View File

@ -23,7 +23,9 @@ if( isset( $_['message'] ) ) {
echo ' '; echo ' ';
echo OCP\Util::formatDate( doubleval($v['version']) ); echo OCP\Util::formatDate( doubleval($v['version']) );
echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php', array('path' => $_['path'], 'revert' => $v['version'])) .'" class="button">Revert</a><br /><br />'; echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php', array('path' => $_['path'], 'revert' => $v['version'])) .'" class="button">Revert</a><br /><br />';
if ( $v['cur'] ) { echo ' (<b>Current</b>)'; } if ( $v['cur'] ) {
echo ' (<b>Current</b>)';
}
echo '<br /><br />'; echo '<br /><br />';
} }

View File

@ -42,3 +42,6 @@ $entry = array(
); );
OCP\Backgroundjob::addRegularTask('OCA\user_ldap\lib\Jobs', 'updateGroups'); OCP\Backgroundjob::addRegularTask('OCA\user_ldap\lib\Jobs', 'updateGroups');
if(OCP\App::isEnabled('user_webdavauth')) {
OCP\Util::writeLog('user_ldap', 'user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour', OCP\Util::WARN);
}

View File

@ -2,7 +2,9 @@
<info> <info>
<id>user_ldap</id> <id>user_ldap</id>
<name>LDAP user and group backend</name> <name>LDAP user and group backend</name>
<description>Authenticate Users by LDAP</description> <description>Authenticate users and groups by LDAP resp. Active Directoy.
This app is not compatible to the WebDAV user backend.</description>
<licence>AGPL</licence> <licence>AGPL</licence>
<author>Dominik Schmidt and Arthur Schiwon</author> <author>Dominik Schmidt and Arthur Schiwon</author>
<require>4.9</require> <require>4.9</require>

View File

@ -7,4 +7,9 @@
#ldap fieldset input { #ldap fieldset input {
width: 70%; width: 70%;
display: inline-block; display: inline-block;
}
.ldapwarning {
margin-left: 1.4em;
color: #FF3B3B;
} }

View File

@ -133,7 +133,7 @@ abstract class Access {
'\"' => '\5c22', '\"' => '\5c22',
'\#' => '\5c23', '\#' => '\5c23',
); );
$dn = str_replace(array_keys($replacements),array_values($replacements), $dn); $dn = str_replace(array_keys($replacements), array_values($replacements), $dn);
return $dn; return $dn;
} }
@ -288,8 +288,8 @@ abstract class Access {
} }
$ldapname = $this->sanitizeUsername($ldapname); $ldapname = $this->sanitizeUsername($ldapname);
//a new user/group! Then let's try to add it. We're shooting into the blue with the user/group name, assuming that in most cases there will not be a conflict. Otherwise an error will occur and we will continue with our second shot. //a new user/group! Add it only if it doesn't conflict with other backend's users or existing groups
if(($isUser && !\OCP\User::userExists($ldapname)) || (!$isUser && !\OC_Group::groupExists($ldapname))) { if(($isUser && !\OCP\User::userExists($ldapname, 'OCA\\user_ldap\\USER_LDAP')) || (!$isUser && !\OC_Group::groupExists($ldapname))) {
if($this->mapComponent($dn, $ldapname, $isUser)) { if($this->mapComponent($dn, $ldapname, $isUser)) {
return $ldapname; return $ldapname;
} }
@ -347,20 +347,20 @@ abstract class Access {
} }
private function findMappedGroup($dn) { private function findMappedGroup($dn) {
static $query = null; static $query = null;
if(is_null($query)) { if(is_null($query)) {
$query = \OCP\DB::prepare(' $query = \OCP\DB::prepare('
SELECT `owncloud_name` SELECT `owncloud_name`
FROM `'.$this->getMapTable(false).'` FROM `'.$this->getMapTable(false).'`
WHERE `ldap_dn` = ?' WHERE `ldap_dn` = ?'
); );
}
$res = $query->execute(array($dn))->fetchOne();
if($res) {
return $res;
} }
$res = $query->execute(array($dn))->fetchOne();
if($res) {
return $res;
}
return false; return false;
} }
private function ldap2ownCloudNames($ldapObjects, $isUsers) { private function ldap2ownCloudNames($ldapObjects, $isUsers) {
@ -619,7 +619,7 @@ abstract class Access {
//a) paged search insuccessful, though attempted //a) paged search insuccessful, though attempted
//b) no paged search, but limit set //b) no paged search, but limit set
if((!$this->pagedSearchedSuccessful if((!$this->pagedSearchedSuccessful
&& $pagedSearchOK) && $pagedSearchOK)
|| ( || (
!$pagedSearchOK !$pagedSearchOK
&& !is_null($limit) && !is_null($limit)
@ -881,4 +881,4 @@ abstract class Access {
return $pagedSearchOK; return $pagedSearchOK;
} }
} }

View File

@ -338,11 +338,11 @@ class Connection {
} }
$this->ldapConnectionRes = ldap_connect($this->config['ldapHost'], $this->config['ldapPort']); $this->ldapConnectionRes = ldap_connect($this->config['ldapHost'], $this->config['ldapPort']);
if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) { if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) {
if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) { if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) {
if($this->config['ldapTLS']) { if($this->config['ldapTLS']) {
ldap_start_tls($this->ldapConnectionRes); ldap_start_tls($this->ldapConnectionRes);
}
} }
}
} }
return $this->bind(); return $this->bind();

View File

@ -4,6 +4,13 @@
<li><a href="#ldapSettings-1">LDAP Basic</a></li> <li><a href="#ldapSettings-1">LDAP Basic</a></li>
<li><a href="#ldapSettings-2">Advanced</a></li> <li><a href="#ldapSettings-2">Advanced</a></li>
</ul> </ul>
<?php if(OCP\App::isEnabled('user_webdavauth')) {
echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them.').'</p>';
}
if(!function_exists('ldap_connect')) {
echo '<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it.').'</p>';
}
?>
<fieldset id="ldapSettings-1"> <fieldset id="ldapSettings-1">
<p><label for="ldap_host"><?php echo $l->t('Host');?></label><input type="text" id="ldap_host" name="ldap_host" value="<?php echo $_['ldap_host']; ?>" title="<?php echo $l->t('You can omit the protocol, except you require SSL. Then start with ldaps://');?>"></p> <p><label for="ldap_host"><?php echo $l->t('Host');?></label><input type="text" id="ldap_host" name="ldap_host" value="<?php echo $_['ldap_host']; ?>" title="<?php echo $l->t('You can omit the protocol, except you require SSL. Then start with ldaps://');?>"></p>
<p><label for="ldap_base"><?php echo $l->t('Base DN');?></label><input type="text" id="ldap_base" name="ldap_base" value="<?php echo $_['ldap_base']; ?>" title="<?php echo $l->t('You can specify Base DN for users and groups in the Advanced tab');?>" /></p> <p><label for="ldap_base"><?php echo $l->t('Base DN');?></label><input type="text" id="ldap_base" name="ldap_base" value="<?php echo $_['ldap_base']; ?>" title="<?php echo $l->t('You can specify Base DN for users and groups in the Advanced tab');?>" /></p>

View File

@ -2,7 +2,9 @@
<info> <info>
<id>user_webdavauth</id> <id>user_webdavauth</id>
<name>WebDAV user backend</name> <name>WebDAV user backend</name>
<description>Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones.</description> <description>Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones.
This app is not compatible to the LDAP user and group backend.</description>
<licence>AGPL</licence> <licence>AGPL</licence>
<author>Frank Karlitschek</author> <author>Frank Karlitschek</author>
<require>4.9</require> <require>4.9</require>

View File

@ -23,9 +23,9 @@
if($_POST) { if($_POST) {
if(isset($_POST['webdav_url'])) { if(isset($_POST['webdav_url'])) {
OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url'])); OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url']));
} }
} }
// fill template // fill template

View File

@ -69,6 +69,42 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
($return) ? OC_JSON::success() : OC_JSON::error(); ($return) ? OC_JSON::success() : OC_JSON::error();
} }
break; break;
case 'email':
// read post variables
$user = OCP\USER::getUser();
$type = $_POST['itemType'];
$link = $_POST['link'];
$file = $_POST['file'];
$to_address = $_POST['toaddress'];
// enable l10n support
$l = OC_L10N::get('core');
// setup the email
$subject = (string)$l->t('User %s shared a file with you', $user);
if ($type === 'dir')
$subject = (string)$l->t('User %s shared a folder with you', $user);
$text = (string)$l->t('User %s shared the file "%s" with you. It is available for download here: %s', array($user, $file, $link));
if ($type === 'dir')
$text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s', array($user, $file, $link));
// handle localhost installations
$server_host = OCP\Util::getServerHost();
if ($server_host === 'localhost')
$server_host = "example.com";
$default_from = 'sharing-noreply@' . $server_host;
$from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from );
// send it out now
try {
OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $user);
OCP\JSON::success();
} catch (Exception $exception) {
OCP\JSON::error(array('data' => array('message' => $exception->getMessage())));
}
break;
} }
} else if (isset($_GET['fetch'])) { } else if (isset($_GET['fetch'])) {
switch ($_GET['fetch']) { switch ($_GET['fetch']) {

View File

@ -50,11 +50,17 @@
padding-top:.5em; padding-top:.5em;
} }
#dropdown input[type="text"],#dropdown input[type="password"] { #dropdown input[type="text"],#dropdown input[type="password"] {
width:90%; width:90%;
} }
#linkText,#linkPass,#expiration { #dropdown form {
font-size: 100%;
margin-left: 0;
margin-right: 0;
}
#linkText,#linkPass,#expiration {
display:none; display:none;
} }

View File

@ -48,20 +48,40 @@ input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active, input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active,
.searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active, .searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
textarea:hover, textarea:focus, textarea:active { background-color:#fff; color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } textarea:hover, textarea:focus, textarea:active { background-color:#fff; color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a {
width:auto; padding:.4em;
background:#f8f8f8; font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #ddd; cursor:pointer;
-moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
}
input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover { background:#fff; color:#333; }
input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; }
input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; }
input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; }
#quota { cursor:default; } #quota { cursor:default; }
/* BUTTONS */
input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a {
width:auto; padding:.4em;
background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid rgba(180,180,180,.5); cursor:pointer;
-moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
}
input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover {
background:rgba(255,255,255,.5); color:#333;
}
input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; }
/* Primary action button, use sparingly */
.primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
border:1px solid #1d2d44;
background:#35537a; color:#ddd; text-shadow:#000 0 -1px 0;
-moz-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset;
}
.primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,
.primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {
border:1px solid #1d2d44;
background:#2d3d54; color:#fff; text-shadow:#000 0 -1px 0;
-moz-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset;
}
.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
border:1px solid #1d2d44;
background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0;
-moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset;
}
#body-login input { font-size:1.5em; } #body-login input { font-size:1.5em; }
@ -92,23 +112,67 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
#login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; } #login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; }
#login form { width:22em; margin:2em auto 2em; padding:0; } #login form { width:22em; margin:2em auto 2em; padding:0; }
#login form fieldset { background:0; border:0; margin-bottom:2em; padding:0; } #login form fieldset { margin-bottom:20px; }
#login form fieldset legend { font-weight:bold; } #login form #adminaccount { margin-bottom:5px; }
#login form fieldset legend, #datadirContent label {
width:100%; text-align:center;
font-weight:bold; color:#999; text-shadow:0 1px 0 white;
}
#login form fieldset legend a { color:#999; }
#login #datadirContent label { display:block; margin:0; color:#999; }
#login form #datadirField legend { margin-bottom:15px; }
#login form label { margin:.95em 0 0 .85em; color:#666; }
/* Icons for username and password fields to better recognize them */
#adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; }
#adminlogin+label, #adminpass+label, #user+label, #password+label { left:2.2em; }
#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img {
position:absolute; left:1.25em; top:1.65em;
opacity:.3;
}
#adminpass+label+img, #password+label+img { top:1.1em; }
/* Nicely grouping input field sets */
.grouptop input {
margin-bottom:0;
border-bottom:0; border-bottom-left-radius:0; border-bottom-right-radius:0;
}
.groupmiddle input {
margin-top:0; margin-bottom:0;
border-top:0; border-radius:0;
box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
}
.groupbottom input {
margin-top:0;
border-top:0; border-top-right-radius:0; border-top-left-radius:0;
box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
}
#login form label { color:#666; }
#login .groupmiddle label, #login .groupbottom label { top:.65em; }
/* NEEDED FOR INFIELD LABELS */ /* NEEDED FOR INFIELD LABELS */
p.infield { position:relative; } p.infield { position:relative; }
label.infield { cursor:text !important; } label.infield { cursor:text !important; top:1.05em; left:.85em; }
#login form label.infield { position:absolute; font-size:1.5em; color:#AAA; } #login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; }
#login #dbhostlabel, #login #directorylabel { display:block; margin:.95em 0 .8em -8em; }
#login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; }
#login form #selectDbType { text-align:center; } #login form #selectDbType { text-align:center; }
#login form #selectDbType label { position:static; font-size:1em; margin:0 -.3em 1em; cursor:pointer; padding:.4em; border:1px solid #ddd; font-weight:bold; background:#f8f8f8; color:#555; text-shadow:#eee 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; } #login form #selectDbType label {
#login form #selectDbType label span { cursor:pointer; font-size:0.9em; } position:static; margin:0 -3px 5px; padding:.4em;
#login form #selectDbType label.ui-state-hover span, #login form #selectDbType label.ui-state-active span { color:#000; } font-size:12px; font-weight:bold; background:#f8f8f8; color:#888; cursor:pointer;
#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#333; background-color:#ccc; } border:1px solid #ddd; text-shadow:#eee 0 1px 0;
-moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
}
#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; }
fieldset.warning {
padding:8px;
color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7;
border-radius:5px;
}
fieldset.warning legend { color:#b94a48 !important; }
/* NAVIGATION ------------------------------------------------------------- */ /* NAVIGATION ------------------------------------------------------------- */

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 65 KiB

BIN
core/img/actions/user.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

1698
core/img/actions/user.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -168,6 +168,10 @@ OC.Share={
html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />'; html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />';
html += '</div>'; html += '</div>';
html += '</div>'; html += '</div>';
html += '<form id="emailPrivateLink" >';
html += '<input id="email" style="display:none; width:65%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />';
html += '<input id="emailButton" style="display:none; float:right;" type="submit" value="'+t('core', 'Send')+'" />';
html += '</form>';
} }
html += '<div id="expiration">'; html += '<div id="expiration">';
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>'; html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>';
@ -349,13 +353,17 @@ OC.Share={
$('#linkPassText').attr('placeholder', t('core', 'Password protected')); $('#linkPassText').attr('placeholder', t('core', 'Password protected'));
} }
$('#expiration').show(); $('#expiration').show();
$('#emailPrivateLink #email').show();
$('#emailPrivateLink #emailButton').show();
}, },
hideLink:function() { hideLink:function() {
$('#linkText').hide('blind'); $('#linkText').hide('blind');
$('#showPassword').hide(); $('#showPassword').hide();
$('#linkPass').hide(); $('#linkPass').hide();
}, $('#emailPrivateLink #email').hide();
dirname:function(path) { $('#emailPrivateLink #emailButton').hide();
},
dirname:function(path) {
return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');
}, },
showExpirationDate:function(date) { showExpirationDate:function(date) {
@ -547,4 +555,34 @@ $(document).ready(function() {
}); });
}); });
$('#emailPrivateLink').live('submit', function(event) {
event.preventDefault();
var link = $('#linkText').val();
var itemType = $('#dropdown').data('item-type');
var itemSource = $('#dropdown').data('item-source');
var file = $('tr').filterAttr('data-id', String(itemSource)).data('file');
var email = $('#email').val();
if (email != '') {
$('#email').attr('disabled', "disabled");
$('#email').val(t('core', 'Sending ...'));
$('#emailButton').attr('disabled', "disabled");
$.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file},
function(result) {
$('#email').attr('disabled', "false");
$('#emailButton').attr('disabled', "false");
if (result && result.status == 'success') {
$('#email').css('font-weight', 'bold');
$('#email').animate({ fontWeight: 'normal' }, 2000, function() {
$(this).val('');
}).val(t('core','Email sent'));
} else {
OC.dialogs.alert(result.data.message, t('core', 'Error while sharing'));
}
});
}
});
}); });

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "L'usuari %s ha compartit un fitxer amb vós",
"User %s shared a folder with you" => "L'usuari %s ha compartit una carpeta amb vós",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
"Category type not provided." => "No s'ha especificat el tipus de categoria.", "Category type not provided." => "No s'ha especificat el tipus de categoria.",
"No category to add?" => "No voleu afegir cap categoria?", "No category to add?" => "No voleu afegir cap categoria?",
"This category already exists: " => "Aquesta categoria ja existeix:", "This category already exists: " => "Aquesta categoria ja existeix:",
@ -39,6 +43,8 @@
"Share with link" => "Comparteix amb enllaç", "Share with link" => "Comparteix amb enllaç",
"Password protect" => "Protegir amb contrasenya", "Password protect" => "Protegir amb contrasenya",
"Password" => "Contrasenya", "Password" => "Contrasenya",
"Email link to person" => "Enllaç per correu electrónic amb la persona",
"Send" => "Envia",
"Set expiration date" => "Estableix la data d'expiració", "Set expiration date" => "Estableix la data d'expiració",
"Expiration date" => "Data d'expiració", "Expiration date" => "Data d'expiració",
"Share via email:" => "Comparteix per correu electrònic", "Share via email:" => "Comparteix per correu electrònic",
@ -55,6 +61,8 @@
"Password protected" => "Protegeix amb contrasenya", "Password protected" => "Protegeix amb contrasenya",
"Error unsetting expiration date" => "Error en eliminar la data d'expiració", "Error unsetting expiration date" => "Error en eliminar la data d'expiració",
"Error setting expiration date" => "Error en establir la data d'expiració", "Error setting expiration date" => "Error en establir la data d'expiració",
"Sending ..." => "Enviant...",
"Email sent" => "El correu electrónic s'ha enviat",
"ownCloud password reset" => "estableix de nou la contrasenya Owncloud", "ownCloud password reset" => "estableix de nou la contrasenya Owncloud",
"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}", "Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}",
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "Uživatel %s s vámi sdílí soubor",
"User %s shared a folder with you" => "Uživatel %s s vámi sdílí složku",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s",
"Category type not provided." => "Nezadán typ kategorie.", "Category type not provided." => "Nezadán typ kategorie.",
"No category to add?" => "Žádná kategorie k přidání?", "No category to add?" => "Žádná kategorie k přidání?",
"This category already exists: " => "Tato kategorie již existuje: ", "This category already exists: " => "Tato kategorie již existuje: ",
@ -39,6 +43,8 @@
"Share with link" => "Sdílet s odkazem", "Share with link" => "Sdílet s odkazem",
"Password protect" => "Chránit heslem", "Password protect" => "Chránit heslem",
"Password" => "Heslo", "Password" => "Heslo",
"Email link to person" => "Odeslat osobě odkaz e-mailem",
"Send" => "Odeslat",
"Set expiration date" => "Nastavit datum vypršení platnosti", "Set expiration date" => "Nastavit datum vypršení platnosti",
"Expiration date" => "Datum vypršení platnosti", "Expiration date" => "Datum vypršení platnosti",
"Share via email:" => "Sdílet e-mailem:", "Share via email:" => "Sdílet e-mailem:",
@ -55,6 +61,8 @@
"Password protected" => "Chráněno heslem", "Password protected" => "Chráněno heslem",
"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti", "Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti",
"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti", "Error setting expiration date" => "Chyba při nastavení data vypršení platnosti",
"Sending ..." => "Odesílám...",
"Email sent" => "E-mail odeslán",
"ownCloud password reset" => "Obnovení hesla pro ownCloud", "ownCloud password reset" => "Obnovení hesla pro ownCloud",
"Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}",
"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.",

View File

@ -39,6 +39,8 @@
"Share with link" => "Über einen Link freigeben", "Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz", "Password protect" => "Passwortschutz",
"Password" => "Passwort", "Password" => "Passwort",
"Email link to person" => "Link per E-Mail verschicken",
"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum", "Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum", "Expiration date" => "Ablaufdatum",
"Share via email:" => "Über eine E-Mail freigeben:", "Share via email:" => "Über eine E-Mail freigeben:",
@ -55,6 +57,8 @@
"Password protected" => "Durch ein Passwort geschützt", "Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums", "Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
"Sending ..." => "Sende ...",
"Email sent" => "E-Mail wurde verschickt",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}", "Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.", "You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "Der Nutzer %s teilt eine Datei mit dir",
"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s",
"Category type not provided." => "Kategorie nicht angegeben.", "Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?", "No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: " => "Kategorie existiert bereits:", "This category already exists: " => "Kategorie existiert bereits:",
@ -39,6 +43,8 @@
"Share with link" => "Über einen Link freigeben", "Share with link" => "Über einen Link freigeben",
"Password protect" => "Passwortschutz", "Password protect" => "Passwortschutz",
"Password" => "Passwort", "Password" => "Passwort",
"Email link to person" => "Link per Mail an Person schicken",
"Send" => "Senden",
"Set expiration date" => "Setze ein Ablaufdatum", "Set expiration date" => "Setze ein Ablaufdatum",
"Expiration date" => "Ablaufdatum", "Expiration date" => "Ablaufdatum",
"Share via email:" => "Mittels einer E-Mail freigeben:", "Share via email:" => "Mittels einer E-Mail freigeben:",
@ -55,6 +61,8 @@
"Password protected" => "Durch ein Passwort geschützt", "Password protected" => "Durch ein Passwort geschützt",
"Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums", "Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums",
"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums",
"Sending ..." => "Sende ...",
"Email sent" => "Email gesendet",
"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen",
"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}",
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "El usuario %s ha compartido un archivo contigo",
"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s",
"Category type not provided." => "Tipo de categoria no proporcionado.", "Category type not provided." => "Tipo de categoria no proporcionado.",
"No category to add?" => "¿Ninguna categoría para añadir?", "No category to add?" => "¿Ninguna categoría para añadir?",
"This category already exists: " => "Esta categoría ya existe: ", "This category already exists: " => "Esta categoría ya existe: ",
@ -39,6 +43,8 @@
"Share with link" => "Compartir con enlace", "Share with link" => "Compartir con enlace",
"Password protect" => "Protegido por contraseña", "Password protect" => "Protegido por contraseña",
"Password" => "Contraseña", "Password" => "Contraseña",
"Email link to person" => "Enviar un enlace por correo electrónico a una persona",
"Send" => "Enviar",
"Set expiration date" => "Establecer fecha de caducidad", "Set expiration date" => "Establecer fecha de caducidad",
"Expiration date" => "Fecha de caducidad", "Expiration date" => "Fecha de caducidad",
"Share via email:" => "compartido via e-mail:", "Share via email:" => "compartido via e-mail:",
@ -55,6 +61,8 @@
"Password protected" => "Protegido por contraseña", "Password protected" => "Protegido por contraseña",
"Error unsetting expiration date" => "Error al eliminar la fecha de caducidad", "Error unsetting expiration date" => "Error al eliminar la fecha de caducidad",
"Error setting expiration date" => "Error estableciendo fecha de caducidad", "Error setting expiration date" => "Error estableciendo fecha de caducidad",
"Sending ..." => "Enviando...",
"Email sent" => "Correo electrónico enviado",
"ownCloud password reset" => "Reiniciar contraseña de ownCloud", "ownCloud password reset" => "Reiniciar contraseña de ownCloud",
"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", "Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}",
"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña", "You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "%s erabiltzaileak zurekin fitxategi bat partekatu du ",
"User %s shared a folder with you" => "%s erabiltzaileak zurekin karpeta bat partekatu du ",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" fitxategia zurekin partekatu du. Hemen duzu eskuragarri: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s",
"Category type not provided." => "Kategoria mota ez da zehaztu.", "Category type not provided." => "Kategoria mota ez da zehaztu.",
"No category to add?" => "Ez dago gehitzeko kategoriarik?", "No category to add?" => "Ez dago gehitzeko kategoriarik?",
"This category already exists: " => "Kategoria hau dagoeneko existitzen da:", "This category already exists: " => "Kategoria hau dagoeneko existitzen da:",
@ -39,6 +43,8 @@
"Share with link" => "Elkarbanatu lotura batekin", "Share with link" => "Elkarbanatu lotura batekin",
"Password protect" => "Babestu pasahitzarekin", "Password protect" => "Babestu pasahitzarekin",
"Password" => "Pasahitza", "Password" => "Pasahitza",
"Email link to person" => "Postaz bidali lotura ",
"Send" => "Bidali",
"Set expiration date" => "Ezarri muga data", "Set expiration date" => "Ezarri muga data",
"Expiration date" => "Muga data", "Expiration date" => "Muga data",
"Share via email:" => "Elkarbanatu eposta bidez:", "Share via email:" => "Elkarbanatu eposta bidez:",
@ -55,6 +61,8 @@
"Password protected" => "Pasahitzarekin babestuta", "Password protected" => "Pasahitzarekin babestuta",
"Error unsetting expiration date" => "Errorea izan da muga data kentzean", "Error unsetting expiration date" => "Errorea izan da muga data kentzean",
"Error setting expiration date" => "Errore bat egon da muga data ezartzean", "Error setting expiration date" => "Errore bat egon da muga data ezartzean",
"Sending ..." => "Bidaltzen ...",
"Email sent" => "Eposta bidalia",
"ownCloud password reset" => "ownCloud-en pasahitza berrezarri", "ownCloud password reset" => "ownCloud-en pasahitza berrezarri",
"Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
"You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.", "You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.",

View File

@ -30,6 +30,8 @@
"Share with link" => "Jaa linkillä", "Share with link" => "Jaa linkillä",
"Password protect" => "Suojaa salasanalla", "Password protect" => "Suojaa salasanalla",
"Password" => "Salasana", "Password" => "Salasana",
"Email link to person" => "Lähetä linkki sähköpostitse",
"Send" => "Lähetä",
"Set expiration date" => "Aseta päättymispäivä", "Set expiration date" => "Aseta päättymispäivä",
"Expiration date" => "Päättymispäivä", "Expiration date" => "Päättymispäivä",
"Share via email:" => "Jaa sähköpostilla:", "Share via email:" => "Jaa sähköpostilla:",
@ -45,6 +47,8 @@
"Password protected" => "Salasanasuojattu", "Password protected" => "Salasanasuojattu",
"Error unsetting expiration date" => "Virhe purettaessa eräpäivää", "Error unsetting expiration date" => "Virhe purettaessa eräpäivää",
"Error setting expiration date" => "Virhe päättymispäivää asettaessa", "Error setting expiration date" => "Virhe päättymispäivää asettaessa",
"Sending ..." => "Lähetetään...",
"Email sent" => "Sähköposti lähetetty",
"ownCloud password reset" => "ownCloud-salasanan nollaus", "ownCloud password reset" => "ownCloud-salasanan nollaus",
"Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}",
"You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.", "You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "L'utente %s ha condiviso un file con te",
"User %s shared a folder with you" => "L'utente %s ha condiviso una cartella con te",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s",
"Category type not provided." => "Tipo di categoria non fornito.", "Category type not provided." => "Tipo di categoria non fornito.",
"No category to add?" => "Nessuna categoria da aggiungere?", "No category to add?" => "Nessuna categoria da aggiungere?",
"This category already exists: " => "Questa categoria esiste già: ", "This category already exists: " => "Questa categoria esiste già: ",
@ -39,6 +43,8 @@
"Share with link" => "Condividi con collegamento", "Share with link" => "Condividi con collegamento",
"Password protect" => "Proteggi con password", "Password protect" => "Proteggi con password",
"Password" => "Password", "Password" => "Password",
"Email link to person" => "Invia collegamento via email",
"Send" => "Invia",
"Set expiration date" => "Imposta data di scadenza", "Set expiration date" => "Imposta data di scadenza",
"Expiration date" => "Data di scadenza", "Expiration date" => "Data di scadenza",
"Share via email:" => "Condividi tramite email:", "Share via email:" => "Condividi tramite email:",
@ -55,6 +61,8 @@
"Password protected" => "Protetta da password", "Password protected" => "Protetta da password",
"Error unsetting expiration date" => "Errore durante la rimozione della data di scadenza", "Error unsetting expiration date" => "Errore durante la rimozione della data di scadenza",
"Error setting expiration date" => "Errore durante l'impostazione della data di scadenza", "Error setting expiration date" => "Errore durante l'impostazione della data di scadenza",
"Sending ..." => "Invio in corso...",
"Email sent" => "Messaggio inviato",
"ownCloud password reset" => "Ripristino password di ownCloud", "ownCloud password reset" => "Ripristino password di ownCloud",
"Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}", "Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}",
"You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email", "You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "ユーザ %s はあなたとファイルを共有しています",
"User %s shared a folder with you" => "ユーザ %s はあなたとフォルダを共有しています",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s",
"Category type not provided." => "カテゴリタイプは提供されていません。", "Category type not provided." => "カテゴリタイプは提供されていません。",
"No category to add?" => "追加するカテゴリはありませんか?", "No category to add?" => "追加するカテゴリはありませんか?",
"This category already exists: " => "このカテゴリはすでに存在します: ", "This category already exists: " => "このカテゴリはすでに存在します: ",
@ -39,6 +43,8 @@
"Share with link" => "URLリンクで共有", "Share with link" => "URLリンクで共有",
"Password protect" => "パスワード保護", "Password protect" => "パスワード保護",
"Password" => "パスワード", "Password" => "パスワード",
"Email link to person" => "メールリンク",
"Send" => "送信",
"Set expiration date" => "有効期限を設定", "Set expiration date" => "有効期限を設定",
"Expiration date" => "有効期限", "Expiration date" => "有効期限",
"Share via email:" => "メール経由で共有:", "Share via email:" => "メール経由で共有:",
@ -55,6 +61,8 @@
"Password protected" => "パスワード保護", "Password protected" => "パスワード保護",
"Error unsetting expiration date" => "有効期限の未設定エラー", "Error unsetting expiration date" => "有効期限の未設定エラー",
"Error setting expiration date" => "有効期限の設定でエラー発生", "Error setting expiration date" => "有効期限の設定でエラー発生",
"Sending ..." => "送信中...",
"Email sent" => "メールを送信しました",
"ownCloud password reset" => "ownCloudのパスワードをリセットします", "ownCloud password reset" => "ownCloudのパスワードをリセットします",
"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", "Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}",
"You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。",

View File

@ -39,6 +39,8 @@
"Share with link" => "Współdziel z link", "Share with link" => "Współdziel z link",
"Password protect" => "Zabezpieczone hasłem", "Password protect" => "Zabezpieczone hasłem",
"Password" => "Hasło", "Password" => "Hasło",
"Email link to person" => "Email do osoby",
"Send" => "Wyślij",
"Set expiration date" => "Ustaw datę wygaśnięcia", "Set expiration date" => "Ustaw datę wygaśnięcia",
"Expiration date" => "Data wygaśnięcia", "Expiration date" => "Data wygaśnięcia",
"Share via email:" => "Współdziel poprzez maila", "Share via email:" => "Współdziel poprzez maila",
@ -55,6 +57,8 @@
"Password protected" => "Zabezpieczone hasłem", "Password protected" => "Zabezpieczone hasłem",
"Error unsetting expiration date" => "Błąd niszczenie daty wygaśnięcia", "Error unsetting expiration date" => "Błąd niszczenie daty wygaśnięcia",
"Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia", "Error setting expiration date" => "Błąd podczas ustawiania daty wygaśnięcia",
"Sending ..." => "Wysyłanie...",
"Email sent" => "Wyślij Email",
"ownCloud password reset" => "restart hasła", "ownCloud password reset" => "restart hasła",
"Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}", "Use the following link to reset your password: {link}" => "Proszę użyć tego odnośnika do zresetowania hasła: {link}",
"You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.", "You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "Пользователь %s поделился с вами файлом",
"User %s shared a folder with you" => "Пользователь %s открыл вам доступ к папке",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s",
"Category type not provided." => "Тип категории не предоставлен", "Category type not provided." => "Тип категории не предоставлен",
"No category to add?" => "Нет категорий для добавления?", "No category to add?" => "Нет категорий для добавления?",
"This category already exists: " => "Эта категория уже существует: ", "This category already exists: " => "Эта категория уже существует: ",
@ -39,6 +43,8 @@
"Share with link" => "Поделиться с ссылкой", "Share with link" => "Поделиться с ссылкой",
"Password protect" => "Защитить паролем", "Password protect" => "Защитить паролем",
"Password" => "Пароль", "Password" => "Пароль",
"Email link to person" => "Почтовая ссылка на персону",
"Send" => "Отправить",
"Set expiration date" => "Установить срок доступа", "Set expiration date" => "Установить срок доступа",
"Expiration date" => "Дата окончания", "Expiration date" => "Дата окончания",
"Share via email:" => "Поделится через электронную почту:", "Share via email:" => "Поделится через электронную почту:",
@ -55,6 +61,8 @@
"Password protected" => "Защищено паролем", "Password protected" => "Защищено паролем",
"Error unsetting expiration date" => "Ошибка при отмене срока доступа", "Error unsetting expiration date" => "Ошибка при отмене срока доступа",
"Error setting expiration date" => "Ошибка при установке срока доступа", "Error setting expiration date" => "Ошибка при установке срока доступа",
"Sending ..." => "Отправляется ...",
"Email sent" => "Письмо отправлено",
"ownCloud password reset" => "Сброс пароля ", "ownCloud password reset" => "Сброс пароля ",
"Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}",
"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "Користувач %s поділився файлом з вами",
"User %s shared a folder with you" => "Користувач %s поділився текою з вами",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s",
"Category type not provided." => "Не вказано тип категорії.", "Category type not provided." => "Не вказано тип категорії.",
"No category to add?" => "Відсутні категорії для додавання?", "No category to add?" => "Відсутні категорії для додавання?",
"This category already exists: " => "Ця категорія вже існує: ", "This category already exists: " => "Ця категорія вже існує: ",
@ -39,9 +43,11 @@
"Share with link" => "Опублікувати через посилання", "Share with link" => "Опублікувати через посилання",
"Password protect" => "Захистити паролем", "Password protect" => "Захистити паролем",
"Password" => "Пароль", "Password" => "Пароль",
"Email link to person" => "Ел. пошта належить Пану",
"Send" => "Надіслати",
"Set expiration date" => "Встановити термін дії", "Set expiration date" => "Встановити термін дії",
"Expiration date" => "Термін дії", "Expiration date" => "Термін дії",
"Share via email:" => "Опублікувати через електронну пошту:", "Share via email:" => "Опублікувати через Ел. пошту:",
"No people found" => "Жодної людини не знайдено", "No people found" => "Жодної людини не знайдено",
"Resharing is not allowed" => "Пере-публікація не дозволяється", "Resharing is not allowed" => "Пере-публікація не дозволяється",
"Shared in {item} with {user}" => "Опубліковано {item} для {user}", "Shared in {item} with {user}" => "Опубліковано {item} для {user}",
@ -55,9 +61,11 @@
"Password protected" => "Захищено паролем", "Password protected" => "Захищено паролем",
"Error unsetting expiration date" => "Помилка при відміні терміна дії", "Error unsetting expiration date" => "Помилка при відміні терміна дії",
"Error setting expiration date" => "Помилка при встановленні терміна дії", "Error setting expiration date" => "Помилка при встановленні терміна дії",
"Sending ..." => "Надсилання...",
"Email sent" => "Ел. пошта надіслана",
"ownCloud password reset" => "скидання пароля ownCloud", "ownCloud password reset" => "скидання пароля ownCloud",
"Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}",
"You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на e-mail.", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.",
"Reset email send." => "Лист скидання відправлено.", "Reset email send." => "Лист скидання відправлено.",
"Request failed!" => "Невдалий запит!", "Request failed!" => "Невдалий запит!",
"Username" => "Ім'я користувача", "Username" => "Ім'я користувача",

3
core/l10n/zh_HK.php Normal file
View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"You are logged out." => "你已登出。"
);

View File

@ -35,12 +35,14 @@
<fieldset id="adminaccount"> <fieldset id="adminaccount">
<legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend> <legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend>
<p class="infield grouptop"> <p class="infield grouptop">
<label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required /> <input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required />
<label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" />
</p> </p>
<p class="infield groupbottom"> <p class="infield groupbottom">
<label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required /> <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required />
<label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" />
</p> </p>
</fieldset> </fieldset>

View File

@ -17,12 +17,14 @@
<?php endif; ?> <?php endif; ?>
</ul> </ul>
<p class="infield grouptop"> <p class="infield grouptop">
<label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required /> <input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required />
<label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" />
</p> </p>
<p class="infield groupbottom"> <p class="infield groupbottom">
<label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<input type="password" name="password" id="password" value="" required<?php echo $_['user_autofocus']?'':' autofocus'; ?> /> <input type="password" name="password" id="password" value="" required<?php echo $_['user_autofocus']?'':' autofocus'; ?> />
<label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" />
</p> </p>
<input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label> <input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label>
<input type="submit" id="submit" class="login primary" value="<?php echo $l->t( 'Log in' ); ?>" /> <input type="submit" id="submit" class="login primary" value="<?php echo $l->t( 'Log in' ); ?>" />

View File

@ -1 +1 @@
<?php echo $l->t( 'You are logged out.' ); ?> <?php echo $l->t( 'You are logged out.' );

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n" "PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -18,6 +18,30 @@ msgstr ""
"Language: ar\n" "Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr ""
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "" msgstr ""
@ -56,59 +80,59 @@ msgstr ""
msgid "Error removing %s from favorites." msgid "Error removing %s from favorites."
msgstr "" msgstr ""
#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60 #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings" msgid "Settings"
msgstr "تعديلات" msgstr "تعديلات"
#: js/js.js:688 #: js/js.js:704
msgid "seconds ago" msgid "seconds ago"
msgstr "" msgstr ""
#: js/js.js:689 #: js/js.js:705
msgid "1 minute ago" msgid "1 minute ago"
msgstr "" msgstr ""
#: js/js.js:690 #: js/js.js:706
msgid "{minutes} minutes ago" msgid "{minutes} minutes ago"
msgstr "" msgstr ""
#: js/js.js:691 #: js/js.js:707
msgid "1 hour ago" msgid "1 hour ago"
msgstr "" msgstr ""
#: js/js.js:692 #: js/js.js:708
msgid "{hours} hours ago" msgid "{hours} hours ago"
msgstr "" msgstr ""
#: js/js.js:693 #: js/js.js:709
msgid "today" msgid "today"
msgstr "" msgstr ""
#: js/js.js:694 #: js/js.js:710
msgid "yesterday" msgid "yesterday"
msgstr "" msgstr ""
#: js/js.js:695 #: js/js.js:711
msgid "{days} days ago" msgid "{days} days ago"
msgstr "" msgstr ""
#: js/js.js:696 #: js/js.js:712
msgid "last month" msgid "last month"
msgstr "" msgstr ""
#: js/js.js:697 #: js/js.js:713
msgid "{months} months ago" msgid "{months} months ago"
msgstr "" msgstr ""
#: js/js.js:698 #: js/js.js:714
msgid "months ago" msgid "months ago"
msgstr "" msgstr ""
#: js/js.js:699 #: js/js.js:715
msgid "last year" msgid "last year"
msgstr "" msgstr ""
#: js/js.js:700 #: js/js.js:716
msgid "years ago" msgid "years ago"
msgstr "" msgstr ""
@ -138,8 +162,8 @@ msgid "The object type is not specified."
msgstr "" msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:537 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@ -151,7 +175,7 @@ msgstr ""
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "" msgstr ""
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "" msgstr ""
@ -188,70 +212,86 @@ msgstr ""
msgid "Password" msgid "Password"
msgstr "كلمة السر" msgstr "كلمة السر"
#: js/share.js:172
msgid "Email link to person"
msgstr ""
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr ""
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "" msgstr ""
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "" msgstr ""
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "" msgstr ""
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "" msgstr ""
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "" msgstr ""
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "" msgstr ""
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "إلغاء مشاركة" msgstr "إلغاء مشاركة"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "" msgstr ""
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "" msgstr ""
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "" msgstr ""
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "" msgstr ""
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "" msgstr ""
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "" msgstr ""
#: js/share.js:343 js/share.js:512 js/share.js:514 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "" msgstr ""
#: js/share.js:525 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "" msgstr ""
#: js/share.js:537 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "" msgstr ""
#: js/share.js:568
msgid "Sending ..."
msgstr ""
#: js/share.js:579
msgid "Email sent"
msgstr ""
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "" msgstr ""
@ -403,87 +443,87 @@ msgstr "خادم قاعدة البيانات"
msgid "Finish setup" msgid "Finish setup"
msgstr "انهاء التعديلات" msgstr "انهاء التعديلات"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday" msgid "Sunday"
msgstr "الاحد" msgstr "الاحد"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday" msgid "Monday"
msgstr "الأثنين" msgstr "الأثنين"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday" msgid "Tuesday"
msgstr "الثلاثاء" msgstr "الثلاثاء"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday" msgid "Wednesday"
msgstr "الاربعاء" msgstr "الاربعاء"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday" msgid "Thursday"
msgstr "الخميس" msgstr "الخميس"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday" msgid "Friday"
msgstr "الجمعه" msgstr "الجمعه"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday" msgid "Saturday"
msgstr "السبت" msgstr "السبت"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January" msgid "January"
msgstr "كانون الثاني" msgstr "كانون الثاني"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February" msgid "February"
msgstr "شباط" msgstr "شباط"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March" msgid "March"
msgstr "آذار" msgstr "آذار"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April" msgid "April"
msgstr "نيسان" msgstr "نيسان"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May" msgid "May"
msgstr "أيار" msgstr "أيار"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June" msgid "June"
msgstr "حزيران" msgstr "حزيران"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July" msgid "July"
msgstr "تموز" msgstr "تموز"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August" msgid "August"
msgstr "آب" msgstr "آب"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September" msgid "September"
msgstr "أيلول" msgstr "أيلول"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October" msgid "October"
msgstr "تشرين الاول" msgstr "تشرين الاول"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November" msgid "November"
msgstr "تشرين الثاني" msgstr "تشرين الثاني"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December" msgid "December"
msgstr "كانون الاول" msgstr "كانون الاول"
#: templates/layout.guest.php:41 #: templates/layout.guest.php:42
msgid "web services under your control" msgid "web services under your control"
msgstr "خدمات الوب تحت تصرفك" msgstr "خدمات الوب تحت تصرفك"
#: templates/layout.user.php:44 #: templates/layout.user.php:45
msgid "Log out" msgid "Log out"
msgstr "الخروج" msgstr "الخروج"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-02 23:16+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-02 21:17+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "" msgstr ""
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "" msgstr ""
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "" msgstr ""
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "" msgstr ""
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "" msgstr ""
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "" msgstr ""
#: templates/settings.php:64
msgid "Groups"
msgstr ""
#: templates/settings.php:69
msgid "Users"
msgstr ""
#: templates/settings.php:77 templates/settings.php:107
msgid "Delete"
msgstr ""
#: templates/settings.php:87 #: templates/settings.php:87
msgid "Groups"
msgstr "مجموعات"
#: templates/settings.php:95
msgid "Users"
msgstr "المستخدمين"
#: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete"
msgstr "حذف"
#: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "" msgstr ""
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "" msgstr ""
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "" msgstr ""
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "" msgstr ""

View File

@ -7,164 +7,177 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-08-29 02:01+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-08-29 00:03+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: ar\n" "Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "" msgstr ""
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "" msgstr ""
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "" msgstr ""
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "" msgstr ""
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "" msgstr ""
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "" msgstr ""
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "" msgstr ""
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "" msgstr ""
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "" msgstr ""
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "" msgstr ""
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "" msgstr ""

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n" "PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +21,30 @@ msgstr ""
"Language: bg_BG\n" "Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr ""
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "" msgstr ""
@ -59,59 +83,59 @@ msgstr "Няма избрани категории за изтриване"
msgid "Error removing %s from favorites." msgid "Error removing %s from favorites."
msgstr "" msgstr ""
#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60 #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings" msgid "Settings"
msgstr "Настройки" msgstr "Настройки"
#: js/js.js:688 #: js/js.js:704
msgid "seconds ago" msgid "seconds ago"
msgstr "" msgstr ""
#: js/js.js:689 #: js/js.js:705
msgid "1 minute ago" msgid "1 minute ago"
msgstr "" msgstr ""
#: js/js.js:690 #: js/js.js:706
msgid "{minutes} minutes ago" msgid "{minutes} minutes ago"
msgstr "" msgstr ""
#: js/js.js:691 #: js/js.js:707
msgid "1 hour ago" msgid "1 hour ago"
msgstr "" msgstr ""
#: js/js.js:692 #: js/js.js:708
msgid "{hours} hours ago" msgid "{hours} hours ago"
msgstr "" msgstr ""
#: js/js.js:693 #: js/js.js:709
msgid "today" msgid "today"
msgstr "" msgstr ""
#: js/js.js:694 #: js/js.js:710
msgid "yesterday" msgid "yesterday"
msgstr "" msgstr ""
#: js/js.js:695 #: js/js.js:711
msgid "{days} days ago" msgid "{days} days ago"
msgstr "" msgstr ""
#: js/js.js:696 #: js/js.js:712
msgid "last month" msgid "last month"
msgstr "" msgstr ""
#: js/js.js:697 #: js/js.js:713
msgid "{months} months ago" msgid "{months} months ago"
msgstr "" msgstr ""
#: js/js.js:698 #: js/js.js:714
msgid "months ago" msgid "months ago"
msgstr "" msgstr ""
#: js/js.js:699 #: js/js.js:715
msgid "last year" msgid "last year"
msgstr "" msgstr ""
#: js/js.js:700 #: js/js.js:716
msgid "years ago" msgid "years ago"
msgstr "" msgstr ""
@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr "" msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:537 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Грешка" msgstr "Грешка"
@ -154,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "" msgstr ""
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "" msgstr ""
@ -191,70 +215,86 @@ msgstr ""
msgid "Password" msgid "Password"
msgstr "Парола" msgstr "Парола"
#: js/share.js:172
msgid "Email link to person"
msgstr ""
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr ""
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "" msgstr ""
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "" msgstr ""
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "" msgstr ""
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "" msgstr ""
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "" msgstr ""
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "" msgstr ""
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "" msgstr ""
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "" msgstr ""
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "" msgstr ""
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "" msgstr ""
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "" msgstr ""
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "" msgstr ""
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "" msgstr ""
#: js/share.js:343 js/share.js:512 js/share.js:514 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "" msgstr ""
#: js/share.js:525 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "" msgstr ""
#: js/share.js:537 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "" msgstr ""
#: js/share.js:568
msgid "Sending ..."
msgstr ""
#: js/share.js:579
msgid "Email sent"
msgstr ""
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "" msgstr ""
@ -406,87 +446,87 @@ msgstr "Хост за базата"
msgid "Finish setup" msgid "Finish setup"
msgstr "Завършване на настройките" msgstr "Завършване на настройките"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday" msgid "Sunday"
msgstr "Неделя" msgstr "Неделя"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday" msgid "Monday"
msgstr "Понеделник" msgstr "Понеделник"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday" msgid "Tuesday"
msgstr "Вторник" msgstr "Вторник"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday" msgid "Wednesday"
msgstr "Сряда" msgstr "Сряда"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday" msgid "Thursday"
msgstr "Четвъртък" msgstr "Четвъртък"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday" msgid "Friday"
msgstr "Петък" msgstr "Петък"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday" msgid "Saturday"
msgstr "Събота" msgstr "Събота"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January" msgid "January"
msgstr "Януари" msgstr "Януари"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February" msgid "February"
msgstr "Февруари" msgstr "Февруари"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March" msgid "March"
msgstr "Март" msgstr "Март"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April" msgid "April"
msgstr "Април" msgstr "Април"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May" msgid "May"
msgstr "Май" msgstr "Май"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June" msgid "June"
msgstr "Юни" msgstr "Юни"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July" msgid "July"
msgstr "Юли" msgstr "Юли"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August" msgid "August"
msgstr "Август" msgstr "Август"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September" msgid "September"
msgstr "Септември" msgstr "Септември"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October" msgid "October"
msgstr "Октомври" msgstr "Октомври"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November" msgid "November"
msgstr "Ноември" msgstr "Ноември"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December" msgid "December"
msgstr "Декември" msgstr "Декември"
#: templates/layout.guest.php:41 #: templates/layout.guest.php:42
msgid "web services under your control" msgid "web services under your control"
msgstr "" msgstr ""
#: templates/layout.user.php:44 #: templates/layout.user.php:45
msgid "Log out" msgid "Log out"
msgstr "Изход" msgstr "Изход"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-02 23:16+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-02 21:17+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -41,66 +41,80 @@ msgstr ""
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "" msgstr ""
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "" msgstr ""
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "" msgstr ""
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "" msgstr ""
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "" msgstr ""
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "" msgstr ""
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "" msgstr "Групи"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "" msgstr ""
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Изтриване"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "" msgstr ""
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "" msgstr ""
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "" msgstr ""
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "" msgstr ""

View File

@ -7,164 +7,177 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-08-29 02:01+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-08-29 00:03+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: bg_BG\n" "Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "" msgstr ""
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "" msgstr ""
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "" msgstr ""
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "" msgstr ""
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "" msgstr ""
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "" msgstr ""
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "" msgstr ""
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "" msgstr ""
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "" msgstr ""
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "" msgstr ""
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "" msgstr ""
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "" msgstr ""
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "" msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-17 00:01+0100\n" "POT-Creation-Date: 2012-12-14 00:16+0100\n"
"PO-Revision-Date: 2012-11-16 08:21+0000\n" "PO-Revision-Date: 2012-12-13 09:48+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,6 +19,30 @@ msgstr ""
"Language: ca\n" "Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr "L'usuari %s ha compartit un fitxer amb vós"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr "L'usuari %s ha compartit una carpeta amb vós"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "No s'ha especificat el tipus de categoria." msgstr "No s'ha especificat el tipus de categoria."
@ -139,8 +163,8 @@ msgid "The object type is not specified."
msgstr "No s'ha especificat el tipus d'objecte." msgstr "No s'ha especificat el tipus d'objecte."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:537 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Error" msgstr "Error"
@ -152,7 +176,7 @@ msgstr "No s'ha especificat el nom de l'aplicació."
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "El figtxer requerit {file} no està instal·lat!" msgstr "El figtxer requerit {file} no està instal·lat!"
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Error en compartir" msgstr "Error en compartir"
@ -189,70 +213,86 @@ msgstr "Protegir amb contrasenya"
msgid "Password" msgid "Password"
msgstr "Contrasenya" msgstr "Contrasenya"
#: js/share.js:172
msgid "Email link to person"
msgstr "Enllaç per correu electrónic amb la persona"
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr "Envia"
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Estableix la data d'expiració" msgstr "Estableix la data d'expiració"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Data d'expiració" msgstr "Data d'expiració"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Comparteix per correu electrònic" msgstr "Comparteix per correu electrònic"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "No s'ha trobat ningú" msgstr "No s'ha trobat ningú"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "No es permet compartir de nou" msgstr "No es permet compartir de nou"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Compartit en {item} amb {user}" msgstr "Compartit en {item} amb {user}"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Deixa de compartir" msgstr "Deixa de compartir"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "pot editar" msgstr "pot editar"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "control d'accés" msgstr "control d'accés"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "crea" msgstr "crea"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "actualitza" msgstr "actualitza"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "elimina" msgstr "elimina"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "comparteix" msgstr "comparteix"
#: js/share.js:343 js/share.js:512 js/share.js:514 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Protegeix amb contrasenya" msgstr "Protegeix amb contrasenya"
#: js/share.js:525 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Error en eliminar la data d'expiració" msgstr "Error en eliminar la data d'expiració"
#: js/share.js:537 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Error en establir la data d'expiració" msgstr "Error en establir la data d'expiració"
#: js/share.js:568
msgid "Sending ..."
msgstr "Enviant..."
#: js/share.js:579
msgid "Email sent"
msgstr "El correu electrónic s'ha enviat"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "estableix de nou la contrasenya Owncloud" msgstr "estableix de nou la contrasenya Owncloud"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-04 02:04+0200\n" "POT-Creation-Date: 2012-12-14 00:16+0100\n"
"PO-Revision-Date: 2012-10-03 06:09+0000\n" "PO-Revision-Date: 2012-12-13 09:50+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -42,66 +42,80 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox"
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Error en configurar l'emmagatzemament Google Drive" msgstr "Error en configurar l'emmagatzemament Google Drive"
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr "<b>Avís:</b> \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li."
#: lib/config.php:435
msgid ""
"<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."
msgstr "<b>Avís:</b> El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li."
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Emmagatzemament extern" msgstr "Emmagatzemament extern"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Punt de muntatge" msgstr "Punt de muntatge"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Dorsal" msgstr "Dorsal"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Configuració" msgstr "Configuració"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Options" msgstr "Options"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Aplicable" msgstr "Aplicable"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Afegeix punt de muntatge" msgstr "Afegeix punt de muntatge"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Cap d'establert" msgstr "Cap d'establert"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Tots els usuaris" msgstr "Tots els usuaris"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Grups" msgstr "Grups"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Usuaris" msgstr "Usuaris"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Habilita l'emmagatzemament extern d'usuari" msgstr "Habilita l'emmagatzemament extern d'usuari"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi" msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "Certificats SSL root" msgstr "Certificats SSL root"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Importa certificat root" msgstr "Importa certificat root"

View File

@ -8,164 +8,177 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-08-30 02:02+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-08-29 13:55+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: ca\n" "Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "Màquina" msgstr "Màquina"
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://" msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "DN Base" msgstr "DN Base"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "DN Usuari" msgstr "DN Usuari"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc." msgstr "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc."
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "Contrasenya" msgstr "Contrasenya"
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc." msgstr "Per un accés anònim, deixeu la DN i la contrasenya en blanc."
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "Filtre d'inici de sessió d'usuari" msgstr "Filtre d'inici de sessió d'usuari"
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "Defineix el filtre a aplicar quan s'intenta l'inici de sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió." msgstr "Defineix el filtre a aplicar quan s'intenta l'inici de sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió."
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "useu el paràmetre de substitució %%uid, per exemple \"uid=%%uid\"" msgstr "useu el paràmetre de substitució %%uid, per exemple \"uid=%%uid\""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "Llista de filtres d'usuari" msgstr "Llista de filtres d'usuari"
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "Defineix el filtre a aplicar quan es mostren usuaris" msgstr "Defineix el filtre a aplicar quan es mostren usuaris"
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=persona\"" msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=persona\""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "Filtre de grup" msgstr "Filtre de grup"
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "Defineix el filtre a aplicar quan es mostren grups." msgstr "Defineix el filtre a aplicar quan es mostren grups."
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\"." msgstr "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\"."
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "Arbre base d'usuaris" msgstr "Arbre base d'usuaris"
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "Arbre base de grups" msgstr "Arbre base de grups"
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "Associació membres-grup" msgstr "Associació membres-grup"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "Usa TLS" msgstr "Usa TLS"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "No ho useu en connexions SSL, fallarà." msgstr "No ho useu en connexions SSL, fallarà."
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)" msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)"
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "Desactiva la validació de certificat SSL." msgstr "Desactiva la validació de certificat SSL."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud." msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "No recomanat, ús només per proves." msgstr "No recomanat, ús només per proves."
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "Camp per mostrar el nom d'usuari" msgstr "Camp per mostrar el nom d'usuari"
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Atribut LDAP a usar per generar el nom d'usuari ownCloud." msgstr "Atribut LDAP a usar per generar el nom d'usuari ownCloud."
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "Camp per mostrar el nom del grup" msgstr "Camp per mostrar el nom del grup"
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Atribut LDAP a usar per generar el nom de grup ownCloud." msgstr "Atribut LDAP a usar per generar el nom de grup ownCloud."
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "en bytes" msgstr "en bytes"
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "en segons. Un canvi buidarà la memòria de cau." msgstr "en segons. Un canvi buidarà la memòria de cau."
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD." msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD."
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "Ajuda" msgstr "Ajuda"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n" "POT-Creation-Date: 2012-12-14 00:16+0100\n"
"PO-Revision-Date: 2012-11-15 10:10+0000\n" "PO-Revision-Date: 2012-12-13 09:04+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +21,30 @@ msgstr ""
"Language: cs_CZ\n" "Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr "Uživatel %s s vámi sdílí soubor"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr "Uživatel %s s vámi sdílí složku"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "Nezadán typ kategorie." msgstr "Nezadán typ kategorie."
@ -59,59 +83,59 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání."
msgid "Error removing %s from favorites." msgid "Error removing %s from favorites."
msgstr "Chyba při odebírání %s z oblíbených." msgstr "Chyba při odebírání %s z oblíbených."
#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60 #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings" msgid "Settings"
msgstr "Nastavení" msgstr "Nastavení"
#: js/js.js:688 #: js/js.js:704
msgid "seconds ago" msgid "seconds ago"
msgstr "před pár vteřinami" msgstr "před pár vteřinami"
#: js/js.js:689 #: js/js.js:705
msgid "1 minute ago" msgid "1 minute ago"
msgstr "před minutou" msgstr "před minutou"
#: js/js.js:690 #: js/js.js:706
msgid "{minutes} minutes ago" msgid "{minutes} minutes ago"
msgstr "před {minutes} minutami" msgstr "před {minutes} minutami"
#: js/js.js:691 #: js/js.js:707
msgid "1 hour ago" msgid "1 hour ago"
msgstr "před hodinou" msgstr "před hodinou"
#: js/js.js:692 #: js/js.js:708
msgid "{hours} hours ago" msgid "{hours} hours ago"
msgstr "před {hours} hodinami" msgstr "před {hours} hodinami"
#: js/js.js:693 #: js/js.js:709
msgid "today" msgid "today"
msgstr "dnes" msgstr "dnes"
#: js/js.js:694 #: js/js.js:710
msgid "yesterday" msgid "yesterday"
msgstr "včera" msgstr "včera"
#: js/js.js:695 #: js/js.js:711
msgid "{days} days ago" msgid "{days} days ago"
msgstr "před {days} dny" msgstr "před {days} dny"
#: js/js.js:696 #: js/js.js:712
msgid "last month" msgid "last month"
msgstr "minulý mesíc" msgstr "minulý mesíc"
#: js/js.js:697 #: js/js.js:713
msgid "{months} months ago" msgid "{months} months ago"
msgstr "před {months} měsíci" msgstr "před {months} měsíci"
#: js/js.js:698 #: js/js.js:714
msgid "months ago" msgid "months ago"
msgstr "před měsíci" msgstr "před měsíci"
#: js/js.js:699 #: js/js.js:715
msgid "last year" msgid "last year"
msgstr "minulý rok" msgstr "minulý rok"
#: js/js.js:700 #: js/js.js:716
msgid "years ago" msgid "years ago"
msgstr "před lety" msgstr "před lety"
@ -141,8 +165,8 @@ msgid "The object type is not specified."
msgstr "Není určen typ objektu." msgstr "Není určen typ objektu."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:537 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Chyba" msgstr "Chyba"
@ -154,7 +178,7 @@ msgstr "Není určen název aplikace."
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "Požadovaný soubor {file} není nainstalován." msgstr "Požadovaný soubor {file} není nainstalován."
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Chyba při sdílení" msgstr "Chyba při sdílení"
@ -191,70 +215,86 @@ msgstr "Chránit heslem"
msgid "Password" msgid "Password"
msgstr "Heslo" msgstr "Heslo"
#: js/share.js:172
msgid "Email link to person"
msgstr "Odeslat osobě odkaz e-mailem"
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr "Odeslat"
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Nastavit datum vypršení platnosti" msgstr "Nastavit datum vypršení platnosti"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Datum vypršení platnosti" msgstr "Datum vypršení platnosti"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Sdílet e-mailem:" msgstr "Sdílet e-mailem:"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "Žádní lidé nenalezeni" msgstr "Žádní lidé nenalezeni"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "Sdílení již sdílené položky není povoleno" msgstr "Sdílení již sdílené položky není povoleno"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Sdíleno v {item} s {user}" msgstr "Sdíleno v {item} s {user}"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Zrušit sdílení" msgstr "Zrušit sdílení"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "lze upravovat" msgstr "lze upravovat"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "řízení přístupu" msgstr "řízení přístupu"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "vytvořit" msgstr "vytvořit"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "aktualizovat" msgstr "aktualizovat"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "smazat" msgstr "smazat"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "sdílet" msgstr "sdílet"
#: js/share.js:343 js/share.js:512 js/share.js:514 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Chráněno heslem" msgstr "Chráněno heslem"
#: js/share.js:525 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Chyba při odstraňování data vypršení platnosti" msgstr "Chyba při odstraňování data vypršení platnosti"
#: js/share.js:537 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Chyba při nastavení data vypršení platnosti" msgstr "Chyba při nastavení data vypršení platnosti"
#: js/share.js:568
msgid "Sending ..."
msgstr "Odesílám..."
#: js/share.js:579
msgid "Email sent"
msgstr "E-mail odeslán"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "Obnovení hesla pro ownCloud" msgstr "Obnovení hesla pro ownCloud"
@ -406,87 +446,87 @@ msgstr "Hostitel databáze"
msgid "Finish setup" msgid "Finish setup"
msgstr "Dokončit nastavení" msgstr "Dokončit nastavení"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday" msgid "Sunday"
msgstr "Neděle" msgstr "Neděle"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday" msgid "Monday"
msgstr "Pondělí" msgstr "Pondělí"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday" msgid "Tuesday"
msgstr "Úterý" msgstr "Úterý"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday" msgid "Wednesday"
msgstr "Středa" msgstr "Středa"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday" msgid "Thursday"
msgstr "Čtvrtek" msgstr "Čtvrtek"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday" msgid "Friday"
msgstr "Pátek" msgstr "Pátek"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday" msgid "Saturday"
msgstr "Sobota" msgstr "Sobota"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January" msgid "January"
msgstr "Leden" msgstr "Leden"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February" msgid "February"
msgstr "Únor" msgstr "Únor"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March" msgid "March"
msgstr "Březen" msgstr "Březen"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April" msgid "April"
msgstr "Duben" msgstr "Duben"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May" msgid "May"
msgstr "Květen" msgstr "Květen"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June" msgid "June"
msgstr "Červen" msgstr "Červen"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July" msgid "July"
msgstr "Červenec" msgstr "Červenec"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August" msgid "August"
msgstr "Srpen" msgstr "Srpen"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September" msgid "September"
msgstr "Září" msgstr "Září"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October" msgid "October"
msgstr "Říjen" msgstr "Říjen"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November" msgid "November"
msgstr "Listopad" msgstr "Listopad"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December" msgid "December"
msgstr "Prosinec" msgstr "Prosinec"
#: templates/layout.guest.php:41 #: templates/layout.guest.php:42
msgid "web services under your control" msgid "web services under your control"
msgstr "webové služby pod Vaší kontrolou" msgstr "webové služby pod Vaší kontrolou"
#: templates/layout.user.php:44 #: templates/layout.user.php:45
msgid "Log out" msgid "Log out"
msgstr "Odhlásit se" msgstr "Odhlásit se"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-03 00:00+0100\n" "POT-Creation-Date: 2012-12-14 00:16+0100\n"
"PO-Revision-Date: 2012-11-02 10:04+0000\n" "PO-Revision-Date: 2012-12-13 08:56+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -45,66 +45,80 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Chyba při nastavení úložiště Google Drive" msgstr "Chyba při nastavení úložiště Google Drive"
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr "<b>Varování:</b> není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje."
#: lib/config.php:435
msgid ""
"<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."
msgstr "<b>Varování:</b> není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje."
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Externí úložiště" msgstr "Externí úložiště"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Přípojný bod" msgstr "Přípojný bod"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Podpůrná vrstva" msgstr "Podpůrná vrstva"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Nastavení" msgstr "Nastavení"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Možnosti" msgstr "Možnosti"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Přístupný pro" msgstr "Přístupný pro"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Přidat bod připojení" msgstr "Přidat bod připojení"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Nenastaveno" msgstr "Nenastaveno"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Všichni uživatelé" msgstr "Všichni uživatelé"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Skupiny" msgstr "Skupiny"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Uživatelé" msgstr "Uživatelé"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Smazat" msgstr "Smazat"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Zapnout externí uživatelské úložiště" msgstr "Zapnout externí uživatelské úložiště"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "Kořenové certifikáty SSL" msgstr "Kořenové certifikáty SSL"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Importovat kořenového certifikátu" msgstr "Importovat kořenového certifikátu"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-09-06 02:02+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-09-05 13:37+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -20,153 +20,166 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "Počítač" msgstr "Počítač"
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://" msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "Základní DN" msgstr "Základní DN"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny" msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "Uživatelské DN" msgstr "Uživatelské DN"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné." msgstr "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné."
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "Heslo" msgstr "Heslo"
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné." msgstr "Pro anonymní přístup, ponechte údaje DN and heslo prázdné."
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "Filtr přihlášení uživatelů" msgstr "Filtr přihlášení uživatelů"
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení." msgstr "Určuje použitý filtr, při pokusu o přihlášení. %%uid nahrazuje uživatelské jméno v činnosti přihlášení."
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\"" msgstr "použijte zástupný vzor %%uid, např. \"uid=%%uid\""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "Filtr uživatelských seznamů" msgstr "Filtr uživatelských seznamů"
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "Určuje použitý filtr, pro získávaní uživatelů." msgstr "Určuje použitý filtr, pro získávaní uživatelů."
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "bez zástupných znaků, např. \"objectClass=person\"." msgstr "bez zástupných znaků, např. \"objectClass=person\"."
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "Filtr skupin" msgstr "Filtr skupin"
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "Určuje použitý filtr, pro získávaní skupin." msgstr "Určuje použitý filtr, pro získávaní skupin."
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"." msgstr "bez zástupných znaků, např. \"objectClass=posixGroup\"."
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "Základní uživatelský strom" msgstr "Základní uživatelský strom"
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "Základní skupinový strom" msgstr "Základní skupinový strom"
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "Asociace člena skupiny" msgstr "Asociace člena skupiny"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "Použít TLS" msgstr "Použít TLS"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže." msgstr "Nepoužívejte pro připojení pomocí SSL, připojení selže."
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP server nerozlišující velikost znaků (Windows)" msgstr "LDAP server nerozlišující velikost znaků (Windows)"
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "Vypnout ověřování SSL certifikátu." msgstr "Vypnout ověřování SSL certifikátu."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud"
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "Není doporučeno, pouze pro testovací účely." msgstr "Není doporučeno, pouze pro testovací účely."
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "Pole pro zobrazované jméno uživatele" msgstr "Pole pro zobrazované jméno uživatele"
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Atribut LDAP použitý k vytvoření jména uživatele ownCloud" msgstr "Atribut LDAP použitý k vytvoření jména uživatele ownCloud"
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "Pole pro zobrazení jména skupiny" msgstr "Pole pro zobrazení jména skupiny"
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud"
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "v bajtech" msgstr "v bajtech"
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť." msgstr "ve vteřinách. Změna vyprázdní vyrovnávací paměť."
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr."
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "Nápověda" msgstr "Nápověda"

View File

@ -14,8 +14,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n" "PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -24,6 +24,30 @@ msgstr ""
"Language: da\n" "Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr ""
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "" msgstr ""
@ -62,59 +86,59 @@ msgstr "Ingen kategorier valgt"
msgid "Error removing %s from favorites." msgid "Error removing %s from favorites."
msgstr "" msgstr ""
#: js/js.js:243 templates/layout.user.php:59 templates/layout.user.php:60 #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings" msgid "Settings"
msgstr "Indstillinger" msgstr "Indstillinger"
#: js/js.js:688 #: js/js.js:704
msgid "seconds ago" msgid "seconds ago"
msgstr "sekunder siden" msgstr "sekunder siden"
#: js/js.js:689 #: js/js.js:705
msgid "1 minute ago" msgid "1 minute ago"
msgstr "1 minut siden" msgstr "1 minut siden"
#: js/js.js:690 #: js/js.js:706
msgid "{minutes} minutes ago" msgid "{minutes} minutes ago"
msgstr "{minutes} minutter siden" msgstr "{minutes} minutter siden"
#: js/js.js:691 #: js/js.js:707
msgid "1 hour ago" msgid "1 hour ago"
msgstr "" msgstr ""
#: js/js.js:692 #: js/js.js:708
msgid "{hours} hours ago" msgid "{hours} hours ago"
msgstr "" msgstr ""
#: js/js.js:693 #: js/js.js:709
msgid "today" msgid "today"
msgstr "i dag" msgstr "i dag"
#: js/js.js:694 #: js/js.js:710
msgid "yesterday" msgid "yesterday"
msgstr "i går" msgstr "i går"
#: js/js.js:695 #: js/js.js:711
msgid "{days} days ago" msgid "{days} days ago"
msgstr "{days} dage siden" msgstr "{days} dage siden"
#: js/js.js:696 #: js/js.js:712
msgid "last month" msgid "last month"
msgstr "sidste måned" msgstr "sidste måned"
#: js/js.js:697 #: js/js.js:713
msgid "{months} months ago" msgid "{months} months ago"
msgstr "" msgstr ""
#: js/js.js:698 #: js/js.js:714
msgid "months ago" msgid "months ago"
msgstr "måneder siden" msgstr "måneder siden"
#: js/js.js:699 #: js/js.js:715
msgid "last year" msgid "last year"
msgstr "sidste år" msgstr "sidste år"
#: js/js.js:700 #: js/js.js:716
msgid "years ago" msgid "years ago"
msgstr "år siden" msgstr "år siden"
@ -144,8 +168,8 @@ msgid "The object type is not specified."
msgstr "" msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:525 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:537 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Fejl" msgstr "Fejl"
@ -157,7 +181,7 @@ msgstr ""
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "" msgstr ""
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Fejl under deling" msgstr "Fejl under deling"
@ -194,70 +218,86 @@ msgstr "Beskyt med adgangskode"
msgid "Password" msgid "Password"
msgstr "Kodeord" msgstr "Kodeord"
#: js/share.js:172
msgid "Email link to person"
msgstr ""
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr ""
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Vælg udløbsdato" msgstr "Vælg udløbsdato"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Udløbsdato" msgstr "Udløbsdato"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Del via email:" msgstr "Del via email:"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "Ingen personer fundet" msgstr "Ingen personer fundet"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "Videredeling ikke tilladt" msgstr "Videredeling ikke tilladt"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Delt i {item} med {user}" msgstr "Delt i {item} med {user}"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Fjern deling" msgstr "Fjern deling"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "kan redigere" msgstr "kan redigere"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "Adgangskontrol" msgstr "Adgangskontrol"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "opret" msgstr "opret"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "opdater" msgstr "opdater"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "slet" msgstr "slet"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "del" msgstr "del"
#: js/share.js:343 js/share.js:512 js/share.js:514 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Beskyttet med adgangskode" msgstr "Beskyttet med adgangskode"
#: js/share.js:525 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Fejl ved fjernelse af udløbsdato" msgstr "Fejl ved fjernelse af udløbsdato"
#: js/share.js:537 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Fejl under sætning af udløbsdato" msgstr "Fejl under sætning af udløbsdato"
#: js/share.js:568
msgid "Sending ..."
msgstr ""
#: js/share.js:579
msgid "Email sent"
msgstr ""
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "Nulstil ownCloud kodeord" msgstr "Nulstil ownCloud kodeord"
@ -409,87 +449,87 @@ msgstr "Databasehost"
msgid "Finish setup" msgid "Finish setup"
msgstr "Afslut opsætning" msgstr "Afslut opsætning"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday" msgid "Sunday"
msgstr "Søndag" msgstr "Søndag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday" msgid "Monday"
msgstr "Mandag" msgstr "Mandag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday" msgid "Tuesday"
msgstr "Tirsdag" msgstr "Tirsdag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday" msgid "Wednesday"
msgstr "Onsdag" msgstr "Onsdag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday" msgid "Thursday"
msgstr "Torsdag" msgstr "Torsdag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday" msgid "Friday"
msgstr "Fredag" msgstr "Fredag"
#: templates/layout.guest.php:15 templates/layout.user.php:16 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday" msgid "Saturday"
msgstr "Lørdag" msgstr "Lørdag"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January" msgid "January"
msgstr "Januar" msgstr "Januar"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February" msgid "February"
msgstr "Februar" msgstr "Februar"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March" msgid "March"
msgstr "Marts" msgstr "Marts"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April" msgid "April"
msgstr "April" msgstr "April"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May" msgid "May"
msgstr "Maj" msgstr "Maj"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June" msgid "June"
msgstr "Juni" msgstr "Juni"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July" msgid "July"
msgstr "Juli" msgstr "Juli"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August" msgid "August"
msgstr "August" msgstr "August"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September" msgid "September"
msgstr "September" msgstr "September"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October" msgid "October"
msgstr "Oktober" msgstr "Oktober"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November" msgid "November"
msgstr "November" msgstr "November"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December" msgid "December"
msgstr "December" msgstr "December"
#: templates/layout.guest.php:41 #: templates/layout.guest.php:42
msgid "web services under your control" msgid "web services under your control"
msgstr "Webtjenester under din kontrol" msgstr "Webtjenester under din kontrol"
#: templates/layout.user.php:44 #: templates/layout.user.php:45
msgid "Log out" msgid "Log out"
msgstr "Log ud" msgstr "Log ud"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-13 02:04+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-12 17:53+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: Ole Holm Frandsen <froksen@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -43,66 +43,80 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed"
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Fejl ved konfiguration af Google Drive plads" msgstr "Fejl ved konfiguration af Google Drive plads"
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Ekstern opbevaring" msgstr "Ekstern opbevaring"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Monteringspunkt" msgstr "Monteringspunkt"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Backend" msgstr "Backend"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Opsætning" msgstr "Opsætning"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Valgmuligheder" msgstr "Valgmuligheder"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Kan anvendes" msgstr "Kan anvendes"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Tilføj monteringspunkt" msgstr "Tilføj monteringspunkt"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Ingen sat" msgstr "Ingen sat"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Alle brugere" msgstr "Alle brugere"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Grupper" msgstr "Grupper"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Brugere" msgstr "Brugere"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Slet" msgstr "Slet"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Aktiver ekstern opbevaring for brugere" msgstr "Aktiver ekstern opbevaring for brugere"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Tillad brugere at montere deres egne eksterne opbevaring" msgstr "Tillad brugere at montere deres egne eksterne opbevaring"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "SSL-rodcertifikater" msgstr "SSL-rodcertifikater"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Importer rodcertifikat" msgstr "Importer rodcertifikat"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-24 02:02+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-10-23 09:31+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: Frederik Lassen <frederiklassen@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -21,153 +21,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://" msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "Base DN" msgstr "Base DN"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "" msgstr ""
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "Bruger DN" msgstr "Bruger DN"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "" msgstr ""
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "Kodeord" msgstr "Kodeord"
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "" msgstr ""
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "" msgstr ""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "" msgstr ""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "" msgstr ""
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "" msgstr ""
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "" msgstr ""
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "" msgstr ""
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "Brug TLS" msgstr "Brug TLS"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "" msgstr ""
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "" msgstr ""
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "Anbefales ikke, brug kun for at teste." msgstr "Anbefales ikke, brug kun for at teste."
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "" msgstr ""
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "" msgstr ""
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "" msgstr ""
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "" msgstr ""
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "" msgstr ""
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "Hjælp" msgstr "Hjælp"

View File

@ -7,6 +7,7 @@
# <alex.hotz@gmail.com>, 2011. # <alex.hotz@gmail.com>, 2011.
# <blobbyjj@ymail.com>, 2012. # <blobbyjj@ymail.com>, 2012.
# <georg.stefan.germany@googlemail.com>, 2011. # <georg.stefan.germany@googlemail.com>, 2011.
# I Robot <owncloud-bot@tmit.eu>, 2012.
# I Robot <thomas.mueller@tmit.eu>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012.
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
# <mail@felixmoeller.de>, 2012. # <mail@felixmoeller.de>, 2012.
@ -21,9 +22,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-23 00:01+0100\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-11-22 09:33+0000\n" "PO-Revision-Date: 2012-12-14 16:40+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -31,6 +32,30 @@ msgstr ""
"Language: de\n" "Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr ""
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "Kategorie nicht angegeben." msgstr "Kategorie nicht angegeben."
@ -151,8 +176,8 @@ msgid "The object type is not specified."
msgstr "Der Objekttyp ist nicht angegeben." msgstr "Der Objekttyp ist nicht angegeben."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:539 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Fehler" msgstr "Fehler"
@ -164,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben."
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "Die benötigte Datei {file} ist nicht installiert." msgstr "Die benötigte Datei {file} ist nicht installiert."
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Fehler beim Freigeben" msgstr "Fehler beim Freigeben"
@ -196,75 +221,91 @@ msgstr "Über einen Link freigeben"
msgid "Password protect" msgid "Password protect"
msgstr "Passwortschutz" msgstr "Passwortschutz"
#: js/share.js:168 templates/installation.php:42 templates/login.php:24 #: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13 #: templates/verify.php:13
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
#: js/share.js:172
msgid "Email link to person"
msgstr "Link per E-Mail verschicken"
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr "Senden"
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Setze ein Ablaufdatum" msgstr "Setze ein Ablaufdatum"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Ablaufdatum" msgstr "Ablaufdatum"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Über eine E-Mail freigeben:" msgstr "Über eine E-Mail freigeben:"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "Niemand gefunden" msgstr "Niemand gefunden"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "Weiterverteilen ist nicht erlaubt" msgstr "Weiterverteilen ist nicht erlaubt"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Für {user} in {item} freigegeben" msgstr "Für {user} in {item} freigegeben"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Freigabe aufheben" msgstr "Freigabe aufheben"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "kann bearbeiten" msgstr "kann bearbeiten"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "Zugriffskontrolle" msgstr "Zugriffskontrolle"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "erstellen" msgstr "erstellen"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "aktualisieren" msgstr "aktualisieren"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "löschen" msgstr "löschen"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "freigeben" msgstr "freigeben"
#: js/share.js:343 js/share.js:514 js/share.js:516 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Durch ein Passwort geschützt" msgstr "Durch ein Passwort geschützt"
#: js/share.js:527 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Fehler beim entfernen des Ablaufdatums" msgstr "Fehler beim entfernen des Ablaufdatums"
#: js/share.js:539 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Fehler beim Setzen des Ablaufdatums" msgstr "Fehler beim Setzen des Ablaufdatums"
#: js/share.js:568
msgid "Sending ..."
msgstr "Sende ..."
#: js/share.js:579
msgid "Email sent"
msgstr "E-Mail wurde verschickt"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "ownCloud-Passwort zurücksetzen" msgstr "ownCloud-Passwort zurücksetzen"
@ -285,8 +326,8 @@ msgstr "Die E-Mail zum Zurücksetzen wurde versendet."
msgid "Request failed!" msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!" msgstr "Die Anfrage schlug fehl!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:20 #: templates/login.php:21
msgid "Username" msgid "Username"
msgstr "Benutzername" msgstr "Benutzername"
@ -375,44 +416,44 @@ msgstr "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus
msgid "Create an <strong>admin account</strong>" msgid "Create an <strong>admin account</strong>"
msgstr "<strong>Administrator-Konto</strong> anlegen" msgstr "<strong>Administrator-Konto</strong> anlegen"
#: templates/installation.php:48 #: templates/installation.php:50
msgid "Advanced" msgid "Advanced"
msgstr "Fortgeschritten" msgstr "Fortgeschritten"
#: templates/installation.php:50 #: templates/installation.php:52
msgid "Data folder" msgid "Data folder"
msgstr "Datenverzeichnis" msgstr "Datenverzeichnis"
#: templates/installation.php:57 #: templates/installation.php:59
msgid "Configure the database" msgid "Configure the database"
msgstr "Datenbank einrichten" msgstr "Datenbank einrichten"
#: templates/installation.php:62 templates/installation.php:73 #: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:83 templates/installation.php:93 #: templates/installation.php:85 templates/installation.php:95
msgid "will be used" msgid "will be used"
msgstr "wird verwendet" msgstr "wird verwendet"
#: templates/installation.php:105 #: templates/installation.php:107
msgid "Database user" msgid "Database user"
msgstr "Datenbank-Benutzer" msgstr "Datenbank-Benutzer"
#: templates/installation.php:109 #: templates/installation.php:111
msgid "Database password" msgid "Database password"
msgstr "Datenbank-Passwort" msgstr "Datenbank-Passwort"
#: templates/installation.php:113 #: templates/installation.php:115
msgid "Database name" msgid "Database name"
msgstr "Datenbank-Name" msgstr "Datenbank-Name"
#: templates/installation.php:121 #: templates/installation.php:123
msgid "Database tablespace" msgid "Database tablespace"
msgstr "Datenbank-Tablespace" msgstr "Datenbank-Tablespace"
#: templates/installation.php:127 #: templates/installation.php:129
msgid "Database host" msgid "Database host"
msgstr "Datenbank-Host" msgstr "Datenbank-Host"
#: templates/installation.php:132 #: templates/installation.php:134
msgid "Finish setup" msgid "Finish setup"
msgstr "Installation abschließen" msgstr "Installation abschließen"
@ -518,11 +559,11 @@ msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen."
msgid "Lost your password?" msgid "Lost your password?"
msgstr "Passwort vergessen?" msgstr "Passwort vergessen?"
#: templates/login.php:27 #: templates/login.php:29
msgid "remember" msgid "remember"
msgstr "merken" msgstr "merken"
#: templates/login.php:28 #: templates/login.php:30
msgid "Log in" msgid "Log in"
msgstr "Einloggen" msgstr "Einloggen"

View File

@ -24,9 +24,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2012-12-12 00:12+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2012-12-11 09:27+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -41,7 +41,7 @@ msgstr "Datei fehlerfrei hochgeladen."
#: ajax/upload.php:21 #: ajax/upload.php:21
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23 #: ajax/upload.php:23
msgid "" msgid ""
@ -69,11 +69,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte"
msgid "Files" msgid "Files"
msgstr "Dateien" msgstr "Dateien"
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 #: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare" msgid "Unshare"
msgstr "Nicht mehr freigeben" msgstr "Nicht mehr freigeben"
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 #: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -81,39 +81,39 @@ msgstr "Löschen"
msgid "Rename" msgid "Rename"
msgstr "Umbenennen" msgstr "Umbenennen"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits" msgstr "{new_name} existiert bereits"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "ersetzen" msgstr "ersetzen"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "Name vorschlagen" msgstr "Name vorschlagen"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "abbrechen" msgstr "abbrechen"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "{new_name} wurde ersetzt" msgstr "{new_name} wurde ersetzt"
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 #: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo" msgid "undo"
msgstr "rückgängig machen" msgstr "rückgängig machen"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} ersetzt durch {new_name}" msgstr "{old_name} ersetzt durch {new_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "Freigabe von {files} aufgehoben" msgstr "Freigabe von {files} aufgehoben"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "{files} gelöscht" msgstr "{files} gelöscht"
@ -123,80 +123,80 @@ msgid ""
"allowed." "allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
#: js/files.js:218 #: js/files.js:209
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
#: js/files.js:218 #: js/files.js:209
msgid "Upload Error" msgid "Upload Error"
msgstr "Fehler beim Upload" msgstr "Fehler beim Upload"
#: js/files.js:235 #: js/files.js:226
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: js/files.js:254 js/files.js:368 js/files.js:398 #: js/files.js:245 js/files.js:359 js/files.js:389
msgid "Pending" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
#: js/files.js:274 #: js/files.js:265
msgid "1 file uploading" msgid "1 file uploading"
msgstr "Eine Datei wird hoch geladen" msgstr "Eine Datei wird hoch geladen"
#: js/files.js:277 js/files.js:331 js/files.js:346 #: js/files.js:268 js/files.js:322 js/files.js:337
msgid "{count} files uploading" msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen" msgstr "{count} Dateien werden hochgeladen"
#: js/files.js:349 js/files.js:382 #: js/files.js:340 js/files.js:373
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Upload abgebrochen." msgstr "Upload abgebrochen."
#: js/files.js:451 #: js/files.js:442
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
#: js/files.js:523 #: js/files.js:512
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
#: js/files.js:704 #: js/files.js:693
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt" msgstr "{count} Dateien wurden gescannt"
#: js/files.js:712 #: js/files.js:701
msgid "error while scanning" msgid "error while scanning"
msgstr "Fehler beim Scannen" msgstr "Fehler beim Scannen"
#: js/files.js:785 templates/index.php:65 #: js/files.js:774 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: js/files.js:786 templates/index.php:76 #: js/files.js:775 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
#: js/files.js:787 templates/index.php:78 #: js/files.js:776 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Bearbeitet" msgstr "Bearbeitet"
#: js/files.js:814 #: js/files.js:803
msgid "1 folder" msgid "1 folder"
msgstr "1 Ordner" msgstr "1 Ordner"
#: js/files.js:816 #: js/files.js:805
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} Ordner" msgstr "{count} Ordner"
#: js/files.js:824 #: js/files.js:813
msgid "1 file" msgid "1 file"
msgstr "1 Datei" msgstr "1 Datei"
#: js/files.js:826 #: js/files.js:815
msgid "{count} files" msgid "{count} files"
msgstr "{count} Dateien" msgstr "{count} Dateien"
@ -256,28 +256,28 @@ msgstr "Hochladen"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Upload abbrechen" msgstr "Upload abbrechen"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Alles leer. Lade etwas hoch!" msgstr "Alles leer. Lade etwas hoch!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Herunterladen" msgstr "Herunterladen"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Upload zu groß" msgstr "Upload zu groß"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server."
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "Dateien werden gescannt, bitte warten." msgstr "Dateien werden gescannt, bitte warten."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Scanne" msgstr "Scanne"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-13 02:04+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-12 22:22+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -45,66 +45,80 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein."
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Fehler beim Einrichten von Google Drive" msgstr "Fehler beim Einrichten von Google Drive"
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Externer Speicher" msgstr "Externer Speicher"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Mount-Point" msgstr "Mount-Point"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Backend" msgstr "Backend"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Optionen" msgstr "Optionen"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Zutreffend" msgstr "Zutreffend"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Mount-Point hinzufügen" msgstr "Mount-Point hinzufügen"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Nicht definiert" msgstr "Nicht definiert"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Alle Benutzer" msgstr "Alle Benutzer"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Gruppen" msgstr "Gruppen"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Benutzer" msgstr "Benutzer"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Externen Speicher für Benutzer aktivieren" msgstr "Externen Speicher für Benutzer aktivieren"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate" msgstr "SSL-Root-Zertifikate"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren" msgstr "Root-Zertifikate importieren"

View File

@ -14,8 +14,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-11 00:04+0100\n" "POT-Creation-Date: 2012-12-12 00:13+0100\n"
"PO-Revision-Date: 2012-12-10 13:50+0000\n" "PO-Revision-Date: 2012-12-11 09:31+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -13,9 +13,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-02 23:16+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-10-02 09:13+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,153 +24,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "Basis-DN" msgstr "Basis-DN"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "Benutzer-DN" msgstr "Benutzer-DN"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer."
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer." msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer."
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "Benutzer-Login-Filter" msgstr "Benutzer-Login-Filter"
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch."
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"" msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "Benutzer-Filter-Liste" msgstr "Benutzer-Filter-Liste"
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "Definiert den Filter für die Anfrage der Benutzer." msgstr "Definiert den Filter für die Anfrage der Benutzer."
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" msgstr "ohne Platzhalter, z.B.: \"objectClass=person\""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "Gruppen-Filter" msgstr "Gruppen-Filter"
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "Definiert den Filter für die Anfrage der Gruppen." msgstr "Definiert den Filter für die Anfrage der Gruppen."
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\""
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "Basis-Benutzerbaum" msgstr "Basis-Benutzerbaum"
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum" msgstr "Basis-Gruppenbaum"
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer" msgstr "Assoziation zwischen Gruppe und Benutzer"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "Nutze TLS" msgstr "Nutze TLS"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen." msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen."
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)"
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "Schalte die SSL-Zertifikatsprüfung aus." msgstr "Schalte die SSL-Zertifikatsprüfung aus."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "Nicht empfohlen, nur zu Testzwecken." msgstr "Nicht empfohlen, nur zu Testzwecken."
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "Feld für den Anzeigenamen des Benutzers" msgstr "Feld für den Anzeigenamen des Benutzers"
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. "
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "Feld für den Anzeigenamen der Gruppe" msgstr "Feld für den Anzeigenamen der Gruppe"
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. "
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "in Bytes" msgstr "in Bytes"
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "in Sekunden. Eine Änderung leert den Cache." msgstr "in Sekunden. Eine Änderung leert den Cache."
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein."
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"

View File

@ -7,6 +7,7 @@
# <alex.hotz@gmail.com>, 2011. # <alex.hotz@gmail.com>, 2011.
# <a.tangemann@web.de>, 2012. # <a.tangemann@web.de>, 2012.
# <blobbyjj@ymail.com>, 2012. # <blobbyjj@ymail.com>, 2012.
# <deh3nne@deviantdev.com>, 2012.
# <georg.stefan.germany@googlemail.com>, 2011. # <georg.stefan.germany@googlemail.com>, 2011.
# I Robot <thomas.mueller@tmit.eu>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012.
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011.
@ -21,9 +22,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-23 00:01+0100\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-11-22 09:33+0000\n" "PO-Revision-Date: 2012-12-14 12:15+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: deh3nne <deh3nne@deviantdev.com>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -31,6 +32,30 @@ msgstr ""
"Language: de_DE\n" "Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr "Der Nutzer %s teilt eine Datei mit dir"
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr "Der Nutzer %s teilt einen Ordner mit dir"
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s"
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s"
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "Kategorie nicht angegeben." msgstr "Kategorie nicht angegeben."
@ -151,8 +176,8 @@ msgid "The object type is not specified."
msgstr "Der Objekttyp ist nicht angegeben." msgstr "Der Objekttyp ist nicht angegeben."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:539 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Fehler" msgstr "Fehler"
@ -164,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben."
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "Die benötigte Datei {file} ist nicht installiert." msgstr "Die benötigte Datei {file} ist nicht installiert."
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Fehler bei der Freigabe" msgstr "Fehler bei der Freigabe"
@ -196,75 +221,91 @@ msgstr "Über einen Link freigeben"
msgid "Password protect" msgid "Password protect"
msgstr "Passwortschutz" msgstr "Passwortschutz"
#: js/share.js:168 templates/installation.php:42 templates/login.php:24 #: js/share.js:168 templates/installation.php:44 templates/login.php:26
#: templates/verify.php:13 #: templates/verify.php:13
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
#: js/share.js:172
msgid "Email link to person"
msgstr "Link per Mail an Person schicken"
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr "Senden"
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Setze ein Ablaufdatum" msgstr "Setze ein Ablaufdatum"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Ablaufdatum" msgstr "Ablaufdatum"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Mittels einer E-Mail freigeben:" msgstr "Mittels einer E-Mail freigeben:"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "Niemand gefunden" msgstr "Niemand gefunden"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "Das Weiterverteilen ist nicht erlaubt" msgstr "Das Weiterverteilen ist nicht erlaubt"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Freigegeben in {item} von {user}" msgstr "Freigegeben in {item} von {user}"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Freigabe aufheben" msgstr "Freigabe aufheben"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "kann bearbeiten" msgstr "kann bearbeiten"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "Zugriffskontrolle" msgstr "Zugriffskontrolle"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "erstellen" msgstr "erstellen"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "aktualisieren" msgstr "aktualisieren"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "löschen" msgstr "löschen"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "freigeben" msgstr "freigeben"
#: js/share.js:343 js/share.js:514 js/share.js:516 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Durch ein Passwort geschützt" msgstr "Durch ein Passwort geschützt"
#: js/share.js:527 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Fehler beim Entfernen des Ablaufdatums" msgstr "Fehler beim Entfernen des Ablaufdatums"
#: js/share.js:539 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Fehler beim Setzen des Ablaufdatums" msgstr "Fehler beim Setzen des Ablaufdatums"
#: js/share.js:568
msgid "Sending ..."
msgstr "Sende ..."
#: js/share.js:579
msgid "Email sent"
msgstr "Email gesendet"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "ownCloud-Passwort zurücksetzen" msgstr "ownCloud-Passwort zurücksetzen"
@ -285,8 +326,8 @@ msgstr "E-Mail zum Zurücksetzen des Passworts gesendet."
msgid "Request failed!" msgid "Request failed!"
msgstr "Die Anfrage schlug fehl!" msgstr "Die Anfrage schlug fehl!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:20 #: templates/login.php:21
msgid "Username" msgid "Username"
msgstr "Benutzername" msgstr "Benutzername"
@ -375,44 +416,44 @@ msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Inte
msgid "Create an <strong>admin account</strong>" msgid "Create an <strong>admin account</strong>"
msgstr "<strong>Administrator-Konto</strong> anlegen" msgstr "<strong>Administrator-Konto</strong> anlegen"
#: templates/installation.php:48 #: templates/installation.php:50
msgid "Advanced" msgid "Advanced"
msgstr "Fortgeschritten" msgstr "Fortgeschritten"
#: templates/installation.php:50 #: templates/installation.php:52
msgid "Data folder" msgid "Data folder"
msgstr "Datenverzeichnis" msgstr "Datenverzeichnis"
#: templates/installation.php:57 #: templates/installation.php:59
msgid "Configure the database" msgid "Configure the database"
msgstr "Datenbank einrichten" msgstr "Datenbank einrichten"
#: templates/installation.php:62 templates/installation.php:73 #: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:83 templates/installation.php:93 #: templates/installation.php:85 templates/installation.php:95
msgid "will be used" msgid "will be used"
msgstr "wird verwendet" msgstr "wird verwendet"
#: templates/installation.php:105 #: templates/installation.php:107
msgid "Database user" msgid "Database user"
msgstr "Datenbank-Benutzer" msgstr "Datenbank-Benutzer"
#: templates/installation.php:109 #: templates/installation.php:111
msgid "Database password" msgid "Database password"
msgstr "Datenbank-Passwort" msgstr "Datenbank-Passwort"
#: templates/installation.php:113 #: templates/installation.php:115
msgid "Database name" msgid "Database name"
msgstr "Datenbank-Name" msgstr "Datenbank-Name"
#: templates/installation.php:121 #: templates/installation.php:123
msgid "Database tablespace" msgid "Database tablespace"
msgstr "Datenbank-Tablespace" msgstr "Datenbank-Tablespace"
#: templates/installation.php:127 #: templates/installation.php:129
msgid "Database host" msgid "Database host"
msgstr "Datenbank-Host" msgstr "Datenbank-Host"
#: templates/installation.php:132 #: templates/installation.php:134
msgid "Finish setup" msgid "Finish setup"
msgstr "Installation abschließen" msgstr "Installation abschließen"
@ -518,11 +559,11 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern."
msgid "Lost your password?" msgid "Lost your password?"
msgstr "Passwort vergessen?" msgstr "Passwort vergessen?"
#: templates/login.php:27 #: templates/login.php:29
msgid "remember" msgid "remember"
msgstr "merken" msgstr "merken"
#: templates/login.php:28 #: templates/login.php:30
msgid "Log in" msgid "Log in"
msgstr "Einloggen" msgstr "Einloggen"

View File

@ -25,9 +25,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2012-12-12 00:12+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2012-12-11 09:27+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -42,7 +42,7 @@ msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgelade
#: ajax/upload.php:21 #: ajax/upload.php:21
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23 #: ajax/upload.php:23
msgid "" msgid ""
@ -70,11 +70,11 @@ msgstr "Fehler beim Schreiben auf die Festplatte"
msgid "Files" msgid "Files"
msgstr "Dateien" msgstr "Dateien"
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 #: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare" msgid "Unshare"
msgstr "Nicht mehr freigeben" msgstr "Nicht mehr freigeben"
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 #: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -82,39 +82,39 @@ msgstr "Löschen"
msgid "Rename" msgid "Rename"
msgstr "Umbenennen" msgstr "Umbenennen"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} existiert bereits" msgstr "{new_name} existiert bereits"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "ersetzen" msgstr "ersetzen"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "Name vorschlagen" msgstr "Name vorschlagen"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "abbrechen" msgstr "abbrechen"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "{new_name} wurde ersetzt" msgstr "{new_name} wurde ersetzt"
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 #: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo" msgid "undo"
msgstr "rückgängig machen" msgstr "rückgängig machen"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "{old_name} wurde ersetzt durch {new_name}" msgstr "{old_name} wurde ersetzt durch {new_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "Freigabe für {files} beendet" msgstr "Freigabe für {files} beendet"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "{files} gelöscht" msgstr "{files} gelöscht"
@ -124,80 +124,80 @@ msgid ""
"allowed." "allowed."
msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig."
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
#: js/files.js:218 #: js/files.js:209
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
#: js/files.js:218 #: js/files.js:209
msgid "Upload Error" msgid "Upload Error"
msgstr "Fehler beim Upload" msgstr "Fehler beim Upload"
#: js/files.js:235 #: js/files.js:226
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: js/files.js:254 js/files.js:368 js/files.js:398 #: js/files.js:245 js/files.js:359 js/files.js:389
msgid "Pending" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
#: js/files.js:274 #: js/files.js:265
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen" msgstr "1 Datei wird hochgeladen"
#: js/files.js:277 js/files.js:331 js/files.js:346 #: js/files.js:268 js/files.js:322 js/files.js:337
msgid "{count} files uploading" msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen" msgstr "{count} Dateien wurden hochgeladen"
#: js/files.js:349 js/files.js:382 #: js/files.js:340 js/files.js:373
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Upload abgebrochen." msgstr "Upload abgebrochen."
#: js/files.js:451 #: js/files.js:442
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
#: js/files.js:523 #: js/files.js:512
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
#: js/files.js:704 #: js/files.js:693
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt" msgstr "{count} Dateien wurden gescannt"
#: js/files.js:712 #: js/files.js:701
msgid "error while scanning" msgid "error while scanning"
msgstr "Fehler beim Scannen" msgstr "Fehler beim Scannen"
#: js/files.js:785 templates/index.php:65 #: js/files.js:774 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: js/files.js:786 templates/index.php:76 #: js/files.js:775 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
#: js/files.js:787 templates/index.php:78 #: js/files.js:776 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Bearbeitet" msgstr "Bearbeitet"
#: js/files.js:814 #: js/files.js:803
msgid "1 folder" msgid "1 folder"
msgstr "1 Ordner" msgstr "1 Ordner"
#: js/files.js:816 #: js/files.js:805
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} Ordner" msgstr "{count} Ordner"
#: js/files.js:824 #: js/files.js:813
msgid "1 file" msgid "1 file"
msgstr "1 Datei" msgstr "1 Datei"
#: js/files.js:826 #: js/files.js:815
msgid "{count} files" msgid "{count} files"
msgstr "{count} Dateien" msgstr "{count} Dateien"
@ -257,28 +257,28 @@ msgstr "Hochladen"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Upload abbrechen" msgstr "Upload abbrechen"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Alles leer. Bitte laden Sie etwas hoch!" msgstr "Alles leer. Bitte laden Sie etwas hoch!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Herunterladen" msgstr "Herunterladen"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Der Upload ist zu groß" msgstr "Der Upload ist zu groß"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server."
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "Dateien werden gescannt, bitte warten." msgstr "Dateien werden gescannt, bitte warten."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Scanne" msgstr "Scanne"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-20 02:02+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-19 21:34+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -45,66 +45,80 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein."
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Fehler beim Einrichten von Google Drive" msgstr "Fehler beim Einrichten von Google Drive"
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Externer Speicher" msgstr "Externer Speicher"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Mount-Point" msgstr "Mount-Point"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Backend" msgstr "Backend"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Optionen" msgstr "Optionen"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Zutreffend" msgstr "Zutreffend"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Mount-Point hinzufügen" msgstr "Mount-Point hinzufügen"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Nicht definiert" msgstr "Nicht definiert"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Alle Benutzer" msgstr "Alle Benutzer"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Gruppen" msgstr "Gruppen"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Benutzer" msgstr "Benutzer"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Externen Speicher für Benutzer aktivieren" msgstr "Externen Speicher für Benutzer aktivieren"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "SSL-Root-Zertifikate" msgstr "SSL-Root-Zertifikate"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Root-Zertifikate importieren" msgstr "Root-Zertifikate importieren"

View File

@ -13,9 +13,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-20 02:02+0200\n" "POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-10-19 21:41+0000\n" "PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,153 +24,166 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:8 #: templates/settings.php:8
msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to "
"disable one of them."
msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: templates/settings.php:8 #: templates/settings.php:15
msgid "" msgid ""
"You can omit the protocol, except you require SSL. Then start with ldaps://" "You can omit the protocol, except you require SSL. Then start with ldaps://"
msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "Base DN" msgid "Base DN"
msgstr "Basis-DN" msgstr "Basis-DN"
#: templates/settings.php:9 #: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab" msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "User DN" msgid "User DN"
msgstr "Benutzer-DN" msgstr "Benutzer-DN"
#: templates/settings.php:10 #: templates/settings.php:17
msgid "" msgid ""
"The DN of the client user with which the bind shall be done, e.g. " "The DN of the client user with which the bind shall be done, e.g. "
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password "
"empty." "empty."
msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer." msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer."
#: templates/settings.php:11 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "Passwort" msgstr "Passwort"
#: templates/settings.php:11 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
msgstr "Lassen Sie die Felder von DN und Passwort für anonymen Zugang leer." msgstr "Lassen Sie die Felder von DN und Passwort für anonymen Zugang leer."
#: templates/settings.php:12 #: templates/settings.php:19
msgid "User Login Filter" msgid "User Login Filter"
msgstr "Benutzer-Login-Filter" msgstr "Benutzer-Login-Filter"
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "" msgid ""
"Defines the filter to apply, when login is attempted. %%uid replaces the " "Defines the filter to apply, when login is attempted. %%uid replaces the "
"username in the login action." "username in the login action."
msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch."
#: templates/settings.php:12 #: templates/settings.php:19
#, php-format #, php-format
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgid "use %%uid placeholder, e.g. \"uid=%%uid\""
msgstr "verwenden Sie %%uid Platzhalter, z. B. \"uid=%%uid\"" msgstr "verwenden Sie %%uid Platzhalter, z. B. \"uid=%%uid\""
#: templates/settings.php:13 #: templates/settings.php:20
msgid "User List Filter" msgid "User List Filter"
msgstr "Benutzer-Filter-Liste" msgstr "Benutzer-Filter-Liste"
#: templates/settings.php:13 #: templates/settings.php:20
msgid "Defines the filter to apply, when retrieving users." msgid "Defines the filter to apply, when retrieving users."
msgstr "Definiert den Filter für die Anfrage der Benutzer." msgstr "Definiert den Filter für die Anfrage der Benutzer."
#: templates/settings.php:13 #: templates/settings.php:20
msgid "without any placeholder, e.g. \"objectClass=person\"." msgid "without any placeholder, e.g. \"objectClass=person\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" msgstr "ohne Platzhalter, z.B.: \"objectClass=person\""
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Group Filter" msgid "Group Filter"
msgstr "Gruppen-Filter" msgstr "Gruppen-Filter"
#: templates/settings.php:14 #: templates/settings.php:21
msgid "Defines the filter to apply, when retrieving groups." msgid "Defines the filter to apply, when retrieving groups."
msgstr "Definiert den Filter für die Anfrage der Gruppen." msgstr "Definiert den Filter für die Anfrage der Gruppen."
#: templates/settings.php:14 #: templates/settings.php:21
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgid "without any placeholder, e.g. \"objectClass=posixGroup\"."
msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\""
#: templates/settings.php:17 #: templates/settings.php:24
msgid "Port" msgid "Port"
msgstr "Port" msgstr "Port"
#: templates/settings.php:18 #: templates/settings.php:25
msgid "Base User Tree" msgid "Base User Tree"
msgstr "Basis-Benutzerbaum" msgstr "Basis-Benutzerbaum"
#: templates/settings.php:19 #: templates/settings.php:26
msgid "Base Group Tree" msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum" msgstr "Basis-Gruppenbaum"
#: templates/settings.php:20 #: templates/settings.php:27
msgid "Group-Member association" msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer" msgstr "Assoziation zwischen Gruppe und Benutzer"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Use TLS" msgid "Use TLS"
msgstr "Nutze TLS" msgstr "Nutze TLS"
#: templates/settings.php:21 #: templates/settings.php:28
msgid "Do not use it for SSL connections, it will fail." msgid "Do not use it for SSL connections, it will fail."
msgstr "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen." msgstr "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen."
#: templates/settings.php:22 #: templates/settings.php:29
msgid "Case insensitve LDAP server (Windows)" msgid "Case insensitve LDAP server (Windows)"
msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)"
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Turn off SSL certificate validation." msgid "Turn off SSL certificate validation."
msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "" msgid ""
"If connection only works with this option, import the LDAP server's SSL " "If connection only works with this option, import the LDAP server's SSL "
"certificate in your ownCloud server." "certificate in your ownCloud server."
msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden."
#: templates/settings.php:23 #: templates/settings.php:30
msgid "Not recommended, use for testing only." msgid "Not recommended, use for testing only."
msgstr "Nicht empfohlen, nur zu Testzwecken." msgstr "Nicht empfohlen, nur zu Testzwecken."
#: templates/settings.php:24 #: templates/settings.php:31
msgid "User Display Name Field" msgid "User Display Name Field"
msgstr "Feld für den Anzeigenamen des Benutzers" msgstr "Feld für den Anzeigenamen des Benutzers"
#: templates/settings.php:24 #: templates/settings.php:31
msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgid "The LDAP attribute to use to generate the user`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. "
#: templates/settings.php:25 #: templates/settings.php:32
msgid "Group Display Name Field" msgid "Group Display Name Field"
msgstr "Feld für den Anzeigenamen der Gruppe" msgstr "Feld für den Anzeigenamen der Gruppe"
#: templates/settings.php:25 #: templates/settings.php:32
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgid "The LDAP attribute to use to generate the groups`s ownCloud name."
msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. "
#: templates/settings.php:27 #: templates/settings.php:34
msgid "in bytes" msgid "in bytes"
msgstr "in Bytes" msgstr "in Bytes"
#: templates/settings.php:29 #: templates/settings.php:36
msgid "in seconds. A change empties the cache." msgid "in seconds. A change empties the cache."
msgstr "in Sekunden. Eine Änderung leert den Cache." msgstr "in Sekunden. Eine Änderung leert den Cache."
#: templates/settings.php:30 #: templates/settings.php:37
msgid "" msgid ""
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " "Leave empty for user name (default). Otherwise, specify an LDAP/AD "
"attribute." "attribute."
msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein."
#: templates/settings.php:32 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"

View File

@ -14,9 +14,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-21 00:01+0100\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-11-19 23:56+0000\n" "PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,6 +24,30 @@ msgstr ""
"Language: el\n" "Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/share.php:84
#, php-format
msgid "User %s shared a file with you"
msgstr ""
#: ajax/share.php:86
#, php-format
msgid "User %s shared a folder with you"
msgstr ""
#: ajax/share.php:88
#, php-format
msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: "
"%s"
msgstr ""
#: ajax/share.php:90
#, php-format
msgid ""
"User %s shared the folder \"%s\" with you. It is available for download "
"here: %s"
msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "Δεν δώθηκε τύπος κατηγορίας." msgstr "Δεν δώθηκε τύπος κατηγορίας."
@ -144,8 +168,8 @@ msgid "The object type is not specified."
msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:527 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:539 #: js/share.js:553
msgid "Error" msgid "Error"
msgstr "Σφάλμα" msgstr "Σφάλμα"
@ -157,7 +181,7 @@ msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής.
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!"
#: js/share.js:124 #: js/share.js:124 js/share.js:581
msgid "Error while sharing" msgid "Error while sharing"
msgstr "Σφάλμα κατά τον διαμοιρασμό" msgstr "Σφάλμα κατά τον διαμοιρασμό"
@ -194,70 +218,86 @@ msgstr "Προστασία συνθηματικού"
msgid "Password" msgid "Password"
msgstr "Συνθηματικό" msgstr "Συνθηματικό"
#: js/share.js:172
msgid "Email link to person"
msgstr ""
#: js/share.js:173 #: js/share.js:173
msgid "Send"
msgstr ""
#: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "Ορισμός ημ. λήξης" msgstr "Ορισμός ημ. λήξης"
#: js/share.js:174 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "Ημερομηνία λήξης" msgstr "Ημερομηνία λήξης"
#: js/share.js:206 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "Διαμοιρασμός μέσω email:" msgstr "Διαμοιρασμός μέσω email:"
#: js/share.js:208 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "Δεν βρέθηκε άνθρωπος" msgstr "Δεν βρέθηκε άνθρωπος"
#: js/share.js:235 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "Ξαναμοιρασμός δεν επιτρέπεται" msgstr "Ξαναμοιρασμός δεν επιτρέπεται"
#: js/share.js:271 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
msgstr "Διαμοιρασμός του {item} με τον {user}" msgstr "Διαμοιρασμός του {item} με τον {user}"
#: js/share.js:292 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "Σταμάτημα διαμοιρασμού" msgstr "Σταμάτημα διαμοιρασμού"
#: js/share.js:304 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "δυνατότητα αλλαγής" msgstr "δυνατότητα αλλαγής"
#: js/share.js:306 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "έλεγχος πρόσβασης" msgstr "έλεγχος πρόσβασης"
#: js/share.js:309 #: js/share.js:313
msgid "create" msgid "create"
msgstr "δημιουργία" msgstr "δημιουργία"
#: js/share.js:312 #: js/share.js:316
msgid "update" msgid "update"
msgstr "ενημέρωση" msgstr "ενημέρωση"
#: js/share.js:315 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "διαγραφή" msgstr "διαγραφή"
#: js/share.js:318 #: js/share.js:322
msgid "share" msgid "share"
msgstr "διαμοιρασμός" msgstr "διαμοιρασμός"
#: js/share.js:343 js/share.js:514 js/share.js:516 #: js/share.js:353 js/share.js:528 js/share.js:530
msgid "Password protected" msgid "Password protected"
msgstr "Προστασία με συνθηματικό" msgstr "Προστασία με συνθηματικό"
#: js/share.js:527 #: js/share.js:541
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης"
#: js/share.js:539 #: js/share.js:553
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης"
#: js/share.js:568
msgid "Sending ..."
msgstr ""
#: js/share.js:579
msgid "Email sent"
msgstr ""
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "Επαναφορά συνθηματικού ownCloud" msgstr "Επαναφορά συνθηματικού ownCloud"

View File

@ -12,9 +12,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-10-14 02:05+0200\n" "POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-10-13 20:42+0000\n" "PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -46,66 +46,80 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα
msgid "Error configuring Google Drive storage" msgid "Error configuring Google Drive storage"
msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive "
#: lib/config.php:434
msgid ""
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
"is not possible. Please ask your system administrator to install it."
msgstr ""
#: lib/config.php:435
msgid ""
"<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."
msgstr ""
#: templates/settings.php:3 #: templates/settings.php:3
msgid "External Storage" msgid "External Storage"
msgstr "Εξωτερικό Αποθηκευτικό Μέσο" msgstr "Εξωτερικό Αποθηκευτικό Μέσο"
#: templates/settings.php:7 templates/settings.php:19 #: templates/settings.php:8 templates/settings.php:22
msgid "Mount point" msgid "Mount point"
msgstr "Σημείο προσάρτησης" msgstr "Σημείο προσάρτησης"
#: templates/settings.php:8 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "Σύστημα υποστήριξης" msgstr "Σύστημα υποστήριξης"
#: templates/settings.php:9 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
msgstr "Ρυθμίσεις" msgstr "Ρυθμίσεις"
#: templates/settings.php:10 #: templates/settings.php:11
msgid "Options" msgid "Options"
msgstr "Επιλογές" msgstr "Επιλογές"
#: templates/settings.php:11 #: templates/settings.php:12
msgid "Applicable" msgid "Applicable"
msgstr "Εφαρμόσιμο" msgstr "Εφαρμόσιμο"
#: templates/settings.php:23 #: templates/settings.php:27
msgid "Add mount point" msgid "Add mount point"
msgstr "Προσθήκη σημείου προσάρτησης" msgstr "Προσθήκη σημείου προσάρτησης"
#: templates/settings.php:54 templates/settings.php:62 #: templates/settings.php:85
msgid "None set" msgid "None set"
msgstr "Κανένα επιλεγμένο" msgstr "Κανένα επιλεγμένο"
#: templates/settings.php:63 #: templates/settings.php:86
msgid "All Users" msgid "All Users"
msgstr "Όλοι οι Χρήστες" msgstr "Όλοι οι Χρήστες"
#: templates/settings.php:64 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "Ομάδες" msgstr "Ομάδες"
#: templates/settings.php:69 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "Χρήστες" msgstr "Χρήστες"
#: templates/settings.php:77 templates/settings.php:107 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
#: templates/settings.php:87 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"
msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη"
#: templates/settings.php:88 #: templates/settings.php:125
msgid "Allow users to mount their own external storage" msgid "Allow users to mount their own external storage"
msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο"
#: templates/settings.php:99 #: templates/settings.php:139
msgid "SSL root certificates" msgid "SSL root certificates"
msgstr "Πιστοποιητικά SSL root" msgstr "Πιστοποιητικά SSL root"
#: templates/settings.php:113 #: templates/settings.php:158
msgid "Import Root Certificate" msgid "Import Root Certificate"
msgstr "Εισαγωγή Πιστοποιητικού Root" msgstr "Εισαγωγή Πιστοποιητικού Root"

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