merge master with resolved conflicts

This commit is contained in:
Arthur Schiwon 2013-10-23 12:01:45 +02:00
commit d78a80a689
439 changed files with 8340 additions and 4410 deletions

View File

@ -118,6 +118,10 @@ if ($needUpgrade) {
$trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user);
}
$isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/');
$fileHeader = (!isset($files) or count($files) > 0);
$emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad;
OCP\Util::addscript('files', 'fileactions');
OCP\Util::addscript('files', 'files');
OCP\Util::addscript('files', 'keyboardshortcuts');
@ -125,7 +129,7 @@ if ($needUpgrade) {
$tmpl->assign('fileList', $list->fetchPage());
$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage());
$tmpl->assign('dir', \OC\Files\Filesystem::normalizePath($dir));
$tmpl->assign('isCreatable', \OC\Files\Filesystem::isCreatable($dir . '/'));
$tmpl->assign('isCreatable', $isCreatable);
$tmpl->assign('permissions', $permissions);
$tmpl->assign('files', $files);
$tmpl->assign('trash', $trashEnabled);
@ -138,9 +142,12 @@ if ($needUpgrade) {
$tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
$tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles());
$tmpl->assign("mailNotificationEnabled", \OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes'));
$tmpl->assign("allowShareWithLink", \OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes'));
$tmpl->assign("encryptionInitStatus", $encryptionInitStatus);
$tmpl->assign('disableSharing', false);
$tmpl->assign('ajaxLoad', $ajaxLoad);
$tmpl->assign('emptyContent', $emptyContent);
$tmpl->assign('fileHeader', $fileHeader);
$tmpl->printPage();
}

View File

@ -7,11 +7,9 @@ var FileList={
});
},
update:function(fileListHtml) {
var $fileList = $('#fileList'),
permissions = $('#permissions').val(),
isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
var $fileList = $('#fileList');
$fileList.empty().html(fileListHtml);
$('#emptycontent').toggleClass('hidden', !isCreatable || $fileList.find('tr').length > 0);
FileList.updateEmptyContent();
$fileList.find('tr').each(function () {
FileActions.display($(this).children('td.filename'));
});
@ -251,12 +249,38 @@ var FileList={
$('.creatable').toggleClass('hidden', !isCreatable);
$('.notCreatable').toggleClass('hidden', isCreatable);
},
/**
* Shows/hides action buttons
*
* @param show true for enabling, false for disabling
*/
showActions: function(show){
$('.actions,#file_action_panel').toggleClass('hidden', !show);
if (show){
// make sure to display according to permissions
var permissions = $('#permissions').val();
var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
$('.creatable').toggleClass('hidden', !isCreatable);
$('.notCreatable').toggleClass('hidden', isCreatable);
}
},
/**
* Enables/disables viewer mode.
* In viewer mode, apps can embed themselves under the controls bar.
* In viewer mode, the actions of the file list will be hidden.
* @param show true for enabling, false for disabling
*/
setViewerMode: function(show){
this.showActions(!show);
$('#filestable').toggleClass('hidden', show);
},
remove:function(name){
$('tr').filterAttr('data-file',name).find('td.filename').draggable('destroy');
$('tr').filterAttr('data-file',name).remove();
FileList.updateFileSummary();
if($('tr[data-file]').length==0){
$('#emptycontent').removeClass('hidden');
$('#filescontent th').addClass('hidden');
}
},
insertElement:function(name,type,element){
@ -287,6 +311,7 @@ var FileList={
$('#fileList').append(element);
}
$('#emptycontent').addClass('hidden');
$('#filestable th').removeClass('hidden');
FileList.updateFileSummary();
},
loadingDone:function(name, id){
@ -505,6 +530,7 @@ var FileList={
procesSelection();
checkTrashStatus();
FileList.updateFileSummary();
FileList.updateEmptyContent();
} else {
$.each(files,function(index,file) {
var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
@ -618,6 +644,13 @@ var FileList={
}
}
},
updateEmptyContent: function(){
var $fileList = $('#fileList');
var permissions = $('#permissions').val();
var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0;
$('#emptycontent').toggleClass('hidden', !isCreatable || $fileList.find('tr').length > 0);
$('#filestable th').toggleClass('hidden', $fileList.find('tr').length === 0);
},
showMask: function(){
// in case one was shown before
var $mask = $('#content .mask');

View File

@ -301,7 +301,7 @@ $(document).ready(function() {
});
$('.download').click('click',function(event) {
var files=getSelectedFiles('name');
var files=getSelectedFilesTrash('name');
var fileslist = JSON.stringify(files);
var dir=$('#dir').val()||'/';
OC.Notification.show(t('files','Your download is being prepared. This might take some time if the files are big.'));
@ -315,7 +315,7 @@ $(document).ready(function() {
});
$('.delete-selected').click(function(event) {
var files=getSelectedFiles('name');
var files=getSelectedFilesTrash('name');
event.preventDefault();
FileList.do_delete(files);
return false;
@ -433,7 +433,7 @@ var createDragShadow = function(event){
$(event.target).parents('tr').find('td input:first').prop('checked',true);
}
var selectedFiles = getSelectedFiles();
var selectedFiles = getSelectedFilesTrash();
if (!isDragSelected && selectedFiles.length == 1) {
//revert the selection
@ -562,7 +562,7 @@ var crumbDropOptions={
}
function procesSelection(){
var selected=getSelectedFiles();
var selected=getSelectedFilesTrash();
var selectedFiles=selected.filter(function(el){return el.type=='file'});
var selectedFolders=selected.filter(function(el){return el.type=='dir'});
if(selectedFiles.length==0 && selectedFolders.length==0) {
@ -607,7 +607,7 @@ function procesSelection(){
* if property is set, an array with that property for each file is returnd
* if it's ommited an array of objects with all properties is returned
*/
function getSelectedFiles(property){
function getSelectedFilesTrash(property){
var elements=$('td.filename input:checkbox:checked').parent().parent();
var files=[];
elements.each(function(i,element){
@ -663,8 +663,16 @@ function lazyLoadPreview(path, mime, ready, width, height) {
$.get(previewURL, function() {
previewURL = previewURL.replace('(', '%28');
previewURL = previewURL.replace(')', '%29');
//set preview thumbnail URL
ready(previewURL + '&reload=true');
previewURL += '&reload=true';
// preload image to prevent delay
// this will make the browser cache the image
var img = new Image();
img.onload = function(){
//set preview thumbnail URL
ready(previewURL);
}
img.src = previewURL;
});
});
}

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

@ -0,0 +1,14 @@
<?php
$TRANSLATIONS = array(
"Files" => "Файлы",
"Error" => "Ошибка",
"Share" => "Сделать общим",
"Rename" => "Переименовать",
"_%n folder_::_%n folders_" => array("","",""),
"_%n file_::_%n files_" => array("","",""),
"_Uploading %n file_::_Uploading %n files_" => array("","",""),
"Upload" => "Загрузка",
"Cancel upload" => "Отмена загрузки",
"Download" => "Загрузка"
);
$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);";

View File

@ -13,10 +13,14 @@ $TRANSLATIONS = array(
"Missing a temporary folder" => "Chýba dočasný priečinok",
"Failed to write to disk" => "Zápis na disk sa nepodaril",
"Not enough storage available" => "Nedostatok dostupného úložného priestoru",
"Upload failed. Could not get file info." => "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore.",
"Upload failed. Could not find uploaded file" => "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor",
"Invalid directory." => "Neplatný priečinok.",
"Files" => "Súbory",
"Unable to upload {filename} as it is a directory or has 0 bytes" => "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov",
"Not enough space available" => "Nie je k dispozícii dostatok miesta",
"Upload cancelled." => "Odosielanie zrušené.",
"Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.",
"URL cannot be empty." => "URL nemôže byť prázdne.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud",
@ -33,14 +37,18 @@ $TRANSLATIONS = array(
"undo" => "vrátiť",
"_%n folder_::_%n folders_" => array("%n priečinok","%n priečinky","%n priečinkov"),
"_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"),
"{dirs} and {files}" => "{dirs} a {files}",
"_Uploading %n file_::_Uploading %n files_" => array("Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"),
"'.' is an invalid file name." => "'.' je neplatné meno súboru.",
"File name cannot be empty." => "Meno súboru nemôže byť prázdne",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.",
"Your storage is full, files can not be updated or synced anymore!" => "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!",
"Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)",
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.",
"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov.",
"Your download is being prepared. This might take some time if the files are big." => "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať.",
"Error moving file" => "Chyba pri presúvaní súboru",
"Name" => "Názov",
"Size" => "Veľkosť",
"Modified" => "Upravené",

View File

@ -1,6 +1,6 @@
<div id="controls">
<?php print_unescaped($_['breadcrumb']); ?>
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?> <?php if (isset($_['files']) and count($_['files'])==0):?>emptycontent<?php endif; ?>">
<div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?>">
<div id="new" class="button">
<a><?php p($l->t('New'));?></a>
<ul>
@ -42,14 +42,14 @@
<input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions">
</div>
<div id="emptycontent" <?php if (!isset($_['files']) or !$_['isCreatable'] or count($_['files']) > 0 or $_['ajaxLoad']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div>
<div id="emptycontent" <?php if (!$_['emptyContent']):?>class="hidden"<?php endif; ?>><?php p($l->t('Nothing in here. Upload something!'))?></div>
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input>
<table id="filestable" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="36" data-preview-y="36">
<thead>
<tr>
<th id='headerName'>
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id='headerName'>
<div id="headerName-container">
<input type="checkbox" id="select_all" />
<label for="select_all"></label>
@ -65,8 +65,8 @@
</span>
</div>
</th>
<th id="headerSize"><?php p($l->t('Size')); ?></th>
<th id="headerDate">
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id="headerSize"><?php p($l->t('Size')); ?></th>
<th <?php if (!$_['fileHeader']):?>class="hidden"<?php endif; ?> id="headerDate">
<span id="modified"><?php p($l->t( 'Modified' )); ?></span>
<?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?>
<!-- NOTE: Temporary fix to allow unsharing of files in root of Shared folder -->
@ -114,3 +114,5 @@
<input type="hidden" name="encryptedFiles" id="encryptedFiles" value="<?php $_['encryptedFiles'] ? p('1') : p('0'); ?>" />
<input type="hidden" name="encryptedInitStatus" id="encryptionInitStatus" value="<?php p($_['encryptionInitStatus']) ?>" />
<input type="hidden" name="mailNotificationEnabled" id="mailNotificationEnabled" value="<?php p($_['mailNotificationEnabled']) ?>" />
<input type="hidden" name="allowShareWithLink" id="allowShareWithLink" value="<?php p($_['allowShareWithLink']) ?>" />

View File

@ -555,4 +555,15 @@ class Hooks {
}
}
/**
* set the init status to 'NOT_INITIALIZED' (0) if the app gets enabled
* @param array $params contains the app ID
*/
public static function postEnable($params) {
if ($params['app'] === 'files_encryption') {
$session = new \OCA\Encryption\Session(new \OC\Files\View('/'));
$session->setInitialized(\OCA\Encryption\Session::NOT_INITIALIZED);
}
}
}

View File

@ -10,6 +10,8 @@ $TRANSLATIONS = array(
"Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado.",
"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." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pidalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
"Unknown error please check your system settings or contact your administrator" => "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou póñase en contacto co administrador",
"Missing requirements." => "Non se cumpren os requisitos.",
"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." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.",
"Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:",

View File

@ -8,7 +8,10 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Impossibile cambiare la password. Forse la vecchia password non era corretta.",
"Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.",
"Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.",
"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." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
"Unknown error please check your system settings or contact your administrator" => "Errore sconosciuto, controlla le impostazioni di sistema o contatta il tuo amministratore",
"Missing requirements." => "Requisiti mancanti.",
"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." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
"Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:",

View File

@ -8,20 +8,26 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。",
"Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。",
"Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "暗号化アプリが初期化されていません。暗号化アプリが接続中に再度有効かされた可能性があります。暗号化アプリを初期化する為に、1回ログアウトしてログインしなおしてください。",
"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." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
"Unknown error please check your system settings or contact your administrator" => "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。",
"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." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。",
"Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:",
"Saving..." => "保存中...",
"Go directly to your " => "あなたのディレクトリへ",
"personal settings" => "秘密鍵をアンロックできます",
"Encryption" => "暗号化",
"Enable recovery key (allow to recover users files in case of password loss):" => "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):",
"Recovery key password" => "復旧キーのパスワード",
"Repeat Recovery key password" => "復旧キーのパスワードをもう一度入力",
"Enabled" => "有効",
"Disabled" => "無効",
"Change recovery key password:" => "復旧キーのパスワードを変更:",
"Old Recovery key password" => "古い復旧キーのパスワード",
"New Recovery key password" => "新しい復旧キーのパスワード",
"Repeat New Recovery key password" => "新しい復旧キーのパスワードをもう一度入力",
"Change Password" => "パスワードを変更",
"Your private key password no longer match your log-in password:" => "もはや秘密鍵はログインパスワードと一致しません:",
"Set your old private key password to your current log-in password." => "古い秘密鍵のパスワードを現在のログインパスワードに設定する。",

View File

@ -10,6 +10,8 @@ $TRANSLATIONS = array(
"Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren.",
"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." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met u te delen.",
"Unknown error please check your system settings or contact your administrator" => "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder",
"Missing requirements." => "Missende benodigdheden.",
"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." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.",
"Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:",

View File

@ -10,6 +10,8 @@ $TRANSLATIONS = array(
"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel.",
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet.",
"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." => "Lösenordet för din privata nyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera lösenordet för den privata nyckeln under dina personliga inställningar för att återfå tillgång till dina filer.",
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.",
"Unknown error please check your system settings or contact your administrator" => "Oväntat fel, kolla dina system inställningar eller kontakta din administratör",
"Missing requirements." => "Krav som saknas",
"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." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.",
"Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:",

View File

@ -69,6 +69,7 @@ class Helper {
public static function registerAppHooks() {
\OCP\Util::connectHook('OC_App', 'pre_disable', 'OCA\Encryption\Hooks', 'preDisable');
\OCP\Util::connectHook('OC_App', 'post_disable', 'OCA\Encryption\Hooks', 'postEnable');
}
/**

View File

@ -1278,7 +1278,7 @@ class Util {
// If no record is found
if (empty($migrationStatus)) {
\OCP\Util::writeLog('Encryption library', "Could not get migration status for " . $this->userId . ", no record found", \OCP\Util::ERROR);
return false;
return self::MIGRATION_OPEN;
// If a record is found
} else {
return (int)$migrationStatus[0];

View File

@ -8,6 +8,7 @@ OC::$CLASSPATH['OC\Files\Cache\Shared_Permissions'] = 'files_sharing/lib/permiss
OC::$CLASSPATH['OC\Files\Cache\Shared_Updater'] = 'files_sharing/lib/updater.php';
OC::$CLASSPATH['OC\Files\Cache\Shared_Watcher'] = 'files_sharing/lib/watcher.php';
OC::$CLASSPATH['OCA\Files\Share\Api'] = 'files_sharing/lib/api.php';
OC::$CLASSPATH['OCA\Files\Share\Maintainer'] = 'files_sharing/lib/maintainer.php';
OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
@ -17,3 +18,4 @@ OCP\Util::addScript('files_sharing', 'share');
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook');
\OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook');
\OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook');
\OC_Hook::connect('OC_Appconfig', 'post_set_value', '\OCA\Files\Share\Maintainer', 'configChangeHook');

View File

@ -132,3 +132,14 @@ thead{
top: -2px;
color: #555;
}
.directLink {
margin-bottom: 20px;
}
.directLink label {
font-weight: normal;
}
.directLink input {
margin-left: 10px;
width: 300px;
}

View File

@ -67,4 +67,6 @@ $(document).ready(function() {
procesSelection();
});
$('#directLink').focus();
});

View File

@ -1,5 +1,6 @@
<?php
$TRANSLATIONS = array(
"This share is password-protected" => "Esta partilha está protegida por palavra-chave",
"The password is wrong. Try again." => "Password errada, por favor tente de novo",
"Password" => "Password",
"Sorry, this link doesnt seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.",

View File

@ -0,0 +1,8 @@
<?php
$TRANSLATIONS = array(
"Password" => "Пароль",
"Download" => "Загрузка",
"Upload" => "Загрузка",
"Cancel upload" => "Отмена загрузки"
);
$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);";

View File

@ -1,5 +1,6 @@
<?php
$TRANSLATIONS = array(
"This share is password-protected" => "Den här delningen är lösenordsskyddad",
"The password is wrong. Try again." => "Lösenordet är fel. Försök igen.",
"Password" => "Lösenord",
"Sorry, this link doesnt seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.",

View File

@ -36,10 +36,17 @@ class Api {
$params['itemSource'] = self::getFileId($_GET['path']);
$params['path'] = $_GET['path'];
$params['itemType'] = self::getItemType($_GET['path']);
if (isset($_GET['subfiles']) && $_GET['subfiles'] === 'true') {
if ( isset($_GET['reshares']) && $_GET['reshares'] !== 'false' ) {
$params['reshares'] = true;
} else {
$params['reshares'] = false;
}
if (isset($_GET['subfiles']) && $_GET['subfiles'] !== 'false') {
return self::getSharesFromFolder($params);
}
return self::getShare($params);
return self::collectShares($params);
}
$share = \OCP\Share::getItemShared('file', null);
@ -59,34 +66,49 @@ class Api {
* @return \OC_OCS_Result share information
*/
public static function getShare($params) {
// either the $params already contains a itemSource if we come from
// getAllShare() or we need to translate the shareID to a itemSource
if(isset($params['itemSource'])) {
$itemSource = $params['itemSource'];
$itemType = $params['itemType'];
$getSpecificShare = true;
} else {
$s = self::getShareFromId($params['id']);
$itemSource = $s['item_source'];
$itemType = $s['item_type'];
$getSpecificShare = false;
}
$s = self::getShareFromId($params['id']);
$params['itemSource'] = $s['item_source'];
$params['itemType'] = $s['item_type'];
$params['specificShare'] = true;
return self::collectShares($params);
}
/**
* @brief collect all share information, either of a specific share or all
* shares for a given path
* @param array $params
* @return \OC_OCS_Result
*/
private static function collectShares($params) {
$itemSource = $params['itemSource'];
$itemType = $params['itemType'];
$getSpecificShare = isset($params['specificShare']) ? $params['specificShare'] : false;
if ($itemSource !== null) {
$shares = \OCP\Share::getItemShared($itemType, $itemSource);
$reshare = \OCP\Share::getItemSharedWithBySource($itemType, $itemSource);
$receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $itemSource);
// if a specific share was specified only return this one
if ($getSpecificShare === false) {
if ($getSpecificShare === true) {
foreach ($shares as $share) {
if ($share['id'] === (int)$params['id']) {
if ($share['id'] === (int) $params['id']) {
$shares = array('element' => $share);
break;
}
}
}
if ($reshare) {
$shares['received_from'] = $reshare['uid_owner'];
$shares['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']);
// include also reshares in the lists. This means that the result
// will contain every user with access to the file.
if (isset($params['reshares']) && $params['reshares'] === true) {
$shares = self::addReshares($shares, $itemSource);
}
if ($receivedFrom) {
$shares['received_from'] = $receivedFrom['uid_owner'];
$shares['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']);
}
} else {
$shares = null;
@ -99,6 +121,37 @@ class Api {
}
}
/**
* @brief add reshares to a array of shares
* @param array $shares array of shares
* @param int $itemSource item source ID
* @return array new shares array which includes reshares
*/
private static function addReshares($shares, $itemSource) {
// if there are no shares than there are also no reshares
$firstShare = reset($shares);
if ($firstShare) {
$path = $firstShare['path'];
} else {
return $shares;
}
$select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path` , `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`, `mail_send`';
$getReshares = \OC_DB::prepare('SELECT ' . $select . ' FROM `*PREFIX*share` INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*share`.`file_source` = ? AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\') AND `uid_owner` != ?');
$reshares = $getReshares->execute(array($itemSource, \OCP\User::getUser()))->fetchAll();
foreach ($reshares as $key => $reshare) {
if (isset($reshare['share_with']) && $reshare['share_with'] !== '') {
$reshares[$key]['share_with_displayname'] = \OCP\User::getDisplayName($reshare['share_with']);
}
// add correct path to the result
$reshares[$key]['path'] = $path;
}
return array_merge($shares, $reshares);
}
/**
* @brief get share from all files in a given folder (non-recursive)
* @param array $params contains 'path' to the folder
@ -119,10 +172,10 @@ class Api {
// workaround because folders are named 'dir' in this context
$itemType = $file['type'] === 'file' ? 'file' : 'folder';
$share = \OCP\Share::getItemShared($itemType, $file['fileid']);
$reshare = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']);
if ($reshare) {
$share['received_from'] = $reshare['uid_owner'];
$share['received_from_displayname'] = \OCP\User::getDisplayName($reshare['uid_owner']);
$receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']);
if ($receivedFrom) {
$share['received_from'] = $receivedFrom['uid_owner'];
$share['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']);
}
if ($share) {
$share['filename'] = $file['name'];

View File

@ -0,0 +1,44 @@
<?php
/**
* ownCloud
*
* @author Morris Jobke
* @copyright 2013 Morris Jobke morris.jobke@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
namespace OCA\Files\Share;
/**
* Maintains stuff around the sharing functionality
*
* for example: on disable of "allow links" it removes all link shares
*/
class Maintainer {
/**
* Keeps track of the "allow links" config setting
* and removes all link shares if the config option is set to "no"
*
* @param array with app, key, value as named values
*/
static public function configChangeHook($params) {
if($params['app'] === 'core' && $params['key'] === 'shareapi_allow_links' && $params['value'] === 'no') {
\OCP\Share::removeAllLinkShares();
}
}
}

View File

@ -15,10 +15,10 @@
<div class="header-right">
<?php if (isset($_['folder'])): ?>
<span id="details"><?php p($l->t('%s shared the folder %s with you',
array($_['displayName'], $_['fileTarget']))) ?></span>
array($_['displayName'], $_['filename']))) ?></span>
<?php else: ?>
<span id="details"><?php p($l->t('%s shared the file %s with you',
array($_['displayName'], $_['fileTarget']))) ?></span>
array($_['displayName'], $_['filename']))) ?></span>
<?php endif; ?>
@ -88,13 +88,14 @@
<?php else: ?>
<ul id="noPreview">
<li class="error">
<?php p($l->t('No preview available for').' '.$_['fileTarget']); ?><br />
<?php p($l->t('No preview available for').' '.$_['filename']); ?><br />
<a href="<?php p($_['downloadURL']); ?>" id="download"><img class="svg" alt="Download"
src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>"
/><?php p($l->t('Download'))?></a>
</li>
</ul>
<?php endif; ?>
<div class="directLink"><label for="directLink"><?php p($l->t('Direct link')) ?></label><input id="directLink" type="text" readonly value="<?php p($_['downloadURL']); ?>"></input></div>
<?php endif; ?>
</div>
<footer>

View File

@ -31,6 +31,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
const TEST_FILES_SHARING_API_USER3 = "test-share-user3";
public $stateFilesEncryption;
public $filename;
@ -54,6 +55,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
// create users
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true);
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true);
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, true);
}
@ -101,6 +103,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
// cleanup users
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
}
/**
@ -197,10 +200,9 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
null, 1);
$params = array('itemSource' => $fileInfo['fileid'],
'itemType' => 'file');
$_GET['path'] = $this->filename;
$result = Share\Api::getShare($params);
$result = Share\Api::getAllShares(array());
$this->assertTrue($result->succeeded());
@ -214,6 +216,60 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
}
/**
* @medium
* @depends testCreateShare
*/
function testGetShareFromSourceWithReshares() {
$fileInfo = $this->view->getFileInfo($this->filename);
// share the file as user1 to user2
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
// login as user2 and reshare the file to user3
\Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31);
// login as user1 again
\Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
$_GET['path'] = $this->filename;
$result = Share\Api::getAllShares(array());
$this->assertTrue($result->succeeded());
// test should return one share
$this->assertTrue(count($result->getData()) === 1);
// now also ask for the reshares
$_GET['reshares'] = 'true';
$result = Share\Api::getAllShares(array());
$this->assertTrue($result->succeeded());
// now we should get two shares, the initial share and the reshare
$this->assertTrue(count($result->getData()) === 2);
// unshare files again
\Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
\Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
}
/**
* @medium
* @depends testCreateShare

View File

@ -0,0 +1,5 @@
<?php
$TRANSLATIONS = array(
"Error" => "Ошибка"
);
$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);";

View File

@ -1,5 +1,12 @@
$(document).ready(function(){
if ($('#isPublic').val()){
// no versions actions in public mode
// beware of https://github.com/owncloud/core/issues/4545
// as enabling this might hang Chrome
return;
}
if (typeof FileActions !== 'undefined') {
// Add versions button to 'files/index.php'
FileActions.register(

View File

@ -76,6 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Attributo nome utente interno:",
"Override UUID detection" => "Ignora rilevamento UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti).",
"UUID Attribute for Users:" => "Attributo UUID per gli utenti:",
"UUID Attribute for Groups:" => "Attributo UUID per i gruppi:",
"Username-LDAP User Mapping" => "Associazione Nome utente-Utente LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.",
"Clear Username-LDAP User Mapping" => "Cancella associazione Nome utente-Utente LDAP",

View File

@ -0,0 +1,6 @@
<?php
$TRANSLATIONS = array(
"Error" => "Ошибка",
"Password" => "Пароль"
);
$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);";

View File

@ -76,6 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atribút interného používateľského mena:",
"Override UUID detection" => "Prepísať UUID detekciu",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.",
"UUID Attribute for Users:" => "UUID atribút pre používateľov:",
"UUID Attribute for Groups:" => "UUID atribút pre skupiny:",
"Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.",
"Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien",

View File

@ -76,6 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Internt Användarnamn Attribut:",
"Override UUID detection" => "Åsidosätt UUID detektion",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.",
"UUID Attribute for Users:" => "UUID Attribut för Användare:",
"UUID Attribute for Groups:" => "UUID Attribut för Grupper:",
"Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!",
"Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping",

View File

@ -1021,7 +1021,7 @@ class Access extends LDAPUtility {
$bases = $this->sanitizeDN($bases);
foreach($bases as $base) {
$belongsToBase = true;
if(mb_strripos($dn, $base, 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($base))) {
if(mb_strripos($dn, $base, 0, 'UTF-8') !== (mb_strlen($dn, 'UTF-8')-mb_strlen($base, 'UTF-8'))) {
$belongsToBase = false;
}
if($belongsToBase) {

View File

@ -129,6 +129,12 @@ $CONFIG = array(
/* Are we connected to the internet or are we running in a closed network? */
"has_internet_connection" => true,
/* Check if the ownCloud WebDAV server is working correctly. Can be disabled if not needed in special situations*/
"check_for_working_webdav" => true,
/* Check if .htaccess protection of data is working correctly. Can be disabled if not needed in special situations*/
"check_for_working_htaccess" => true,
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
"log_type" => "owncloud",

View File

@ -83,7 +83,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
($return) ? OC_JSON::success() : OC_JSON::error();
}
break;
case 'informRecipients':
case 'informRecipients':
$l = OC_L10N::get('core');
@ -305,8 +305,9 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
&& $uid != OC_User::getUser()) {
$shareWith[] = array(
'label' => $displayName,
'value' => array('shareType' => OCP\Share::SHARE_TYPE_USER,
'shareWith' => $uid)
'value' => array(
'shareType' => OCP\Share::SHARE_TYPE_USER,
'shareWith' => $uid)
);
$count++;
}
@ -324,7 +325,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
|| !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
|| !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) {
$shareWith[] = array(
'label' => $group.' ('.$l->t('group').')',
'label' => $group,
'value' => array(
'shareType' => OCP\Share::SHARE_TYPE_GROUP,
'shareWith' => $group

View File

@ -48,3 +48,8 @@
.ie8 .oc-dialog {
border: 1px solid #888888;
}
/* IE8 doesn't support transparent background - let's emulate black with an opacity of .3 on a dark blue background*/
.ie8 fieldset .warning, .ie8 #body-login .error {
background-color: #1B314D;
}

View File

@ -58,7 +58,9 @@ button, .button,
}
input[type="hidden"] { height:0; width:0; }
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea {
background:#f8f8f8; color:#555; cursor:text;
background: #fff;
color: #555;
cursor: text;
font-family: inherit; /* use default ownCloud font instead of default textarea monospace */
}
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"] {
@ -72,7 +74,7 @@ input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:act
input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active,
input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active,
textarea:hover, textarea:focus, textarea:active {
background-color:#fff; color:#333;
color: #333;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1;
}
input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; }
@ -798,7 +800,8 @@ div.crumb {
background: url('../img/breadcrumb.svg') no-repeat right center;
height: 44px;
}
div.crumb a {
div.crumb a,
div.crumb span {
position: relative;
top: 12px;
padding: 14px 24px 14px 17px;

View File

@ -203,7 +203,8 @@ OC.Share={
html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />';
html += '<ul id="shareWithList">';
html += '</ul>';
if (link) {
var linksAllowed = $('#allowShareWithLink').val() === 'yes';
if (link && linksAllowed) {
html += '<div id="link">';
html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share with link')+'</label>';
html += '<br />';
@ -290,12 +291,14 @@ OC.Share={
})
// customize internal _renderItem function to display groups and users differently
.data("ui-autocomplete")._renderItem = function( ul, item ) {
var insert = $( "<a>" ).text( item.label );
if(item.label.length > 8 && item.label.substr(item.label.length-8) === ' (group)') {
// current label is group - wrap "strong" element
insert = insert.wrapInner('<strong>');
var insert = $( "<a>" );
var text = (item.value.shareType == 1)? item.label + ' ('+t('core', 'group')+')' : item.label;
insert.text( text );
if(item.value.shareType == 1) {
insert = insert.wrapInner('<strong></strong>');
}
return $( "<li>" )
.addClass((item.value.shareType == 1)?'group':'user')
.append( insert )
.appendTo( ul );
};
@ -322,6 +325,9 @@ OC.Share={
});
},
addShareWith:function(shareType, shareWith, shareWithDisplayName, permissions, possiblePermissions, mailSend, collection) {
if (shareType === 1) {
shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'group') + ')';
}
if (!OC.Share.itemShares[shareType]) {
OC.Share.itemShares[shareType] = [];
}
@ -525,13 +531,13 @@ $(document).ready(function() {
});
$(document).on('click', '#dropdown .unshare', function() {
var li = $(this).parent();
var $li = $(this).closest('li');
var itemType = $('#dropdown').data('item-type');
var itemSource = $('#dropdown').data('item-source');
var shareType = $(li).data('share-type');
var shareWith = $(li).data('share-with');
var shareType = $li.data('share-type');
var shareWith = $li.data('share-with');
OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() {
$(li).remove();
$li.remove();
var index = OC.Share.itemShares[shareType].indexOf(shareWith);
OC.Share.itemShares[shareType].splice(index, 1);
OC.Share.updateIcon(itemType, itemSource);
@ -543,8 +549,8 @@ $(document).ready(function() {
});
$(document).on('change', '#dropdown .permissions', function() {
var li = $(this).closest('li');
if ($(this).attr('name') == 'edit') {
var li = $(this).parent().parent();
var checkboxes = $('.permissions', li);
var checked = $(this).is(':checked');
// Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck
@ -552,7 +558,6 @@ $(document).ready(function() {
$(checkboxes).filter('input[name="update"]').attr('checked', checked);
$(checkboxes).filter('input[name="delete"]').attr('checked', checked);
} else {
var li = $(this).parent().parent().parent();
var checkboxes = $('.permissions', li);
// Uncheck Edit if Create, Update, and Delete are not checked
if (!$(this).is(':checked')
@ -575,8 +580,8 @@ $(document).ready(function() {
});
OC.Share.setPermissions($('#dropdown').data('item-type'),
$('#dropdown').data('item-source'),
$(li).data('share-type'),
$(li).data('share-with'),
li.data('share-type'),
li.data('share-with'),
permissions);
});
@ -709,14 +714,14 @@ $(document).ready(function() {
var file = $('tr').filterAttr('data-id', String(itemSource)).data('file');
var email = $('#email').val();
if (email != '') {
$('#email').attr('disabled', "disabled");
$('#email').prop('disabled', true);
$('#email').val(t('core', 'Sending ...'));
$('#emailButton').attr('disabled', "disabled");
$('#emailButton').prop('disabled', true);
$.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");
$('#email').prop('disabled', false);
$('#emailButton').prop('disabled', false);
if (result && result.status == 'success') {
$('#email').css('font-weight', 'bold');
$('#email').animate({ fontWeight: 'normal' }, 2000, function() {
@ -730,7 +735,7 @@ $(document).ready(function() {
});
$(document).on('click', '#dropdown input[name=mailNotification]', function() {
var li = $(this).parent();
var $li = $(this).closest('li');
var itemType = $('#dropdown').data('item-type');
var itemSource = $('#dropdown').data('item-source');
var action = '';
@ -740,8 +745,8 @@ $(document).ready(function() {
action = 'informRecipientsDisabled';
}
var shareType = $(li).data('share-type');
var shareWith = $(li).data('share-with');
var shareType = $li.data('share-type');
var shareWith = $li.data('share-with');
$.post(OC.filePath('core', 'ajax', 'share.php'), {action: action, recipient: shareWith, shareType: shareType, itemSource: itemSource, itemType: itemType}, function(result) {
if (result.status !== 'success') {

View File

@ -96,8 +96,12 @@ $TRANSLATIONS = array(
"Email sent" => "Email envoyé",
"Warning" => "Attention",
"The object type is not specified." => "Le type d'objet n'est pas spécifié.",
"Enter new" => "Saisir un nouveau",
"Delete" => "Supprimer",
"Add" => "Ajouter",
"Edit tags" => "Modifier les balises",
"Error loading dialog template: {error}" => "Erreur de chargement du modèle de dialogue : {error}",
"No tags selected for deletion." => "Aucune balise sélectionnée pour la suppression.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La mise à jour a échoué. Veuillez signaler ce problème à la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">communauté ownCloud</a>.",
"The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.",
"%s password reset" => "Réinitialisation de votre mot de passe %s",
@ -118,6 +122,13 @@ $TRANSLATIONS = array(
"Apps" => "Applications",
"Admin" => "Administration",
"Help" => "Aide",
"Error loading tags" => "Erreur de chargement des balises.",
"Tag already exists" => "La balise existe déjà.",
"Error deleting tag(s)" => "Erreur de suppression de(s) balise(s)",
"Error tagging" => "Erreur lors de la mise en place de la balise",
"Error untagging" => "Erreur lors de la suppression de la balise",
"Error favoriting" => "Erreur lors de la mise en favori",
"Error unfavoriting" => "Erreur lors de la suppression des favoris",
"Access forbidden" => "Accès interdit",
"Cloud not found" => "Introuvable",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n",

View File

@ -96,6 +96,7 @@ $TRANSLATIONS = array(
"Email sent" => "Correo enviado",
"Warning" => "Aviso",
"The object type is not specified." => "Non se especificou o tipo de obxecto.",
"Enter new" => "Introduza o novo",
"Delete" => "Eliminar",
"Add" => "Engadir",
"Edit tags" => "Editar etiquetas",
@ -124,6 +125,10 @@ $TRANSLATIONS = array(
"Error loading tags" => "Produciuse un erro ao cargar as etiquetas",
"Tag already exists" => "Xa existe a etiqueta",
"Error deleting tag(s)" => "Produciuse un erro ao eliminar a(s) etiqueta(s)",
"Error tagging" => "Produciuse un erro ao etiquetar",
"Error untagging" => "Produciuse un erro ao eliminar a etiqueta",
"Error favoriting" => "Produciuse un erro ao marcar como favorito",
"Error unfavoriting" => "Produciuse un erro ao desmarcar como favorito",
"Access forbidden" => "Acceso denegado",
"Cloud not found" => "Nube non atopada",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n",

View File

@ -1,6 +1,7 @@
<?php
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s megosztotta Önnel ezt: »%s«",
"Couldn't send mail to following users: %s " => "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s",
"group" => "csoport",
"Turned on maintenance mode" => "A karbantartási mód bekapcsolva",
"Turned off maintenance mode" => "A karbantartási mód kikapcsolva",
@ -34,13 +35,13 @@ $TRANSLATIONS = array(
"December" => "december",
"Settings" => "Beállítások",
"seconds ago" => "pár másodperce",
"_%n minute ago_::_%n minutes ago_" => array("",""),
"_%n hour ago_::_%n hours ago_" => array("",""),
"_%n minute ago_::_%n minutes ago_" => array("%n perccel ezelőtt","%n perccel ezelőtt"),
"_%n hour ago_::_%n hours ago_" => array("%n órával ezelőtt","%n órával ezelőtt"),
"today" => "ma",
"yesterday" => "tegnap",
"_%n day ago_::_%n days ago_" => array("",""),
"_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"),
"last month" => "múlt hónapban",
"_%n month ago_::_%n months ago_" => array("",""),
"_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"),
"months ago" => "több hónapja",
"last year" => "tavaly",
"years ago" => "több éve",
@ -50,7 +51,7 @@ $TRANSLATIONS = array(
"No" => "Nem",
"Ok" => "Ok",
"Error loading message template: {error}" => "Nem sikerült betölteni az üzenet sablont: {error}",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"_{count} file conflict_::_{count} file conflicts_" => array("{count} fájl ütközik","{count} fájl ütközik"),
"One file conflict" => "Egy file ütközik",
"Which files do you want to keep?" => "Melyik file-okat akarod megtartani?",
"If you select both versions, the copied file will have a number added to its name." => "Ha kiválasztod mindazokaz a verziókat, a másolt fileok neve sorszámozva lesz.",
@ -81,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal",
"Shared in {item} with {user}" => "Megosztva {item}-ben {user}-rel",
"Unshare" => "A megosztás visszavonása",
"notify user by email" => "felhasználó értesítése e-mailben",
"can edit" => "módosíthat",
"access control" => "jogosultság",
"create" => "létrehoz",
@ -94,8 +96,12 @@ $TRANSLATIONS = array(
"Email sent" => "Az emailt elküldtük",
"Warning" => "Figyelmeztetés",
"The object type is not specified." => "Az objektum típusa nincs megadva.",
"Enter new" => "Új beírása",
"Delete" => "Törlés",
"Add" => "Hozzáadás",
"Edit tags" => "Címkék szerkesztése",
"Error loading dialog template: {error}" => "Hiba a párbeszédpanel-sablon betöltésekor: {error}",
"No tags selected for deletion." => "Nincs törlésre kijelölt címke.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>.",
"The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.",
"%s password reset" => "%s jelszó visszaállítás",
@ -116,8 +122,18 @@ $TRANSLATIONS = array(
"Apps" => "Alkalmazások",
"Admin" => "Adminsztráció",
"Help" => "Súgó",
"Error loading tags" => "Hiba a címkék betöltésekor",
"Tag already exists" => "A címke már létezik",
"Error deleting tag(s)" => "Hiba a címkék törlésekor",
"Error tagging" => "Hiba a címkézéskor",
"Error untagging" => "Hiba a címkék eltávolításakor",
"Error favoriting" => "Hiba a kedvencekhez adáskor",
"Error unfavoriting" => "Hiba a kedvencekből törléskor",
"Access forbidden" => "A hozzáférés nem engedélyezett",
"Cloud not found" => "A felhő nem található",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n",
"The share will expire on %s.\n\n" => "A megosztás ekkor jár le: %s\\n\n\\n",
"Cheers!" => "Üdv.",
"Security Warning" => "Biztonsági figyelmeztetés",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az %s szolgáltatása.",
@ -136,15 +152,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Az adatbázis táblázattér (tablespace)",
"Database host" => "Adatbázis szerver",
"Finish setup" => "A beállítások befejezése",
"Finishing …" => "Befejezés ...",
"%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.",
"Log out" => "Kilépés",
"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!",
"If you did not change your password recently, your account may be compromised!" => "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!",
"Please change your password to secure your account again." => "A biztonsága érdekében változtassa meg a jelszavát!",
"Server side authentication failed!" => "A szerveroldali hitelesítés sikertelen!",
"Please contact your administrator." => "Kérjük, lépjen kapcsolatba a rendszergazdával.",
"Lost your password?" => "Elfelejtette a jelszavát?",
"remember" => "emlékezzen",
"Log in" => "Bejelentkezés",
"Alternative Logins" => "Alternatív bejelentkezés",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Szia!<br><br>Értesítünk, hogy %s megosztotta veled a következőt: »%s«.<br><a href=\"%s\">Ide kattintva tudod megnézni</a><br><br>",
"The share will expire on %s.<br><br>" => "A megosztás ekkor jár le: %s<br><br>",
"Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -96,8 +96,12 @@ $TRANSLATIONS = array(
"Email sent" => "Messaggio inviato",
"Warning" => "Avviso",
"The object type is not specified." => "Il tipo di oggetto non è specificato.",
"Enter new" => "Inserisci nuovo",
"Delete" => "Elimina",
"Add" => "Aggiungi",
"Edit tags" => "Modifica etichette",
"Error loading dialog template: {error}" => "Errore durante il caricamento del modello di finestra: {error}",
"No tags selected for deletion." => "Nessuna etichetta selezionata per l'eliminazione.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "L'aggiornamento non è riuscito. Segnala il problema alla <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunità di ownCloud</a>.",
"The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.",
"%s password reset" => "Ripristino password di %s",
@ -118,6 +122,13 @@ $TRANSLATIONS = array(
"Apps" => "Applicazioni",
"Admin" => "Admin",
"Help" => "Aiuto",
"Error loading tags" => "Errore di caricamento delle etichette",
"Tag already exists" => "L'etichetta esiste già",
"Error deleting tag(s)" => "Errore di eliminazione delle etichette",
"Error tagging" => "Errore di assegnazione delle etichette",
"Error untagging" => "Errore di rimozione delle etichette",
"Error favoriting" => "Errore di creazione dei preferiti",
"Error unfavoriting" => "Errore di rimozione dai preferiti",
"Access forbidden" => "Accesso negato",
"Cloud not found" => "Nuvola non trovata",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n",
@ -147,6 +158,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Accesso automatico rifiutato.",
"If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.",
"Please change your password to secure your account again." => "Cambia la password per rendere nuovamente sicuro il tuo account.",
"Server side authentication failed!" => "Autenticazione lato server non riuscita!",
"Please contact your administrator." => "Contatta il tuo amministratore di sistema.",
"Lost your password?" => "Hai perso la password?",
"remember" => "ricorda",
"Log in" => "Accedi",

View File

@ -100,6 +100,7 @@ $TRANSLATIONS = array(
"Delete" => "削除",
"Add" => "追加",
"Edit tags" => "タグを編集",
"Error loading dialog template: {error}" => "メッセージテンプレートの読み込みエラー: {error}",
"No tags selected for deletion." => "削除するタグが選択されていません。",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "更新に成功しました。この問題を <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a> にレポートしてください。",
"The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。",
@ -126,9 +127,13 @@ $TRANSLATIONS = array(
"Error deleting tag(s)" => "タグの削除エラー",
"Error tagging" => "タグの付与エラー",
"Error untagging" => "タグの解除エラー",
"Error favoriting" => "お気に入りに追加エラー",
"Error unfavoriting" => "お気に入りから削除エラー",
"Access forbidden" => "アクセスが禁止されています",
"Cloud not found" => "見つかりません",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n",
"The share will expire on %s.\n\n" => "共有は %s で有効期限が切れます。\n\n",
"Cheers!" => "それでは!",
"Security Warning" => "セキュリティ警告",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。",
"Please update your PHP installation to use %s securely." => "%s を安全に利用する為に インストールされているPHPをアップデートしてください。",
@ -159,6 +164,7 @@ $TRANSLATIONS = array(
"remember" => "パスワードを記憶する",
"Log in" => "ログイン",
"Alternative Logins" => "代替ログイン",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"The share will expire on %s.<br><br>" => "共有は %s で有効期限が切れます。<br><br>",
"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。"
);

View File

@ -96,8 +96,12 @@ $TRANSLATIONS = array(
"Email sent" => "E-mail verzonden",
"Warning" => "Waarschuwing",
"The object type is not specified." => "Het object type is niet gespecificeerd.",
"Enter new" => "Opgeven nieuw",
"Delete" => "Verwijder",
"Add" => "Toevoegen",
"Edit tags" => "Bewerken tags",
"Error loading dialog template: {error}" => "Fout bij laden dialoog sjabloon: {error}",
"No tags selected for deletion." => "Geen tags geselecteerd voor verwijdering.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "De update is niet geslaagd. Meld dit probleem aan bij de <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.",
"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.",
"%s password reset" => "%s wachtwoord reset",
@ -118,6 +122,13 @@ $TRANSLATIONS = array(
"Apps" => "Apps",
"Admin" => "Beheerder",
"Help" => "Help",
"Error loading tags" => "Fout bij laden tags",
"Tag already exists" => "Tag bestaat al",
"Error deleting tag(s)" => "Fout bij verwijderen tag(s)",
"Error tagging" => "Fout bij taggen",
"Error untagging" => "Fout bij ont-taggen",
"Error favoriting" => "Fout bij favoriet maken",
"Error unfavoriting" => "Fout bij verwijderen favorietstatus",
"Access forbidden" => "Toegang verboden",
"Cloud not found" => "Cloud niet gevonden",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n",

View File

@ -50,6 +50,9 @@ $TRANSLATIONS = array(
"Error loading message template: {error}" => "Erro ao carregar o template: {error}",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Cancelar",
"Continue" => "Continuar",
"(all selected)" => "(todos seleccionados)",
"({count} selected)" => "({count} seleccionados)",
"Shared" => "Partilhado",
"Share" => "Partilhar",
"Error" => "Erro",
@ -72,6 +75,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Não é permitido partilhar de novo",
"Shared in {item} with {user}" => "Partilhado em {item} com {user}",
"Unshare" => "Deixar de partilhar",
"notify user by email" => "notificar utilizador por correio electrónico",
"can edit" => "pode editar",
"access control" => "Controlo de acesso",
"create" => "criar",
@ -127,6 +131,7 @@ $TRANSLATIONS = array(
"Database tablespace" => "Tablespace da base de dados",
"Database host" => "Anfitrião da base de dados",
"Finish setup" => "Acabar instalação",
"Finishing …" => "A terminar...",
"%s is available. Get more information on how to update." => "%s está disponível. Tenha mais informações como actualizar.",
"Log out" => "Sair",
"Automatic logon rejected!" => "Login automático rejeitado!",

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

@ -0,0 +1,18 @@
<?php
$TRANSLATIONS = array(
"Settings" => "Настройки",
"_%n minute ago_::_%n minutes ago_" => array("","",""),
"_%n hour ago_::_%n hours ago_" => array("","",""),
"_%n day ago_::_%n days ago_" => array("","",""),
"_%n month ago_::_%n months ago_" => array("","",""),
"Yes" => "Да",
"No" => "Нет",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Отмена",
"Share" => "Сделать общим",
"Error" => "Ошибка",
"Password" => "Пароль",
"Warning" => "Предупреждение",
"Username" => "Имя пользователя"
);
$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);";

View File

@ -1,6 +1,7 @@
<?php
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s s Vami zdieľa »%s«",
"Couldn't send mail to following users: %s " => "Nebolo možné odoslať email týmto používateľom: %s ",
"group" => "skupina",
"Turned on maintenance mode" => "Mód údržby zapnutý",
"Turned off maintenance mode" => "Mód údržby vypnutý",
@ -8,6 +9,11 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualizácia \"filecache\", toto môže trvať dlhšie...",
"Updated filecache" => "\"Filecache\" aktualizovaná",
"... %d%% done ..." => "... %d%% dokončených ...",
"No image or file provided" => "Obrázok alebo súbor nebol zadaný",
"Unknown filetype" => "Neznámy typ súboru",
"Invalid image" => "Chybný obrázok",
"No temporary profile picture available, try again" => "Dočasný profilový obrázok nie je k dispozícii, skúste to znovu",
"No crop data provided" => "Dáta pre orezanie neboli zadané",
"Sunday" => "Nedeľa",
"Monday" => "Pondelok",
"Tuesday" => "Utorok",
@ -40,11 +46,19 @@ $TRANSLATIONS = array(
"last year" => "minulý rok",
"years ago" => "pred rokmi",
"Choose" => "Výber",
"Error loading file picker template: {error}" => "Chyba pri nahrávaní šablóny výberu súborov: {error}",
"Yes" => "Áno",
"No" => "Nie",
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Error loading message template: {error}" => "Chyba pri nahrávaní šablóny správy: {error}",
"_{count} file conflict_::_{count} file conflicts_" => array("{count} konflikt súboru","{count} konflikty súboru","{count} konfliktov súboru"),
"One file conflict" => "Jeden konflikt súboru",
"Which files do you want to keep?" => "Ktoré súbory chcete ponechať?",
"If you select both versions, the copied file will have a number added to its name." => "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo.",
"Cancel" => "Zrušiť",
"Continue" => "Pokračovať",
"(all selected)" => "(všetko vybrané)",
"({count} selected)" => "({count} vybraných)",
"Shared" => "Zdieľané",
"Share" => "Zdieľať",
"Error" => "Chyba",
@ -67,6 +81,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Zdieľanie už zdieľanej položky nie je povolené",
"Shared in {item} with {user}" => "Zdieľané v {item} s {user}",
"Unshare" => "Zrušiť zdieľanie",
"notify user by email" => "upozorniť používateľa emailom",
"can edit" => "môže upraviť",
"access control" => "prístupové práva",
"create" => "vytvoriť",
@ -80,8 +95,12 @@ $TRANSLATIONS = array(
"Email sent" => "Email odoslaný",
"Warning" => "Varovanie",
"The object type is not specified." => "Nešpecifikovaný typ objektu.",
"Enter new" => "Zadať nový",
"Delete" => "Zmazať",
"Add" => "Pridať",
"Edit tags" => "Upraviť štítky",
"Error loading dialog template: {error}" => "Chyba pri načítaní šablóny dialógu: {error}",
"No tags selected for deletion." => "Nie sú vybraté štítky na zmazanie.",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizácia nebola úspešná. Problém nahláste na <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.",
"The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.",
"%s password reset" => "reset hesla %s",
@ -102,8 +121,18 @@ $TRANSLATIONS = array(
"Apps" => "Aplikácie",
"Admin" => "Administrátor",
"Help" => "Pomoc",
"Error loading tags" => "Chyba pri načítaní štítkov",
"Tag already exists" => "Štítok už existuje",
"Error deleting tag(s)" => "Chyba pri mazaní štítka(ov)",
"Error tagging" => "Chyba pri pridaní štítka",
"Error untagging" => "Chyba pri odobratí štítka",
"Error favoriting" => "Chyba pri pridaní do obľúbených",
"Error unfavoriting" => "Chyba pri odobratí z obľúbených",
"Access forbidden" => "Prístup odmietnutý",
"Cloud not found" => "Nenájdené",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n",
"The share will expire on %s.\n\n" => "Zdieľanie vyexpiruje %s.\n\n",
"Cheers!" => "Za zdravie!",
"Security Warning" => "Bezpečnostné varovanie",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s.",
@ -122,15 +151,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Tabuľkový priestor databázy",
"Database host" => "Server databázy",
"Finish setup" => "Dokončiť inštaláciu",
"Finishing …" => "Dokončujem...",
"%s is available. Get more information on how to update." => "%s je dostupná. Získajte viac informácií k postupu aktualizáce.",
"Log out" => "Odhlásiť",
"Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!",
"If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný.",
"Please change your password to secure your account again." => "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu",
"Server side authentication failed!" => "Autentifikácia na serveri zlyhala!",
"Please contact your administrator." => "Kontaktujte prosím vášho administrátora.",
"Lost your password?" => "Zabudli ste heslo?",
"remember" => "zapamätať",
"Log in" => "Prihlásiť sa",
"Alternative Logins" => "Alternatívne prihlasovanie",
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>" => "Ahoj,<br><br>chcem ti dať navedomie, že %s zdieľa »%s« s tebou.<br><a href=\"%s\">Zobrazenie tu!</a><br><br>",
"The share will expire on %s.<br><br>" => "Zdieľanie vyexpiruje %s.<br><br>",
"Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať."
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -96,6 +96,7 @@ $TRANSLATIONS = array(
"Email sent" => "E-post skickat",
"Warning" => "Varning",
"The object type is not specified." => "Objekttypen är inte specificerad.",
"Enter new" => "Skriv nytt",
"Delete" => "Radera",
"Add" => "Lägg till",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.",
@ -118,6 +119,7 @@ $TRANSLATIONS = array(
"Apps" => "Program",
"Admin" => "Admin",
"Help" => "Hjälp",
"Error favoriting" => "Fel favorisering",
"Access forbidden" => "Åtkomst förbjuden",
"Cloud not found" => "Hittade inget moln",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n\n",

View File

@ -39,7 +39,7 @@
<p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br>
<?php print_unescaped($l->t(
'For information how to properly configure your server, please see the <a href="%s" target="_blank">documentation</a>.',
$theme->getDocBaseUrl().'/server/5.0/admin_manual/installation.html'
link_to_docs('admin-install')
)); ?></p>
</fieldset>
<?php endif; ?>

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-09-16 11:33-0400\n"
"PO-Revision-Date: 2013-09-16 15:34+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@ -17,318 +17,321 @@ msgstr ""
"Language: ach\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: app.php:239
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: app.php:250
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: app.php:361
#: private/app.php:359
msgid "Help"
msgstr ""
#: app.php:374
#: private/app.php:372
msgid "Personal"
msgstr ""
#: app.php:385
#: private/app.php:383
msgid "Settings"
msgstr ""
#: app.php:397
#: private/app.php:395
msgid "Users"
msgstr ""
#: app.php:410
#: private/app.php:408
msgid "Admin"
msgstr ""
#: app.php:839
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""
#: defaults.php:35
#: private/defaults.php:36
msgid "web services under your control"
msgstr ""
#: files.php:66 files.php:98
#: private/files.php:66 private/files.php:98
#, php-format
msgid "cannot open \"%s\""
msgstr ""
#: files.php:226
#: private/files.php:226
msgid "ZIP download is turned off."
msgstr ""
#: files.php:227
#: private/files.php:227
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:228 files.php:256
#: private/files.php:228 private/files.php:256
msgid "Back to Files"
msgstr ""
#: files.php:253
#: private/files.php:253
msgid "Selected files too large to generate zip file."
msgstr ""
#: files.php:254
#: private/files.php:254
msgid ""
"Download the files in smaller chunks, seperately or kindly ask your "
"administrator."
msgstr ""
#: installer.php:63
#: private/installer.php:63
msgid "No source specified when installing app"
msgstr ""
#: installer.php:70
#: private/installer.php:70
msgid "No href specified when installing app from http"
msgstr ""
#: installer.php:75
#: private/installer.php:75
msgid "No path specified when installing app from local file"
msgstr ""
#: installer.php:89
#: private/installer.php:89
#, php-format
msgid "Archives of type %s are not supported"
msgstr ""
#: installer.php:103
#: private/installer.php:103
msgid "Failed to open archive when installing app"
msgstr ""
#: installer.php:125
#: private/installer.php:125
msgid "App does not provide an info.xml file"
msgstr ""
#: installer.php:131
#: private/installer.php:131
msgid "App can't be installed because of not allowed code in the App"
msgstr ""
#: installer.php:140
#: private/installer.php:140
msgid ""
"App can't be installed because it is not compatible with this version of "
"ownCloud"
msgstr ""
#: installer.php:146
#: private/installer.php:146
msgid ""
"App can't be installed because it contains the <shipped>true</shipped> tag "
"which is not allowed for non shipped apps"
msgstr ""
#: installer.php:152
#: private/installer.php:152
msgid ""
"App can't be installed because the version in info.xml/version is not the "
"same as the version reported from the app store"
msgstr ""
#: installer.php:162
#: private/installer.php:162
msgid "App directory already exists"
msgstr ""
#: installer.php:175
#: private/installer.php:175
#, php-format
msgid "Can't create app folder. Please fix permissions. %s"
msgstr ""
#: json.php:28
#: private/json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:62 json.php:73
#: private/json.php:39 private/json.php:62 private/json.php:73
msgid "Authentication error"
msgstr ""
#: json.php:51
#: private/json.php:51
msgid "Token expired. Please reload page."
msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35
#: private/search/provider/file.php:18 private/search/provider/file.php:36
msgid "Files"
msgstr ""
#: search/provider/file.php:26 search/provider/file.php:33
#: private/search/provider/file.php:27 private/search/provider/file.php:34
msgid "Text"
msgstr ""
#: search/provider/file.php:29
#: private/search/provider/file.php:30
msgid "Images"
msgstr ""
#: setup/abstractdatabase.php:22
#: private/setup/abstractdatabase.php:22
#, php-format
msgid "%s enter the database username."
msgstr ""
#: setup/abstractdatabase.php:25
#: private/setup/abstractdatabase.php:25
#, php-format
msgid "%s enter the database name."
msgstr ""
#: setup/abstractdatabase.php:28
#: private/setup/abstractdatabase.php:28
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
#: setup/mssql.php:20
#: private/setup/mssql.php:20
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114
#: setup/postgresql.php:24 setup/postgresql.php:70
#: private/setup/mssql.php:21 private/setup/mysql.php:13
#: private/setup/oci.php:114 private/setup/postgresql.php:24
#: private/setup/postgresql.php:70
msgid "You need to enter either an existing account or the administrator."
msgstr ""
#: setup/mysql.php:12
#: private/setup/mysql.php:12
msgid "MySQL username and/or password not valid"
msgstr ""
#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147
#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181
#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204
#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115
#: setup/postgresql.php:125 setup/postgresql.php:134
#: private/setup/mysql.php:67 private/setup/oci.php:54
#: private/setup/oci.php:121 private/setup/oci.php:147
#: private/setup/oci.php:154 private/setup/oci.php:165
#: private/setup/oci.php:172 private/setup/oci.php:181
#: private/setup/oci.php:189 private/setup/oci.php:198
#: private/setup/oci.php:204 private/setup/postgresql.php:89
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148
#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190
#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99
#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135
#: private/setup/mysql.php:68 private/setup/oci.php:55
#: private/setup/oci.php:122 private/setup/oci.php:148
#: private/setup/oci.php:155 private/setup/oci.php:166
#: private/setup/oci.php:182 private/setup/oci.php:190
#: private/setup/oci.php:199 private/setup/postgresql.php:90
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
#: setup/mysql.php:85
#: private/setup/mysql.php:85
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
#: setup/mysql.php:86
#: private/setup/mysql.php:86
msgid "Drop this user from MySQL"
msgstr ""
#: setup/mysql.php:91
#: private/setup/mysql.php:91
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
#: setup/mysql.php:92
#: private/setup/mysql.php:92
msgid "Drop this user from MySQL."
msgstr ""
#: setup/oci.php:34
#: private/setup/oci.php:34
msgid "Oracle connection could not be established"
msgstr ""
#: setup/oci.php:41 setup/oci.php:113
#: private/setup/oci.php:41 private/setup/oci.php:113
msgid "Oracle username and/or password not valid"
msgstr ""
#: setup/oci.php:173 setup/oci.php:205
#: private/setup/oci.php:173 private/setup/oci.php:205
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
#: setup/postgresql.php:23 setup/postgresql.php:69
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:28
#: private/setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:31
#: private/setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:184
#: private/setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:185
#: private/setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template/functions.php:96
#: private/tags.php:194
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
#: private/template/functions.php:122
msgid "seconds ago"
msgstr ""
#: template/functions.php:97
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:98
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:99
#: private/template/functions.php:125
msgid "today"
msgstr ""
#: template/functions.php:100
#: private/template/functions.php:126
msgid "yesterday"
msgstr ""
#: template/functions.php:101
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:102
#: private/template/functions.php:130
msgid "last month"
msgstr ""
#: template/functions.php:103
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:104
#: private/template/functions.php:133
msgid "last year"
msgstr ""
#: template/functions.php:105
#: private/template/functions.php:134
msgid "years ago"
msgstr ""
#: template.php:297
#: private/template.php:297
msgid "Caused by:"
msgstr ""
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-05 15:12+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
"MIME-Version: 1.0\n"
@ -157,15 +157,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr ""
@ -181,32 +181,32 @@ msgstr ""
msgid "Unable to remove user"
msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:90
#: js/users.js:95 templates/users.php:26 templates/users.php:90
#: templates/users.php:118
msgid "Groups"
msgstr ""
#: js/users.js:97 templates/users.php:92 templates/users.php:130
#: js/users.js:100 templates/users.php:92 templates/users.php:130
msgid "Group Admin"
msgstr ""
#: js/users.js:120 templates/users.php:170
#: js/users.js:123 templates/users.php:170
msgid "Delete"
msgstr ""
#: js/users.js:277
#: js/users.js:280
msgid "add group"
msgstr ""
#: js/users.js:436
#: js/users.js:442
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:437 js/users.js:443 js/users.js:458
#: js/users.js:443 js/users.js:449 js/users.js:464
msgid "Error creating user"
msgstr ""
#: js/users.js:442
#: js/users.js:448
msgid "A valid password must be provided"
msgstr ""
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -384,11 +384,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -527,34 +527,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-07 12:17-0400\n"
"PO-Revision-Date: 2013-10-07 15:03+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@ -17,51 +17,47 @@ msgstr ""
"Language: ady\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr ""
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr ""
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr ""
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr ""
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr ""
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-07 12:17-0400\n"
"PO-Revision-Date: 2013-10-07 15:03+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
"MIME-Version: 1.0\n"
@ -157,15 +157,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr ""
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -384,11 +384,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -527,34 +527,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -17,51 +17,47 @@ msgstr ""
"Language: af_ZA\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Hulp"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Persoonlik"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Instellings"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Gebruikers"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Admin"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-05 15:12+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
"MIME-Version: 1.0\n"
@ -157,15 +157,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr ""
@ -181,32 +181,32 @@ msgstr ""
msgid "Unable to remove user"
msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:90
#: js/users.js:95 templates/users.php:26 templates/users.php:90
#: templates/users.php:118
msgid "Groups"
msgstr ""
#: js/users.js:97 templates/users.php:92 templates/users.php:130
#: js/users.js:100 templates/users.php:92 templates/users.php:130
msgid "Group Admin"
msgstr ""
#: js/users.js:120 templates/users.php:170
#: js/users.js:123 templates/users.php:170
msgid "Delete"
msgstr ""
#: js/users.js:277
#: js/users.js:280
msgid "add group"
msgstr ""
#: js/users.js:436
#: js/users.js:442
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:437 js/users.js:443 js/users.js:458
#: js/users.js:443 js/users.js:449 js/users.js:464
msgid "Error creating user"
msgstr ""
#: js/users.js:442
#: js/users.js:448
msgid "A valid password must be provided"
msgstr ""
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -384,11 +384,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -527,34 +527,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr "إلغاء رفع الملفات"
#: templates/public.php:91
msgid "No preview available for"
msgstr "لا يوجد عرض مسبق لـ"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -17,51 +17,47 @@ msgstr ""
"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"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "المساعدة"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "شخصي"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "إعدادات"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "المستخدمين"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "المدير"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -287,12 +287,12 @@ msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميل
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-09-16 11:33-0400\n"
"PO-Revision-Date: 2013-09-16 15:34+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n"
@ -17,270 +17,278 @@ msgstr ""
"Language: be\n"
"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);\n"
#: app.php:239
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: app.php:250
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: app.php:361
#: private/app.php:359
msgid "Help"
msgstr ""
#: app.php:374
#: private/app.php:372
msgid "Personal"
msgstr ""
#: app.php:385
#: private/app.php:383
msgid "Settings"
msgstr ""
#: app.php:397
#: private/app.php:395
msgid "Users"
msgstr ""
#: app.php:410
#: private/app.php:408
msgid "Admin"
msgstr ""
#: app.php:839
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""
#: defaults.php:35
#: private/defaults.php:36
msgid "web services under your control"
msgstr ""
#: files.php:66 files.php:98
#: private/files.php:66 private/files.php:98
#, php-format
msgid "cannot open \"%s\""
msgstr ""
#: files.php:226
#: private/files.php:226
msgid "ZIP download is turned off."
msgstr ""
#: files.php:227
#: private/files.php:227
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:228 files.php:256
#: private/files.php:228 private/files.php:256
msgid "Back to Files"
msgstr ""
#: files.php:253
#: private/files.php:253
msgid "Selected files too large to generate zip file."
msgstr ""
#: files.php:254
#: private/files.php:254
msgid ""
"Download the files in smaller chunks, seperately or kindly ask your "
"administrator."
msgstr ""
#: installer.php:63
#: private/installer.php:63
msgid "No source specified when installing app"
msgstr ""
#: installer.php:70
#: private/installer.php:70
msgid "No href specified when installing app from http"
msgstr ""
#: installer.php:75
#: private/installer.php:75
msgid "No path specified when installing app from local file"
msgstr ""
#: installer.php:89
#: private/installer.php:89
#, php-format
msgid "Archives of type %s are not supported"
msgstr ""
#: installer.php:103
#: private/installer.php:103
msgid "Failed to open archive when installing app"
msgstr ""
#: installer.php:125
#: private/installer.php:125
msgid "App does not provide an info.xml file"
msgstr ""
#: installer.php:131
#: private/installer.php:131
msgid "App can't be installed because of not allowed code in the App"
msgstr ""
#: installer.php:140
#: private/installer.php:140
msgid ""
"App can't be installed because it is not compatible with this version of "
"ownCloud"
msgstr ""
#: installer.php:146
#: private/installer.php:146
msgid ""
"App can't be installed because it contains the <shipped>true</shipped> tag "
"which is not allowed for non shipped apps"
msgstr ""
#: installer.php:152
#: private/installer.php:152
msgid ""
"App can't be installed because the version in info.xml/version is not the "
"same as the version reported from the app store"
msgstr ""
#: installer.php:162
#: private/installer.php:162
msgid "App directory already exists"
msgstr ""
#: installer.php:175
#: private/installer.php:175
#, php-format
msgid "Can't create app folder. Please fix permissions. %s"
msgstr ""
#: json.php:28
#: private/json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:62 json.php:73
#: private/json.php:39 private/json.php:62 private/json.php:73
msgid "Authentication error"
msgstr ""
#: json.php:51
#: private/json.php:51
msgid "Token expired. Please reload page."
msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35
#: private/search/provider/file.php:18 private/search/provider/file.php:36
msgid "Files"
msgstr ""
#: search/provider/file.php:26 search/provider/file.php:33
#: private/search/provider/file.php:27 private/search/provider/file.php:34
msgid "Text"
msgstr ""
#: search/provider/file.php:29
#: private/search/provider/file.php:30
msgid "Images"
msgstr ""
#: setup/abstractdatabase.php:22
#: private/setup/abstractdatabase.php:22
#, php-format
msgid "%s enter the database username."
msgstr ""
#: setup/abstractdatabase.php:25
#: private/setup/abstractdatabase.php:25
#, php-format
msgid "%s enter the database name."
msgstr ""
#: setup/abstractdatabase.php:28
#: private/setup/abstractdatabase.php:28
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
#: setup/mssql.php:20
#: private/setup/mssql.php:20
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114
#: setup/postgresql.php:24 setup/postgresql.php:70
#: private/setup/mssql.php:21 private/setup/mysql.php:13
#: private/setup/oci.php:114 private/setup/postgresql.php:24
#: private/setup/postgresql.php:70
msgid "You need to enter either an existing account or the administrator."
msgstr ""
#: setup/mysql.php:12
#: private/setup/mysql.php:12
msgid "MySQL username and/or password not valid"
msgstr ""
#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147
#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181
#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204
#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115
#: setup/postgresql.php:125 setup/postgresql.php:134
#: private/setup/mysql.php:67 private/setup/oci.php:54
#: private/setup/oci.php:121 private/setup/oci.php:147
#: private/setup/oci.php:154 private/setup/oci.php:165
#: private/setup/oci.php:172 private/setup/oci.php:181
#: private/setup/oci.php:189 private/setup/oci.php:198
#: private/setup/oci.php:204 private/setup/postgresql.php:89
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148
#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190
#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99
#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135
#: private/setup/mysql.php:68 private/setup/oci.php:55
#: private/setup/oci.php:122 private/setup/oci.php:148
#: private/setup/oci.php:155 private/setup/oci.php:166
#: private/setup/oci.php:182 private/setup/oci.php:190
#: private/setup/oci.php:199 private/setup/postgresql.php:90
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
#: setup/mysql.php:85
#: private/setup/mysql.php:85
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
#: setup/mysql.php:86
#: private/setup/mysql.php:86
msgid "Drop this user from MySQL"
msgstr ""
#: setup/mysql.php:91
#: private/setup/mysql.php:91
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
#: setup/mysql.php:92
#: private/setup/mysql.php:92
msgid "Drop this user from MySQL."
msgstr ""
#: setup/oci.php:34
#: private/setup/oci.php:34
msgid "Oracle connection could not be established"
msgstr ""
#: setup/oci.php:41 setup/oci.php:113
#: private/setup/oci.php:41 private/setup/oci.php:113
msgid "Oracle username and/or password not valid"
msgstr ""
#: setup/oci.php:173 setup/oci.php:205
#: private/setup/oci.php:173 private/setup/oci.php:205
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
#: setup/postgresql.php:23 setup/postgresql.php:69
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:28
#: private/setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:31
#: private/setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:184
#: private/setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:185
#: private/setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template/functions.php:96
#: private/tags.php:194
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
#: private/template/functions.php:122
msgid "seconds ago"
msgstr ""
#: template/functions.php:97
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
@ -288,7 +296,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: template/functions.php:98
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
@ -296,15 +304,15 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: template/functions.php:99
#: private/template/functions.php:125
msgid "today"
msgstr ""
#: template/functions.php:100
#: private/template/functions.php:126
msgid "yesterday"
msgstr ""
#: template/functions.php:101
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
@ -312,11 +320,11 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: template/functions.php:102
#: private/template/functions.php:130
msgid "last month"
msgstr ""
#: template/functions.php:103
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
@ -324,19 +332,14 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: template/functions.php:104
#: private/template/functions.php:133
msgid "last year"
msgstr ""
#: template/functions.php:105
#: private/template/functions.php:134
msgid "years ago"
msgstr ""
#: template.php:297
#: private/template.php:297
msgid "Caused by:"
msgstr ""
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-05 15:12+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
"MIME-Version: 1.0\n"
@ -157,15 +157,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr ""
@ -181,32 +181,32 @@ msgstr ""
msgid "Unable to remove user"
msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:90
#: js/users.js:95 templates/users.php:26 templates/users.php:90
#: templates/users.php:118
msgid "Groups"
msgstr ""
#: js/users.js:97 templates/users.php:92 templates/users.php:130
#: js/users.js:100 templates/users.php:92 templates/users.php:130
msgid "Group Admin"
msgstr ""
#: js/users.js:120 templates/users.php:170
#: js/users.js:123 templates/users.php:170
msgid "Delete"
msgstr ""
#: js/users.js:277
#: js/users.js:280
msgid "add group"
msgstr ""
#: js/users.js:436
#: js/users.js:442
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:437 js/users.js:443 js/users.js:458
#: js/users.js:443 js/users.js:449 js/users.js:464
msgid "Error creating user"
msgstr ""
#: js/users.js:442
#: js/users.js:448
msgid "A valid password must be provided"
msgstr ""
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -384,11 +384,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -527,34 +527,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr "Спри качването"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Няма наличен преглед за"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:20+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -18,51 +18,47 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Помощ"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Лични"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Настройки"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Потребители"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Админ"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr "আপলোড বাতিল কর"
#: templates/public.php:91
msgid "No preview available for"
msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:20+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -17,51 +17,47 @@ msgstr ""
"Language: bn_BD\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "সহায়িকা"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "ব্যক্তিগত"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "নিয়ামকসমূহ"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "ব্যবহারকারী"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "প্রশাসন"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-09-16 11:33-0400\n"
"PO-Revision-Date: 2013-09-16 15:34+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -17,322 +17,325 @@ msgstr ""
"Language: bs\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: app.php:239
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: app.php:250
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: app.php:361
#: private/app.php:359
msgid "Help"
msgstr ""
#: app.php:374
#: private/app.php:372
msgid "Personal"
msgstr ""
#: app.php:385
#: private/app.php:383
msgid "Settings"
msgstr ""
#: app.php:397
#: private/app.php:395
msgid "Users"
msgstr ""
#: app.php:410
#: private/app.php:408
msgid "Admin"
msgstr ""
#: app.php:839
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""
#: defaults.php:35
#: private/defaults.php:36
msgid "web services under your control"
msgstr ""
#: files.php:66 files.php:98
#: private/files.php:66 private/files.php:98
#, php-format
msgid "cannot open \"%s\""
msgstr ""
#: files.php:226
#: private/files.php:226
msgid "ZIP download is turned off."
msgstr ""
#: files.php:227
#: private/files.php:227
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:228 files.php:256
#: private/files.php:228 private/files.php:256
msgid "Back to Files"
msgstr ""
#: files.php:253
#: private/files.php:253
msgid "Selected files too large to generate zip file."
msgstr ""
#: files.php:254
#: private/files.php:254
msgid ""
"Download the files in smaller chunks, seperately or kindly ask your "
"administrator."
msgstr ""
#: installer.php:63
#: private/installer.php:63
msgid "No source specified when installing app"
msgstr ""
#: installer.php:70
#: private/installer.php:70
msgid "No href specified when installing app from http"
msgstr ""
#: installer.php:75
#: private/installer.php:75
msgid "No path specified when installing app from local file"
msgstr ""
#: installer.php:89
#: private/installer.php:89
#, php-format
msgid "Archives of type %s are not supported"
msgstr ""
#: installer.php:103
#: private/installer.php:103
msgid "Failed to open archive when installing app"
msgstr ""
#: installer.php:125
#: private/installer.php:125
msgid "App does not provide an info.xml file"
msgstr ""
#: installer.php:131
#: private/installer.php:131
msgid "App can't be installed because of not allowed code in the App"
msgstr ""
#: installer.php:140
#: private/installer.php:140
msgid ""
"App can't be installed because it is not compatible with this version of "
"ownCloud"
msgstr ""
#: installer.php:146
#: private/installer.php:146
msgid ""
"App can't be installed because it contains the <shipped>true</shipped> tag "
"which is not allowed for non shipped apps"
msgstr ""
#: installer.php:152
#: private/installer.php:152
msgid ""
"App can't be installed because the version in info.xml/version is not the "
"same as the version reported from the app store"
msgstr ""
#: installer.php:162
#: private/installer.php:162
msgid "App directory already exists"
msgstr ""
#: installer.php:175
#: private/installer.php:175
#, php-format
msgid "Can't create app folder. Please fix permissions. %s"
msgstr ""
#: json.php:28
#: private/json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:62 json.php:73
#: private/json.php:39 private/json.php:62 private/json.php:73
msgid "Authentication error"
msgstr ""
#: json.php:51
#: private/json.php:51
msgid "Token expired. Please reload page."
msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35
#: private/search/provider/file.php:18 private/search/provider/file.php:36
msgid "Files"
msgstr ""
#: search/provider/file.php:26 search/provider/file.php:33
#: private/search/provider/file.php:27 private/search/provider/file.php:34
msgid "Text"
msgstr ""
#: search/provider/file.php:29
#: private/search/provider/file.php:30
msgid "Images"
msgstr ""
#: setup/abstractdatabase.php:22
#: private/setup/abstractdatabase.php:22
#, php-format
msgid "%s enter the database username."
msgstr ""
#: setup/abstractdatabase.php:25
#: private/setup/abstractdatabase.php:25
#, php-format
msgid "%s enter the database name."
msgstr ""
#: setup/abstractdatabase.php:28
#: private/setup/abstractdatabase.php:28
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
#: setup/mssql.php:20
#: private/setup/mssql.php:20
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114
#: setup/postgresql.php:24 setup/postgresql.php:70
#: private/setup/mssql.php:21 private/setup/mysql.php:13
#: private/setup/oci.php:114 private/setup/postgresql.php:24
#: private/setup/postgresql.php:70
msgid "You need to enter either an existing account or the administrator."
msgstr ""
#: setup/mysql.php:12
#: private/setup/mysql.php:12
msgid "MySQL username and/or password not valid"
msgstr ""
#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147
#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181
#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204
#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115
#: setup/postgresql.php:125 setup/postgresql.php:134
#: private/setup/mysql.php:67 private/setup/oci.php:54
#: private/setup/oci.php:121 private/setup/oci.php:147
#: private/setup/oci.php:154 private/setup/oci.php:165
#: private/setup/oci.php:172 private/setup/oci.php:181
#: private/setup/oci.php:189 private/setup/oci.php:198
#: private/setup/oci.php:204 private/setup/postgresql.php:89
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148
#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190
#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99
#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135
#: private/setup/mysql.php:68 private/setup/oci.php:55
#: private/setup/oci.php:122 private/setup/oci.php:148
#: private/setup/oci.php:155 private/setup/oci.php:166
#: private/setup/oci.php:182 private/setup/oci.php:190
#: private/setup/oci.php:199 private/setup/postgresql.php:90
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
#: setup/mysql.php:85
#: private/setup/mysql.php:85
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
#: setup/mysql.php:86
#: private/setup/mysql.php:86
msgid "Drop this user from MySQL"
msgstr ""
#: setup/mysql.php:91
#: private/setup/mysql.php:91
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
#: setup/mysql.php:92
#: private/setup/mysql.php:92
msgid "Drop this user from MySQL."
msgstr ""
#: setup/oci.php:34
#: private/setup/oci.php:34
msgid "Oracle connection could not be established"
msgstr ""
#: setup/oci.php:41 setup/oci.php:113
#: private/setup/oci.php:41 private/setup/oci.php:113
msgid "Oracle username and/or password not valid"
msgstr ""
#: setup/oci.php:173 setup/oci.php:205
#: private/setup/oci.php:173 private/setup/oci.php:205
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
#: setup/postgresql.php:23 setup/postgresql.php:69
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:28
#: private/setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:31
#: private/setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:184
#: private/setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:185
#: private/setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template/functions.php:96
#: private/tags.php:194
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
#: private/template/functions.php:122
msgid "seconds ago"
msgstr ""
#: template/functions.php:97
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: template/functions.php:98
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: template/functions.php:99
#: private/template/functions.php:125
msgid "today"
msgstr ""
#: template/functions.php:100
#: private/template/functions.php:126
msgid "yesterday"
msgstr ""
#: template/functions.php:101
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: template/functions.php:102
#: private/template/functions.php:130
msgid "last month"
msgstr ""
#: template/functions.php:103
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: template/functions.php:104
#: private/template/functions.php:133
msgid "last year"
msgstr ""
#: template/functions.php:105
#: private/template/functions.php:134
msgid "years ago"
msgstr ""
#: template.php:297
#: private/template.php:297
msgid "Caused by:"
msgstr ""
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-05 15:12+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
"MIME-Version: 1.0\n"
@ -157,15 +157,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr "Spašavam..."
@ -181,32 +181,32 @@ msgstr ""
msgid "Unable to remove user"
msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:90
#: js/users.js:95 templates/users.php:26 templates/users.php:90
#: templates/users.php:118
msgid "Groups"
msgstr ""
#: js/users.js:97 templates/users.php:92 templates/users.php:130
#: js/users.js:100 templates/users.php:92 templates/users.php:130
msgid "Group Admin"
msgstr ""
#: js/users.js:120 templates/users.php:170
#: js/users.js:123 templates/users.php:170
msgid "Delete"
msgstr ""
#: js/users.js:277
#: js/users.js:280
msgid "add group"
msgstr ""
#: js/users.js:436
#: js/users.js:442
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:437 js/users.js:443 js/users.js:458
#: js/users.js:443 js/users.js:449 js/users.js:464
msgid "Error creating user"
msgstr ""
#: js/users.js:442
#: js/users.js:448
msgid "A valid password must be provided"
msgstr ""
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -384,11 +384,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -527,34 +527,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -79,3 +79,7 @@ msgstr "Cancel·la la pujada"
#: templates/public.php:91
msgid "No preview available for"
msgstr "No hi ha vista prèvia disponible per a"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:20+0000\n"
"Last-Translator: rogerc\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,47 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud."
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr "No heu especificat cap nom d'aplicació"
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Ajuda"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Personal"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Configuració"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Usuaris"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Administració"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Ha fallat l'actualització \"%s\"."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr "Les imatges de perfil personals encara no funcionen amb encriptació"
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr "Tipus de fitxer desconegut"
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr "Imatge no vàlida"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"Last-Translator: rogerc\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -289,13 +289,13 @@ msgstr "Executa una tasca per cada paquet carregat"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-15 21:35+0000\n"
"Last-Translator: pstast <petr@stastny.eu>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -79,3 +79,7 @@ msgstr "Zrušit odesílání"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Náhled není dostupný pro"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-15 19:46+0000\n"
"Last-Translator: pstast <petr@stastny.eu>\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -56,15 +56,11 @@ msgstr "Administrace"
msgid "Failed to upgrade \"%s\"."
msgstr "Selhala aktualizace verze \"%s\"."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr "Vlastní profilové obrázky zatím nefungují v kombinaci se šifrováním"
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr "Neznámý typ souboru"
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr "Chybný obrázek"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-15 20:10+0000\n"
"Last-Translator: pstast <petr@stastny.eu>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -291,13 +291,13 @@ msgstr "Spustit jednu úlohu s každým načtením stránky"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr "Diddymu llwytho i fyny"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Does dim rhagolwg ar gael ar gyfer"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@ -17,51 +17,47 @@ msgstr ""
"Language: cy_GB\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Cymorth"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Personol"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Gosodiadau"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Defnyddwyr"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Gweinyddu"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
"MIME-Version: 1.0\n"
@ -287,12 +287,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
@ -79,3 +79,7 @@ msgstr "Fortryd upload"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Forhåndsvisning ikke tilgængelig for"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"Last-Translator: Sappe\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,51 +20,47 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr "App'en \"%s\" kan ikke blive installeret, da den ikke er kompatibel med denne version af ownCloud."
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr "Intet app-navn angivet"
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Hjælp"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Personligt"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Indstillinger"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Brugere"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Admin"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Upgradering af \"%s\" fejlede"
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr "Personligt profilbillede virker endnu ikke sammen med kryptering"
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr "Ukendt filtype"
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr "Ugyldigt billede"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:42+0000\n"
"Last-Translator: Sappe\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -290,13 +290,13 @@ msgstr "Udføre en opgave med hver side indlæst"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Brug systemets cron service til at kalde cron.php filen en gang i minuttet"
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-13 20:29-0400\n"
"PO-Revision-Date: 2013-10-11 07:10+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -80,3 +80,7 @@ msgstr "Upload abbrechen"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Es ist keine Vorschau verfügbar für"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -11,61 +11,57 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:20+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"Language-Team: German <translations@owncloud.org>\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist."
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr "Es wurde kein Applikation-Name angegeben"
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Hilfe"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Persönlich"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Einstellungen"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Benutzer"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Administration"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Konnte \"%s\" nicht aktualisieren."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt"
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr "Unbekannter Dateityp"
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr "Ungültiges Bild"
@ -299,13 +295,13 @@ msgstr "Gerade eben"
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
msgstr[0] "Vor %n Minute"
msgstr[1] "Vor %n Minuten"
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
msgstr[0] "Vor %n Stunde"
msgstr[1] "Vor %n Stunden"
#: private/template/functions.php:125
@ -319,7 +315,7 @@ msgstr "Gestern"
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
msgstr[0] "Vor %n Tag"
msgstr[1] "Vor %n Tagen"
#: private/template/functions.php:130
@ -329,7 +325,7 @@ msgstr "Letzten Monat"
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
msgstr[0] "Vor %n Monat"
msgstr[1] "Vor %n Monaten"
#: private/template/functions.php:133

View File

@ -8,13 +8,14 @@
# ninov <ninovdl@ymail.com>, 2013
# Pwnicorn <pwnicorndev@gmail.com>, 2013
# Mirodin <blobbyjj@ymail.com>, 2013
# kabum <uu.kabum@gmail.com>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -245,7 +246,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d
#: templates/admin.php:33
#, php-format
msgid "Please double check the <a href=\"%s\">installation guides</a>."
msgstr "Bitte überprüfe die <a href=\"%s\">Instalationsanleitungen</a>."
msgstr "Bitte überprüfe die <a href=\"%s\">Installationsanleitungen</a>."
#: templates/admin.php:44
msgid "Module 'fileinfo' missing"
@ -292,13 +293,13 @@ msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Benutze den System-Crondienst um die cron.php minütlich aufzurufen."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@ -78,3 +78,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr ""
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-09-16 11:33-0400\n"
"PO-Revision-Date: 2013-09-16 15:34+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@ -17,318 +17,321 @@ msgstr ""
"Language: de_AT\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:239
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: app.php:250
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: app.php:361
#: private/app.php:359
msgid "Help"
msgstr ""
#: app.php:374
#: private/app.php:372
msgid "Personal"
msgstr ""
#: app.php:385
#: private/app.php:383
msgid "Settings"
msgstr ""
#: app.php:397
#: private/app.php:395
msgid "Users"
msgstr ""
#: app.php:410
#: private/app.php:408
msgid "Admin"
msgstr ""
#: app.php:839
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""
#: defaults.php:35
#: private/defaults.php:36
msgid "web services under your control"
msgstr ""
#: files.php:66 files.php:98
#: private/files.php:66 private/files.php:98
#, php-format
msgid "cannot open \"%s\""
msgstr ""
#: files.php:226
#: private/files.php:226
msgid "ZIP download is turned off."
msgstr ""
#: files.php:227
#: private/files.php:227
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:228 files.php:256
#: private/files.php:228 private/files.php:256
msgid "Back to Files"
msgstr ""
#: files.php:253
#: private/files.php:253
msgid "Selected files too large to generate zip file."
msgstr ""
#: files.php:254
#: private/files.php:254
msgid ""
"Download the files in smaller chunks, seperately or kindly ask your "
"administrator."
msgstr ""
#: installer.php:63
#: private/installer.php:63
msgid "No source specified when installing app"
msgstr ""
#: installer.php:70
#: private/installer.php:70
msgid "No href specified when installing app from http"
msgstr ""
#: installer.php:75
#: private/installer.php:75
msgid "No path specified when installing app from local file"
msgstr ""
#: installer.php:89
#: private/installer.php:89
#, php-format
msgid "Archives of type %s are not supported"
msgstr ""
#: installer.php:103
#: private/installer.php:103
msgid "Failed to open archive when installing app"
msgstr ""
#: installer.php:125
#: private/installer.php:125
msgid "App does not provide an info.xml file"
msgstr ""
#: installer.php:131
#: private/installer.php:131
msgid "App can't be installed because of not allowed code in the App"
msgstr ""
#: installer.php:140
#: private/installer.php:140
msgid ""
"App can't be installed because it is not compatible with this version of "
"ownCloud"
msgstr ""
#: installer.php:146
#: private/installer.php:146
msgid ""
"App can't be installed because it contains the <shipped>true</shipped> tag "
"which is not allowed for non shipped apps"
msgstr ""
#: installer.php:152
#: private/installer.php:152
msgid ""
"App can't be installed because the version in info.xml/version is not the "
"same as the version reported from the app store"
msgstr ""
#: installer.php:162
#: private/installer.php:162
msgid "App directory already exists"
msgstr ""
#: installer.php:175
#: private/installer.php:175
#, php-format
msgid "Can't create app folder. Please fix permissions. %s"
msgstr ""
#: json.php:28
#: private/json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:62 json.php:73
#: private/json.php:39 private/json.php:62 private/json.php:73
msgid "Authentication error"
msgstr ""
#: json.php:51
#: private/json.php:51
msgid "Token expired. Please reload page."
msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35
#: private/search/provider/file.php:18 private/search/provider/file.php:36
msgid "Files"
msgstr ""
#: search/provider/file.php:26 search/provider/file.php:33
#: private/search/provider/file.php:27 private/search/provider/file.php:34
msgid "Text"
msgstr ""
#: search/provider/file.php:29
#: private/search/provider/file.php:30
msgid "Images"
msgstr ""
#: setup/abstractdatabase.php:22
#: private/setup/abstractdatabase.php:22
#, php-format
msgid "%s enter the database username."
msgstr ""
#: setup/abstractdatabase.php:25
#: private/setup/abstractdatabase.php:25
#, php-format
msgid "%s enter the database name."
msgstr ""
#: setup/abstractdatabase.php:28
#: private/setup/abstractdatabase.php:28
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
#: setup/mssql.php:20
#: private/setup/mssql.php:20
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114
#: setup/postgresql.php:24 setup/postgresql.php:70
#: private/setup/mssql.php:21 private/setup/mysql.php:13
#: private/setup/oci.php:114 private/setup/postgresql.php:24
#: private/setup/postgresql.php:70
msgid "You need to enter either an existing account or the administrator."
msgstr ""
#: setup/mysql.php:12
#: private/setup/mysql.php:12
msgid "MySQL username and/or password not valid"
msgstr ""
#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147
#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181
#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204
#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115
#: setup/postgresql.php:125 setup/postgresql.php:134
#: private/setup/mysql.php:67 private/setup/oci.php:54
#: private/setup/oci.php:121 private/setup/oci.php:147
#: private/setup/oci.php:154 private/setup/oci.php:165
#: private/setup/oci.php:172 private/setup/oci.php:181
#: private/setup/oci.php:189 private/setup/oci.php:198
#: private/setup/oci.php:204 private/setup/postgresql.php:89
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148
#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190
#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99
#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135
#: private/setup/mysql.php:68 private/setup/oci.php:55
#: private/setup/oci.php:122 private/setup/oci.php:148
#: private/setup/oci.php:155 private/setup/oci.php:166
#: private/setup/oci.php:182 private/setup/oci.php:190
#: private/setup/oci.php:199 private/setup/postgresql.php:90
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
#: setup/mysql.php:85
#: private/setup/mysql.php:85
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
#: setup/mysql.php:86
#: private/setup/mysql.php:86
msgid "Drop this user from MySQL"
msgstr ""
#: setup/mysql.php:91
#: private/setup/mysql.php:91
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
#: setup/mysql.php:92
#: private/setup/mysql.php:92
msgid "Drop this user from MySQL."
msgstr ""
#: setup/oci.php:34
#: private/setup/oci.php:34
msgid "Oracle connection could not be established"
msgstr ""
#: setup/oci.php:41 setup/oci.php:113
#: private/setup/oci.php:41 private/setup/oci.php:113
msgid "Oracle username and/or password not valid"
msgstr ""
#: setup/oci.php:173 setup/oci.php:205
#: private/setup/oci.php:173 private/setup/oci.php:205
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
#: setup/postgresql.php:23 setup/postgresql.php:69
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:28
#: private/setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:31
#: private/setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:184
#: private/setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:185
#: private/setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template/functions.php:96
#: private/tags.php:194
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
#: private/template/functions.php:122
msgid "seconds ago"
msgstr ""
#: template/functions.php:97
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:98
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:99
#: private/template/functions.php:125
msgid "today"
msgstr ""
#: template/functions.php:100
#: private/template/functions.php:126
msgid "yesterday"
msgstr ""
#: template/functions.php:101
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:102
#: private/template/functions.php:130
msgid "last month"
msgstr ""
#: template/functions.php:103
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:104
#: private/template/functions.php:133
msgid "last year"
msgstr ""
#: template/functions.php:105
#: private/template/functions.php:134
msgid "years ago"
msgstr ""
#: template.php:297
#: private/template.php:297
msgid "Caused by:"
msgstr ""
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-05 15:12+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
"MIME-Version: 1.0\n"
@ -158,15 +158,15 @@ msgstr ""
msgid "Updated"
msgstr ""
#: js/personal.js:225
#: js/personal.js:220
msgid "Select a profile picture"
msgstr ""
#: js/personal.js:270
#: js/personal.js:265
msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:292
#: js/personal.js:287
msgid "Saving..."
msgstr ""
@ -182,32 +182,32 @@ msgstr ""
msgid "Unable to remove user"
msgstr ""
#: js/users.js:92 templates/users.php:26 templates/users.php:90
#: js/users.js:95 templates/users.php:26 templates/users.php:90
#: templates/users.php:118
msgid "Groups"
msgstr ""
#: js/users.js:97 templates/users.php:92 templates/users.php:130
#: js/users.js:100 templates/users.php:92 templates/users.php:130
msgid "Group Admin"
msgstr ""
#: js/users.js:120 templates/users.php:170
#: js/users.js:123 templates/users.php:170
msgid "Delete"
msgstr ""
#: js/users.js:277
#: js/users.js:280
msgid "add group"
msgstr ""
#: js/users.js:436
#: js/users.js:442
msgid "A valid username must be provided"
msgstr ""
#: js/users.js:437 js/users.js:443 js/users.js:458
#: js/users.js:443 js/users.js:449 js/users.js:464
msgid "Error creating user"
msgstr ""
#: js/users.js:442
#: js/users.js:448
msgid "A valid password must be provided"
msgstr ""
@ -288,12 +288,12 @@ msgstr ""
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
@ -385,11 +385,11 @@ msgstr ""
msgid "Less"
msgstr ""
#: templates/admin.php:250 templates/personal.php:161
#: templates/admin.php:250 templates/personal.php:169
msgid "Version"
msgstr ""
#: templates/admin.php:254 templates/personal.php:164
#: templates/admin.php:254 templates/personal.php:172
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
@ -528,34 +528,34 @@ msgstr ""
msgid "Language"
msgstr ""
#: templates/personal.php:119
#: templates/personal.php:126
msgid "Help translate"
msgstr ""
#: templates/personal.php:125
#: templates/personal.php:133
msgid "WebDAV"
msgstr ""
#: templates/personal.php:127
#: templates/personal.php:135
#, php-format
msgid ""
"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" "
"target=\"_blank\">access your Files via WebDAV</a>"
msgstr ""
#: templates/personal.php:138
#: templates/personal.php:146
msgid "Encryption"
msgstr ""
#: templates/personal.php:140
#: templates/personal.php:148
msgid "The encryption app is no longer enabled, decrypt all your file"
msgstr ""
#: templates/personal.php:146
#: templates/personal.php:154
msgid "Log-in password"
msgstr ""
#: templates/personal.php:151
#: templates/personal.php:159
msgid "Decrypt all Files"
msgstr ""

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@ -81,3 +81,7 @@ msgstr "Upload abbrechen"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Es ist keine Vorschau verfügbar für"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@ -21,51 +21,47 @@ msgstr ""
"Language: de_CH\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist."
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr "Kein App-Name spezifiziert"
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Hilfe"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Persönlich"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Einstellungen"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Benutzer"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Administrator"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Konnte \"%s\" nicht aktualisieren."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
"MIME-Version: 1.0\n"
@ -296,13 +296,13 @@ msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-13 20:29-0400\n"
"PO-Revision-Date: 2013-10-11 07:10+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -80,3 +80,7 @@ msgstr "Upload abbrechen"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Es ist keine Vorschau verfügbar für"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -10,61 +10,57 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:20+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"Language-Team: German (Germany) <translations@owncloud.org>\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist."
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr "Es wurde kein Applikation-Name angegeben"
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Hilfe"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Persönlich"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Einstellungen"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Benutzer"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Administrator"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Konnte \"%s\" nicht aktualisieren."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr "Individuelle Profilbilder werden noch nicht von der Verschlüsselung unterstützt"
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr "Unbekannter Dateityp"
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr "Ungültiges Bild"

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:41+0000\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -294,13 +294,13 @@ msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen"
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgstr "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120
msgid "Sharing"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@ -79,3 +79,7 @@ msgstr "Ακύρωση αποστολής"
#: templates/public.php:91
msgid "No preview available for"
msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-06 19:07-0400\n"
"PO-Revision-Date: 2013-10-02 13:21+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@ -18,51 +18,47 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: private/app.php:237
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: private/app.php:248
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: private/app.php:352
#: private/app.php:359
msgid "Help"
msgstr "Βοήθεια"
#: private/app.php:365
#: private/app.php:372
msgid "Personal"
msgstr "Προσωπικά"
#: private/app.php:376
#: private/app.php:383
msgid "Settings"
msgstr "Ρυθμίσεις"
#: private/app.php:388
#: private/app.php:395
msgid "Users"
msgstr "Χρήστες"
#: private/app.php:401
#: private/app.php:408
msgid "Admin"
msgstr "Διαχειριστής"
#: private/app.php:832
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr "Αποτυχία αναβάθμισης του \"%s\"."
#: private/avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: private/avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: private/avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""

View File

@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-16 00:26-0400\n"
"PO-Revision-Date: 2013-10-14 00:42+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:01+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
@ -293,12 +293,12 @@ msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδ
#: templates/admin.php:107
msgid ""
"cron.php is registered at a webcron service to call cron.php once a minute "
"over http."
"cron.php is registered at a webcron service to call cron.php every 15 "
"minutes over http."
msgstr ""
#: templates/admin.php:115
msgid "Use systems cron service to call the cron.php file once a minute."
msgid "Use systems cron service to call the cron.php file every 15 minutes."
msgstr ""
#: templates/admin.php:120

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-10-10 22:26-0400\n"
"PO-Revision-Date: 2013-10-11 02:26+0000\n"
"POT-Creation-Date: 2013-10-21 13:01-0400\n"
"PO-Revision-Date: 2013-10-21 17:02+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n"
@ -79,3 +79,7 @@ msgstr ""
#: templates/public.php:91
msgid "No preview available for"
msgstr "No preview available for"
#: templates/public.php:98
msgid "Direct link"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-09-16 11:33-0400\n"
"PO-Revision-Date: 2013-09-16 15:34+0000\n"
"POT-Creation-Date: 2013-10-17 13:47-0400\n"
"PO-Revision-Date: 2013-10-17 17:47+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
"MIME-Version: 1.0\n"
@ -17,318 +17,321 @@ msgstr ""
"Language: en@pirate\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:239
#: private/app.php:243
#, php-format
msgid ""
"App \"%s\" can't be installed because it is not compatible with this version"
" of ownCloud."
msgstr ""
#: app.php:250
#: private/app.php:254
msgid "No app name specified"
msgstr ""
#: app.php:361
#: private/app.php:359
msgid "Help"
msgstr ""
#: app.php:374
#: private/app.php:372
msgid "Personal"
msgstr ""
#: app.php:385
#: private/app.php:383
msgid "Settings"
msgstr ""
#: app.php:397
#: private/app.php:395
msgid "Users"
msgstr ""
#: app.php:410
#: private/app.php:408
msgid "Admin"
msgstr ""
#: app.php:839
#: private/app.php:872
#, php-format
msgid "Failed to upgrade \"%s\"."
msgstr ""
#: avatar.php:56
msgid "Custom profile pictures don't work with encryption yet"
msgstr ""
#: avatar.php:64
#: private/avatar.php:60
msgid "Unknown filetype"
msgstr ""
#: avatar.php:69
#: private/avatar.php:65
msgid "Invalid image"
msgstr ""
#: defaults.php:35
#: private/defaults.php:36
msgid "web services under your control"
msgstr "web services under your control"
#: files.php:66 files.php:98
#: private/files.php:66 private/files.php:98
#, php-format
msgid "cannot open \"%s\""
msgstr ""
#: files.php:226
#: private/files.php:226
msgid "ZIP download is turned off."
msgstr ""
#: files.php:227
#: private/files.php:227
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:228 files.php:256
#: private/files.php:228 private/files.php:256
msgid "Back to Files"
msgstr ""
#: files.php:253
#: private/files.php:253
msgid "Selected files too large to generate zip file."
msgstr ""
#: files.php:254
#: private/files.php:254
msgid ""
"Download the files in smaller chunks, seperately or kindly ask your "
"administrator."
msgstr ""
#: installer.php:63
#: private/installer.php:63
msgid "No source specified when installing app"
msgstr ""
#: installer.php:70
#: private/installer.php:70
msgid "No href specified when installing app from http"
msgstr ""
#: installer.php:75
#: private/installer.php:75
msgid "No path specified when installing app from local file"
msgstr ""
#: installer.php:89
#: private/installer.php:89
#, php-format
msgid "Archives of type %s are not supported"
msgstr ""
#: installer.php:103
#: private/installer.php:103
msgid "Failed to open archive when installing app"
msgstr ""
#: installer.php:125
#: private/installer.php:125
msgid "App does not provide an info.xml file"
msgstr ""
#: installer.php:131
#: private/installer.php:131
msgid "App can't be installed because of not allowed code in the App"
msgstr ""
#: installer.php:140
#: private/installer.php:140
msgid ""
"App can't be installed because it is not compatible with this version of "
"ownCloud"
msgstr ""
#: installer.php:146
#: private/installer.php:146
msgid ""
"App can't be installed because it contains the <shipped>true</shipped> tag "
"which is not allowed for non shipped apps"
msgstr ""
#: installer.php:152
#: private/installer.php:152
msgid ""
"App can't be installed because the version in info.xml/version is not the "
"same as the version reported from the app store"
msgstr ""
#: installer.php:162
#: private/installer.php:162
msgid "App directory already exists"
msgstr ""
#: installer.php:175
#: private/installer.php:175
#, php-format
msgid "Can't create app folder. Please fix permissions. %s"
msgstr ""
#: json.php:28
#: private/json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:62 json.php:73
#: private/json.php:39 private/json.php:62 private/json.php:73
msgid "Authentication error"
msgstr ""
#: json.php:51
#: private/json.php:51
msgid "Token expired. Please reload page."
msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35
#: private/search/provider/file.php:18 private/search/provider/file.php:36
msgid "Files"
msgstr ""
#: search/provider/file.php:26 search/provider/file.php:33
#: private/search/provider/file.php:27 private/search/provider/file.php:34
msgid "Text"
msgstr ""
#: search/provider/file.php:29
#: private/search/provider/file.php:30
msgid "Images"
msgstr ""
#: setup/abstractdatabase.php:22
#: private/setup/abstractdatabase.php:22
#, php-format
msgid "%s enter the database username."
msgstr ""
#: setup/abstractdatabase.php:25
#: private/setup/abstractdatabase.php:25
#, php-format
msgid "%s enter the database name."
msgstr ""
#: setup/abstractdatabase.php:28
#: private/setup/abstractdatabase.php:28
#, php-format
msgid "%s you may not use dots in the database name"
msgstr ""
#: setup/mssql.php:20
#: private/setup/mssql.php:20
#, php-format
msgid "MS SQL username and/or password not valid: %s"
msgstr ""
#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114
#: setup/postgresql.php:24 setup/postgresql.php:70
#: private/setup/mssql.php:21 private/setup/mysql.php:13
#: private/setup/oci.php:114 private/setup/postgresql.php:24
#: private/setup/postgresql.php:70
msgid "You need to enter either an existing account or the administrator."
msgstr ""
#: setup/mysql.php:12
#: private/setup/mysql.php:12
msgid "MySQL username and/or password not valid"
msgstr ""
#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147
#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181
#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204
#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115
#: setup/postgresql.php:125 setup/postgresql.php:134
#: private/setup/mysql.php:67 private/setup/oci.php:54
#: private/setup/oci.php:121 private/setup/oci.php:147
#: private/setup/oci.php:154 private/setup/oci.php:165
#: private/setup/oci.php:172 private/setup/oci.php:181
#: private/setup/oci.php:189 private/setup/oci.php:198
#: private/setup/oci.php:204 private/setup/postgresql.php:89
#: private/setup/postgresql.php:98 private/setup/postgresql.php:115
#: private/setup/postgresql.php:125 private/setup/postgresql.php:134
#, php-format
msgid "DB Error: \"%s\""
msgstr ""
#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148
#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190
#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99
#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135
#: private/setup/mysql.php:68 private/setup/oci.php:55
#: private/setup/oci.php:122 private/setup/oci.php:148
#: private/setup/oci.php:155 private/setup/oci.php:166
#: private/setup/oci.php:182 private/setup/oci.php:190
#: private/setup/oci.php:199 private/setup/postgresql.php:90
#: private/setup/postgresql.php:99 private/setup/postgresql.php:116
#: private/setup/postgresql.php:126 private/setup/postgresql.php:135
#, php-format
msgid "Offending command was: \"%s\""
msgstr ""
#: setup/mysql.php:85
#: private/setup/mysql.php:85
#, php-format
msgid "MySQL user '%s'@'localhost' exists already."
msgstr ""
#: setup/mysql.php:86
#: private/setup/mysql.php:86
msgid "Drop this user from MySQL"
msgstr ""
#: setup/mysql.php:91
#: private/setup/mysql.php:91
#, php-format
msgid "MySQL user '%s'@'%%' already exists"
msgstr ""
#: setup/mysql.php:92
#: private/setup/mysql.php:92
msgid "Drop this user from MySQL."
msgstr ""
#: setup/oci.php:34
#: private/setup/oci.php:34
msgid "Oracle connection could not be established"
msgstr ""
#: setup/oci.php:41 setup/oci.php:113
#: private/setup/oci.php:41 private/setup/oci.php:113
msgid "Oracle username and/or password not valid"
msgstr ""
#: setup/oci.php:173 setup/oci.php:205
#: private/setup/oci.php:173 private/setup/oci.php:205
#, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr ""
#: setup/postgresql.php:23 setup/postgresql.php:69
#: private/setup/postgresql.php:23 private/setup/postgresql.php:69
msgid "PostgreSQL username and/or password not valid"
msgstr ""
#: setup.php:28
#: private/setup.php:28
msgid "Set an admin username."
msgstr ""
#: setup.php:31
#: private/setup.php:31
msgid "Set an admin password."
msgstr ""
#: setup.php:184
#: private/setup.php:184
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr ""
#: setup.php:185
#: private/setup.php:185
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr ""
#: template/functions.php:96
#: private/tags.php:194
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
#: private/template/functions.php:122
msgid "seconds ago"
msgstr ""
#: template/functions.php:97
#: private/template/functions.php:123
msgid "%n minute ago"
msgid_plural "%n minutes ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:98
#: private/template/functions.php:124
msgid "%n hour ago"
msgid_plural "%n hours ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:99
#: private/template/functions.php:125
msgid "today"
msgstr ""
#: template/functions.php:100
#: private/template/functions.php:126
msgid "yesterday"
msgstr ""
#: template/functions.php:101
#: private/template/functions.php:128
msgid "%n day go"
msgid_plural "%n days ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:102
#: private/template/functions.php:130
msgid "last month"
msgstr ""
#: template/functions.php:103
#: private/template/functions.php:131
msgid "%n month ago"
msgid_plural "%n months ago"
msgstr[0] ""
msgstr[1] ""
#: template/functions.php:104
#: private/template/functions.php:133
msgid "last year"
msgstr ""
#: template/functions.php:105
#: private/template/functions.php:134
msgid "years ago"
msgstr ""
#: template.php:297
#: private/template.php:297
msgid "Caused by:"
msgstr ""
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""

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