Conflicts: lib/public/share.phpremotes/origin/stable6
commit
fc76a13c52
@ -0,0 +1,9 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
$application->add(new OCA\Files\Command\Scan(OC_User::getManager())); |
@ -0,0 +1,73 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> |
||||
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files\Command; |
||||
|
||||
use Symfony\Component\Console\Command\Command; |
||||
use Symfony\Component\Console\Input\InputArgument; |
||||
use Symfony\Component\Console\Input\InputInterface; |
||||
use Symfony\Component\Console\Input\InputOption; |
||||
use Symfony\Component\Console\Output\OutputInterface; |
||||
|
||||
class Scan extends Command { |
||||
|
||||
/** |
||||
* @var \OC\User\Manager $userManager |
||||
*/ |
||||
private $userManager; |
||||
|
||||
public function __construct(\OC\User\Manager $userManager) { |
||||
$this->userManager = $userManager; |
||||
parent::__construct(); |
||||
} |
||||
|
||||
protected function configure() { |
||||
$this |
||||
->setName('files:scan') |
||||
->setDescription('rescan filesystem') |
||||
->addArgument( |
||||
'user_id', |
||||
InputArgument::OPTIONAL | InputArgument::IS_ARRAY, |
||||
'will rescan all files of the given user(s)' |
||||
) |
||||
->addOption( |
||||
'all', |
||||
null, |
||||
InputOption::VALUE_NONE, |
||||
'will rescan all files of all known users' |
||||
) |
||||
; |
||||
} |
||||
|
||||
protected function scanFiles($user, OutputInterface $output) { |
||||
$scanner = new \OC\Files\Utils\Scanner($user); |
||||
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) use ($output) { |
||||
$output->writeln("Scanning <info>$path</info>"); |
||||
}); |
||||
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) use ($output) { |
||||
$output->writeln("Scanning <info>$path</info>"); |
||||
}); |
||||
$scanner->scan(''); |
||||
} |
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output) { |
||||
if ($input->getOption('all')) { |
||||
$users = $this->userManager->search(''); |
||||
} else { |
||||
$users = $input->getArgument('user_id'); |
||||
} |
||||
|
||||
foreach ($users as $user) { |
||||
if (is_object($user)) { |
||||
$user = $user->getUID(); |
||||
} |
||||
$this->scanFiles($user, $output); |
||||
} |
||||
} |
||||
} |
@ -1,31 +0,0 @@ |
||||
<?php |
||||
|
||||
if (count($argv) !== 2) { |
||||
echo "Usage:" . PHP_EOL; |
||||
echo " files:scan <user_id>" . PHP_EOL; |
||||
echo " will rescan all files of the given user" . PHP_EOL; |
||||
echo " files:scan --all" . PHP_EOL; |
||||
echo " will rescan all files of all known users" . PHP_EOL; |
||||
return; |
||||
} |
||||
|
||||
function scanFiles($user) { |
||||
$scanner = new \OC\Files\Utils\Scanner($user); |
||||
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) { |
||||
echo "Scanning $path" . PHP_EOL; |
||||
}); |
||||
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) { |
||||
echo "Scanning $path" . PHP_EOL; |
||||
}); |
||||
$scanner->scan(''); |
||||
} |
||||
|
||||
if ($argv[1] === '--all') { |
||||
$users = OC_User::getUsers(); |
||||
} else { |
||||
$users = array($argv[1]); |
||||
} |
||||
|
||||
foreach ($users as $user) { |
||||
scanFiles($user); |
||||
} |
@ -0,0 +1,119 @@ |
||||
|
||||
#upload { |
||||
height:27px; padding:0; margin-left:0.2em; overflow:hidden; |
||||
vertical-align: top; |
||||
} |
||||
#upload a { |
||||
position:relative; display:block; width:100%; height:27px; |
||||
cursor:pointer; z-index:10; |
||||
background-image:url('%webroot%/core/img/actions/upload.svg'); |
||||
background-repeat:no-repeat; |
||||
background-position:7px 6px; |
||||
opacity:0.65; |
||||
} |
||||
.file_upload_target { display:none; } |
||||
.file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; } |
||||
#file_upload_start { |
||||
float: left; |
||||
left:0; top:0; width:28px; height:27px; padding:0; |
||||
font-size:1em; |
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; |
||||
z-index:20; position:relative; cursor:pointer; overflow:hidden; |
||||
} |
||||
|
||||
#uploadprogresswrapper { |
||||
display: inline-block; |
||||
vertical-align: top; |
||||
margin:0.3em; |
||||
height: 29px; |
||||
} |
||||
#uploadprogressbar { |
||||
position:relative; |
||||
float: left; |
||||
margin-left: 12px; |
||||
width: 130px; |
||||
height: 26px; |
||||
display:inline-block; |
||||
} |
||||
#uploadprogressbar + stop { |
||||
font-size: 13px; |
||||
} |
||||
|
||||
.oc-dialog .fileexists table { |
||||
width: 100%; |
||||
} |
||||
.oc-dialog .fileexists th { |
||||
padding-left: 0; |
||||
padding-right: 0; |
||||
} |
||||
.oc-dialog .fileexists th input[type='checkbox'] { |
||||
margin-right: 3px; |
||||
} |
||||
.oc-dialog .fileexists th:first-child { |
||||
width: 230px; |
||||
} |
||||
.oc-dialog .fileexists th label { |
||||
font-weight: normal; |
||||
color:black; |
||||
} |
||||
.oc-dialog .fileexists th .count { |
||||
margin-left: 3px; |
||||
} |
||||
.oc-dialog .fileexists .conflicts .template { |
||||
display: none; |
||||
} |
||||
.oc-dialog .fileexists .conflict { |
||||
width: 100%; |
||||
height: 85px; |
||||
} |
||||
.oc-dialog .fileexists .conflict .filename { |
||||
color:#777; |
||||
word-break: break-all; |
||||
clear: left; |
||||
} |
||||
.oc-dialog .fileexists .icon { |
||||
width: 64px; |
||||
height: 64px; |
||||
margin: 0px 5px 5px 5px; |
||||
background-repeat: no-repeat; |
||||
background-size: 64px 64px; |
||||
float: left; |
||||
} |
||||
.oc-dialog .fileexists .replacement { |
||||
float: left; |
||||
width: 230px; |
||||
} |
||||
.oc-dialog .fileexists .original { |
||||
float: left; |
||||
width: 230px; |
||||
} |
||||
.oc-dialog .fileexists .conflicts { |
||||
overflow-y:scroll; |
||||
max-height: 225px; |
||||
} |
||||
.oc-dialog .fileexists .conflict input[type='checkbox'] { |
||||
float: left; |
||||
} |
||||
.oc-dialog .fileexists .toggle { |
||||
background-image: url('%webroot%/core/img/actions/triangle-e.png'); |
||||
width: 16px; |
||||
height: 16px; |
||||
} |
||||
.oc-dialog .fileexists #allfileslabel { |
||||
float:right; |
||||
} |
||||
.oc-dialog .fileexists #allfiles { |
||||
vertical-align: bottom; |
||||
position: relative; |
||||
top: -3px; |
||||
} |
||||
.oc-dialog .fileexists #allfiles + span{ |
||||
vertical-align: bottom; |
||||
} |
||||
.oc-dialog .oc-dialog-buttonrow { |
||||
width:100%; |
||||
text-align:right; |
||||
} |
||||
.oc-dialog .oc-dialog-buttonrow .cancel { |
||||
float:left; |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("","","",""), |
||||
"_%n file_::_%n files_" => array("","","",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","","","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; |
@ -0,0 +1,12 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Share" => "Podijeli", |
||||
"_%n folder_::_%n folders_" => array("","",""), |
||||
"_%n file_::_%n files_" => array("","",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","",""), |
||||
"Name" => "Ime", |
||||
"Size" => "Veličina", |
||||
"Save" => "Spasi", |
||||
"Folder" => "Fasikla" |
||||
); |
||||
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,74 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", |
||||
"Could not move %s" => "Konnte %s nicht verschieben", |
||||
"Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", |
||||
"Invalid Token" => "Ungültiges Merkmal", |
||||
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", |
||||
"There is no error, the file uploaded with success" => "Es ist kein 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 Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", |
||||
"The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden", |
||||
"No file was uploaded" => "Keine Datei konnte übertragen werden.", |
||||
"Missing a temporary folder" => "Kein temporärer Ordner vorhanden", |
||||
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", |
||||
"Not enough storage available" => "Nicht genug Speicher vorhanden.", |
||||
"Invalid directory." => "Ungültiges Verzeichnis.", |
||||
"Files" => "Dateien", |
||||
"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", |
||||
"Upload cancelled." => "Upload abgebrochen.", |
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", |
||||
"URL cannot be empty." => "Die URL darf nicht leer sein.", |
||||
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten.", |
||||
"Error" => "Fehler", |
||||
"Share" => "Teilen", |
||||
"Delete permanently" => "Endgültig löschen", |
||||
"Rename" => "Umbenennen", |
||||
"Pending" => "Ausstehend", |
||||
"{new_name} already exists" => "{new_name} existiert bereits", |
||||
"replace" => "ersetzen", |
||||
"suggest name" => "Namen vorschlagen", |
||||
"cancel" => "abbrechen", |
||||
"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", |
||||
"undo" => "rückgängig machen", |
||||
"_%n folder_::_%n folders_" => array("","%n Ordner"), |
||||
"_%n file_::_%n files_" => array("","%n Dateien"), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), |
||||
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", |
||||
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", |
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.", |
||||
"Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", |
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", |
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", |
||||
"Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern.", |
||||
"Name" => "Name", |
||||
"Size" => "Grösse", |
||||
"Modified" => "Geändert", |
||||
"%s could not be renamed" => "%s konnte nicht umbenannt werden", |
||||
"Upload" => "Hochladen", |
||||
"File handling" => "Dateibehandlung", |
||||
"Maximum upload size" => "Maximale Upload-Grösse", |
||||
"max. possible: " => "maximal möglich:", |
||||
"Needed for multi-file and folder downloads." => "Für Mehrfachdatei- und Ordnerdownloads benötigt:", |
||||
"Enable ZIP-download" => "ZIP-Download aktivieren", |
||||
"0 is unlimited" => "0 bedeutet unbegrenzt", |
||||
"Maximum input size for ZIP files" => "Maximale Grösse für ZIP-Dateien", |
||||
"Save" => "Speichern", |
||||
"New" => "Neu", |
||||
"Text file" => "Textdatei", |
||||
"Folder" => "Ordner", |
||||
"From link" => "Von einem Link", |
||||
"Deleted files" => "Gelöschte Dateien", |
||||
"Cancel upload" => "Upload abbrechen", |
||||
"You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", |
||||
"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", |
||||
"Download" => "Herunterladen", |
||||
"Unshare" => "Freigabe aufheben", |
||||
"Delete" => "Löschen", |
||||
"Upload too large" => "Der Upload ist zu gross", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server.", |
||||
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", |
||||
"Current scanning" => "Scanne", |
||||
"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,75 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Could not move %s - File with this name already exists" => "Could not move %s - File with this name already exists", |
||||
"Could not move %s" => "Could not move %s", |
||||
"Unable to set upload directory." => "Unable to set upload directory.", |
||||
"Invalid Token" => "Invalid Token", |
||||
"No file was uploaded. Unknown error" => "No file was uploaded. Unknown error", |
||||
"There is no error, the file uploaded with success" => "There is no error, the file uploaded successfully", |
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "The uploaded file exceeds the upload_max_filesize directive in php.ini: ", |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form", |
||||
"The uploaded file was only partially uploaded" => "The uploaded file was only partially uploaded", |
||||
"No file was uploaded" => "No file was uploaded", |
||||
"Missing a temporary folder" => "Missing a temporary folder", |
||||
"Failed to write to disk" => "Failed to write to disk", |
||||
"Not enough storage available" => "Not enough storage available", |
||||
"Invalid directory." => "Invalid directory.", |
||||
"Files" => "Files", |
||||
"Not enough space available" => "Not enough space available", |
||||
"Upload cancelled." => "Upload cancelled.", |
||||
"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.", |
||||
"URL cannot be empty." => "URL cannot be empty.", |
||||
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Invalid folder name. Usage of 'Shared' is reserved by ownCloud", |
||||
"Error" => "Error", |
||||
"Share" => "Share", |
||||
"Delete permanently" => "Delete permanently", |
||||
"Rename" => "Rename", |
||||
"Pending" => "Pending", |
||||
"{new_name} already exists" => "{new_name} already exists", |
||||
"replace" => "replace", |
||||
"suggest name" => "suggest name", |
||||
"cancel" => "cancel", |
||||
"replaced {new_name} with {old_name}" => "replaced {new_name} with {old_name}", |
||||
"undo" => "undo", |
||||
"_%n folder_::_%n folders_" => array("%n folder","%n folders"), |
||||
"_%n file_::_%n files_" => array("%n file","%n files"), |
||||
"{dirs} and {files}" => "{dirs} and {files}", |
||||
"_Uploading %n file_::_Uploading %n files_" => array("Uploading %n file","Uploading %n files"), |
||||
"'.' is an invalid file name." => "'.' is an invalid file name.", |
||||
"File name cannot be empty." => "File name cannot be empty.", |
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", |
||||
"Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", |
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", |
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.", |
||||
"Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", |
||||
"Name" => "Name", |
||||
"Size" => "Size", |
||||
"Modified" => "Modified", |
||||
"%s could not be renamed" => "%s could not be renamed", |
||||
"Upload" => "Upload", |
||||
"File handling" => "File handling", |
||||
"Maximum upload size" => "Maximum upload size", |
||||
"max. possible: " => "max. possible: ", |
||||
"Needed for multi-file and folder downloads." => "Needed for multi-file and folder downloads.", |
||||
"Enable ZIP-download" => "Enable ZIP-download", |
||||
"0 is unlimited" => "0 is unlimited", |
||||
"Maximum input size for ZIP files" => "Maximum input size for ZIP files", |
||||
"Save" => "Save", |
||||
"New" => "New", |
||||
"Text file" => "Text file", |
||||
"Folder" => "Folder", |
||||
"From link" => "From link", |
||||
"Deleted files" => "Deleted files", |
||||
"Cancel upload" => "Cancel upload", |
||||
"You don’t have write permissions here." => "You don’t have write permission here.", |
||||
"Nothing in here. Upload something!" => "Nothing in here. Upload something!", |
||||
"Download" => "Download", |
||||
"Unshare" => "Unshare", |
||||
"Delete" => "Delete", |
||||
"Upload too large" => "Upload too large", |
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", |
||||
"Files are being scanned, please wait." => "Files are being scanned, please wait.", |
||||
"Current scanning" => "Current scanning", |
||||
"Upgrading filesystem cache..." => "Upgrading filesystem cache..." |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array(""), |
||||
"_%n file_::_%n files_" => array(""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=1; plural=0;"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array(""), |
||||
"_%n file_::_%n files_" => array(""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=1; plural=0;"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array(""), |
||||
"_%n file_::_%n files_" => array(""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=1; plural=0;"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("","",""), |
||||
"_%n file_::_%n files_" => array("","",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"_%n folder_::_%n folders_" => array("",""), |
||||
"_%n file_::_%n files_" => array("",""), |
||||
"_Uploading %n file_::_Uploading %n files_" => array("","") |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,26 @@ |
||||
<div id="{dialog_name}" title="{title}" class="fileexists"> |
||||
<span class="why">{why}<!-- Which files do you want to keep --></span><br/> |
||||
<span class="what">{what}<!-- If you select both versions, the copied file will have a number added to its name. --></span><br/> |
||||
<br/> |
||||
<table> |
||||
<th><label><input class="allnewfiles" type="checkbox" />New Files<span class="count"></span></label></th> |
||||
<th><label><input class="allexistingfiles" type="checkbox" />Already existing files<span class="count"></span></label></th> |
||||
</table> |
||||
<div class="conflicts"> |
||||
<div class="template"> |
||||
<div class="filename"></div> |
||||
<div class="replacement"> |
||||
<input type="checkbox" /> |
||||
<span class="svg icon"></span> |
||||
<div class="mtime"></div> |
||||
<div class="size"></div> |
||||
</div> |
||||
<div class="original"> |
||||
<input type="checkbox" /> |
||||
<span class="svg icon"></span> |
||||
<div class="mtime"></div> |
||||
<div class="size"></div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,5 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Saving..." => "Spašavam..." |
||||
); |
||||
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; |
@ -0,0 +1,39 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Recovery key successfully enabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.", |
||||
"Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", |
||||
"Recovery key successfully disabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.", |
||||
"Could not disable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", |
||||
"Password successfully changed." => "Das Passwort wurde erfolgreich geändert.", |
||||
"Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", |
||||
"Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", |
||||
"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", |
||||
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", |
||||
"Missing requirements." => "Fehlende Voraussetzungen", |
||||
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", |
||||
"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", |
||||
"Saving..." => "Speichern...", |
||||
"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert.", |
||||
"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", |
||||
"personal settings" => "Persönliche Einstellungen", |
||||
"Encryption" => "Verschlüsselung", |
||||
"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", |
||||
"Recovery key password" => "Wiederherstellungschlüsselpasswort", |
||||
"Enabled" => "Aktiviert", |
||||
"Disabled" => "Deaktiviert", |
||||
"Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern", |
||||
"Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort", |
||||
"New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ", |
||||
"Change Password" => "Passwort ändern", |
||||
"Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.", |
||||
"Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.", |
||||
" If you don't remember your old password you can ask your administrator to recover your files." => "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.", |
||||
"Old log-in password" => "Altes Login-Passwort", |
||||
"Current log-in password" => "Momentanes Login-Passwort", |
||||
"Update Private Key Password" => "Das Passwort des privaten Schlüssels aktualisieren", |
||||
"Enable password recovery:" => "Die Passwort-Wiederherstellung aktivieren:", |
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.", |
||||
"File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", |
||||
"Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
@ -0,0 +1,39 @@ |
||||
<?php |
||||
$TRANSLATIONS = array( |
||||
"Recovery key successfully enabled" => "Recovery key enabled successfully", |
||||
"Could not enable recovery key. Please check your recovery key password!" => "Could not enable recovery key. Please check your recovery key password!", |
||||
"Recovery key successfully disabled" => "Recovery key disabled successfully", |
||||
"Could not disable recovery key. Please check your recovery key password!" => "Could not disable recovery key. Please check your recovery key password!", |
||||
"Password successfully changed." => "Password changed successfully.", |
||||
"Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.", |
||||
"Private key password successfully updated." => "Private key password updated successfully.", |
||||
"Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.", |
||||
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.", |
||||
"Missing requirements." => "Missing requirements.", |
||||
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", |
||||
"Following users are not set up for encryption:" => "Following users are not set up for encryption:", |
||||
"Saving..." => "Saving...", |
||||
"Your private key is not valid! Maybe the your password was changed from outside." => "Your private key is not valid! Maybe the your password was changed externally.", |
||||
"You can unlock your private key in your " => "You can unlock your private key in your ", |
||||
"personal settings" => "personal settings", |
||||
"Encryption" => "Encryption", |
||||
"Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):", |
||||
"Recovery key password" => "Recovery key password", |
||||
"Enabled" => "Enabled", |
||||
"Disabled" => "Disabled", |
||||
"Change recovery key password:" => "Change recovery key password:", |
||||
"Old Recovery key password" => "Old Recovery key password", |
||||
"New Recovery key password" => "New Recovery key password", |
||||
"Change Password" => "Change Password", |
||||
"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:", |
||||
"Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.", |
||||
" If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.", |
||||
"Old log-in password" => "Old login password", |
||||
"Current log-in password" => "Current login password", |
||||
"Update Private Key Password" => "Update Private Key Password", |
||||
"Enable password recovery:" => "Enable password recovery:", |
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss", |
||||
"File recovery settings updated" => "File recovery settings updated", |
||||
"Could not update file recovery" => "Could not update file recovery" |
||||
); |
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue