Conflicts: apps/files/ajax/upload.php apps/files/js/files.jsremotes/origin/stable5
commit
afb5de955e
@ -0,0 +1,37 @@ |
||||
## Submitting issues |
||||
|
||||
If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. |
||||
|
||||
### Guidelines |
||||
* Report the issue using our [template][template], it includes all the informations we need to track down the issue. |
||||
* This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: |
||||
- [Android client](https://github.com/owncloud/android/issues) |
||||
- [iOS client](https://github.com/owncloud/ios-issues/issues) |
||||
- [Desktop client](https://github.com/owncloud/mirall/issues) |
||||
- [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) |
||||
* Search the existing issues first, it's likely that your issue was already reported. |
||||
|
||||
If your issue appears to be a bug, and hasn't been reported, open a new issue. |
||||
|
||||
Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. |
||||
|
||||
[template]: https://raw.github.com/owncloud/core/master/issue_template.md |
||||
[mailinglist]: https://mail.kde.org/mailman/listinfo/owncloud |
||||
[forum]: http://forum.owncloud.org/ |
||||
[irc]: http://webchat.freenode.net/?channels=owncloud&uio=d4 |
||||
|
||||
## Contributing to Source Code |
||||
|
||||
Thanks for wanting to contribute source code to ownCloud. That's great! |
||||
|
||||
Before we're able to merge your code into the ownCloud core, you need to sign our [Contributor Agreement][agreement]. |
||||
|
||||
Please read the [Developer Manuals][devmanual] to get useful infos like how to create your first application or how to test the ownCloud code with phpunit. |
||||
|
||||
[agreement]: http://owncloud.org/about/contributor-agreement/ |
||||
[devmanual]: http://owncloud.org/dev/ |
||||
|
||||
## Translations |
||||
Please submit translations via [Transifex][transifex]. |
||||
|
||||
[transifex]: https://www.transifex.com/projects/p/owncloud/ |
||||
@ -0,0 +1,16 @@ |
||||
<?php |
||||
|
||||
// only need filesystem apps |
||||
$RUNTIME_APPTYPES = array('filesystem'); |
||||
|
||||
OCP\JSON::checkLoggedIn(); |
||||
|
||||
$l=new OC_L10N('files'); |
||||
$maxUploadFilesize = OCP\Util::maxUploadFilesize($dir); |
||||
$maxHumanFilesize = OCP\Util::humanFileSize($maxUploadFilesize); |
||||
$maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize; |
||||
|
||||
// send back json |
||||
OCP\JSON::success(array('data' => array('uploadMaxFilesize' => $maxUploadFilesize, |
||||
'maxHumanFilesize' => $maxHumanFilesize |
||||
))); |
||||
@ -0,0 +1,32 @@ |
||||
/*! http://mths.be/visibility v1.0.5 by @mathias */ |
||||
(function (window, document, $, undefined) { |
||||
|
||||
var prefix, |
||||
property, |
||||
// In Opera, `'onfocusin' in document == true`, hence the extra `hasFocus` check to detect IE-like behavior
|
||||
eventName = 'onfocusin' in document && 'hasFocus' in document ? 'focusin focusout' : 'focus blur', |
||||
prefixes = ['', 'moz', 'ms', 'o', 'webkit'], |
||||
$support = $.support, |
||||
$event = $.event; |
||||
|
||||
while ((property = prefix = prefixes.pop()) != undefined) { |
||||
property = (prefix ? prefix + 'H' : 'h') + 'idden'; |
||||
if ($support.pageVisibility = typeof document[property] == 'boolean') { |
||||
eventName = prefix + 'visibilitychange'; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
$(/blur$/.test(eventName) ? window : document).on(eventName, function (event) { |
||||
var type = event.type, |
||||
originalEvent = event.originalEvent, |
||||
toElement = originalEvent.toElement; |
||||
// If it’s a `{focusin,focusout}` event (IE), `fromElement` and `toElement` should both be `null` or `undefined`;
|
||||
// else, the page visibility hasn’t changed, but the user just clicked somewhere in the doc.
|
||||
// In IE9, we need to check the `relatedTarget` property instead.
|
||||
if (!/^focus./.test(type) || (toElement == undefined && originalEvent.fromElement == undefined && originalEvent.relatedTarget == undefined)) { |
||||
$event.trigger((property && document[property] || /^(?:blur|focusout)$/.test(type) ? 'hide' : 'show') + '.visibility'); |
||||
} |
||||
}); |
||||
|
||||
}(this, document, jQuery)); |
||||
@ -1,10 +1,10 @@ |
||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++): |
||||
$crumb = $_["breadcrumb"][$i]; |
||||
$dir = str_replace('+', '%20', urlencode($crumb["dir"])); |
||||
$dir = str_replace('%2F', '/', $dir); ?> |
||||
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg"
|
||||
data-dir='<?php echo $dir;?>'
|
||||
style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'>
|
||||
<a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
||||
</div> |
||||
<?php endfor; |
||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++): |
||||
$crumb = $_["breadcrumb"][$i]; |
||||
$dir = str_replace('+', '%20', urlencode($crumb["dir"])); |
||||
$dir = str_replace('%2F', '/', $dir); ?> |
||||
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg"
|
||||
data-dir='<?php echo $dir;?>'
|
||||
style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'>
|
||||
<a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
||||
</div> |
||||
<?php endfor; |
||||
@ -1,70 +1,70 @@ |
||||
<script type="text/javascript"> |
||||
<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> |
||||
var publicListView = true; |
||||
<script type="text/javascript"> |
||||
<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> |
||||
var publicListView = true; |
||||
<?php else: ?> |
||||
var publicListView = false; |
||||
<?php endif; ?> |
||||
</script> |
||||
|
||||
<?php foreach($_['files'] as $file): |
||||
$simple_file_size = OCP\simple_file_size($file['size']); |
||||
// the bigger the file, the darker the shade of grey; megabytes*2 |
||||
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); |
||||
if($simple_size_color<0) $simple_size_color = 0; |
||||
$relative_modified_date = OCP\relative_modified_date($file['mtime']); |
||||
// the older the file, the brighter the shade of grey; days*14 |
||||
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14); |
||||
if($relative_date_color>200) $relative_date_color = 200; |
||||
$name = str_replace('+', '%20', urlencode($file['name'])); |
||||
$name = str_replace('%2F', '/', $name); |
||||
$directory = str_replace('+', '%20', urlencode($file['directory'])); |
||||
$directory = str_replace('%2F', '/', $directory); ?> |
||||
<tr data-id="<?php echo $file['id']; ?>"
|
||||
data-file="<?php echo $name;?>"
|
||||
data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>"
|
||||
data-mime="<?php echo $file['mimetype']?>"
|
||||
data-size='<?php echo $file['size'];?>'
|
||||
data-permissions='<?php echo $file['permissions']; ?>'>
|
||||
<td class="filename svg" |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)"
|
||||
<?php else: ?> |
||||
var publicListView = false; |
||||
style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)"
|
||||
<?php endif; ?> |
||||
</script> |
||||
|
||||
<?php foreach($_['files'] as $file): |
||||
$simple_file_size = OCP\simple_file_size($file['size']); |
||||
// the bigger the file, the darker the shade of grey; megabytes*2 |
||||
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); |
||||
if($simple_size_color<0) $simple_size_color = 0; |
||||
$relative_modified_date = OCP\relative_modified_date($file['mtime']); |
||||
// the older the file, the brighter the shade of grey; days*14 |
||||
$relative_date_color = round((time()-$file['mtime'])/60/60/24*14); |
||||
if($relative_date_color>200) $relative_date_color = 200; |
||||
$name = str_replace('+', '%20', urlencode($file['name'])); |
||||
$name = str_replace('%2F', '/', $name); |
||||
$directory = str_replace('+', '%20', urlencode($file['directory'])); |
||||
$directory = str_replace('%2F', '/', $directory); ?> |
||||
<tr data-id="<?php echo $file['id']; ?>"
|
||||
data-file="<?php echo $name;?>"
|
||||
data-type="<?php echo ($file['type'] == 'dir')?'dir':'file'?>"
|
||||
data-mime="<?php echo $file['mimetype']?>"
|
||||
data-size='<?php echo $file['size'];?>'
|
||||
data-permissions='<?php echo $file['permissions']; ?>'>
|
||||
<td class="filename svg" |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon('dir'); ?>)"
|
||||
<?php else: ?> |
||||
style="background-image:url(<?php echo OCP\mimetype_icon($file['mimetype']); ?>)"
|
||||
<?php endif; ?> |
||||
> |
||||
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
<a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title="">
|
||||
<?php else: ?> |
||||
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
|
||||
<?php endif; ?> |
||||
<span class="nametext"> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<?php echo htmlspecialchars($file['name']);?> |
||||
<?php else:?> |
||||
<?php echo htmlspecialchars($file['basename']);?><span
|
||||
class='extension'><?php echo $file['extension'];?></span>
|
||||
<?php endif;?> |
||||
</span> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<span class="uploadtext" currentUploads="0"> |
||||
</span> |
||||
<?php endif;?> |
||||
</a> |
||||
</td> |
||||
<td class="filesize" |
||||
title="<?php echo OCP\human_file_size($file['size']); ?>"
|
||||
style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)">
|
||||
<?php echo $simple_file_size; ?> |
||||
</td> |
||||
<td class="date"> |
||||
<span class="modified" |
||||
title="<?php echo $file['date']; ?>"
|
||||
style="color:rgb(<?php echo $relative_date_color.',' |
||||
.$relative_date_color.',' |
||||
.$relative_date_color ?>)"> |
||||
<?php echo $relative_modified_date; ?> |
||||
</span> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; |
||||
> |
||||
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> |
||||
<?php if($file['type'] == 'dir'): ?> |
||||
<a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title="">
|
||||
<?php else: ?> |
||||
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
|
||||
<?php endif; ?> |
||||
<span class="nametext"> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<?php echo htmlspecialchars($file['name']);?> |
||||
<?php else:?> |
||||
<?php echo htmlspecialchars($file['basename']);?><span
|
||||
class='extension'><?php echo $file['extension'];?></span>
|
||||
<?php endif;?> |
||||
</span> |
||||
<?php if($file['type'] == 'dir'):?> |
||||
<span class="uploadtext" currentUploads="0"> |
||||
</span> |
||||
<?php endif;?> |
||||
</a> |
||||
</td> |
||||
<td class="filesize" |
||||
title="<?php echo OCP\human_file_size($file['size']); ?>"
|
||||
style="color:rgb(<?php echo $simple_size_color.','.$simple_size_color.','.$simple_size_color ?>)">
|
||||
<?php echo $simple_file_size; ?> |
||||
</td> |
||||
<td class="date"> |
||||
<span class="modified" |
||||
title="<?php echo $file['date']; ?>"
|
||||
style="color:rgb(<?php echo $relative_date_color.',' |
||||
.$relative_date_color.',' |
||||
.$relative_date_color ?>)"> |
||||
<?php echo $relative_modified_date; ?> |
||||
</span> |
||||
</td> |
||||
</tr> |
||||
<?php endforeach; |
||||
@ -1,44 +0,0 @@ |
||||
<?php |
||||
|
||||
/** |
||||
* ownCloud - user_migrate |
||||
* |
||||
* @author Sam Tuke |
||||
* @copyright 2012 Sam Tuke samtuke@owncloud.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/>. |
||||
* |
||||
*/ |
||||
|
||||
// TODO: Allow admins to expire versions of any user |
||||
// TODO: Provide feedback as to how many versions were deleted |
||||
|
||||
// Check user and app status |
||||
OCP\JSON::checkLoggedIn(); |
||||
OCP\App::checkAppEnabled('files_versions'); |
||||
OCP\JSON::callCheck(); |
||||
|
||||
$versions = new OCA_Versions\Storage(); |
||||
|
||||
if( $versions->expireAll() ) { |
||||
|
||||
OCP\JSON::success(); |
||||
die(); |
||||
|
||||
} else { |
||||
|
||||
OCP\JSON::error(); |
||||
die(); |
||||
|
||||
} |
||||
@ -1,39 +0,0 @@ |
||||
// TODO: allow the button to be clicked only once
|
||||
|
||||
$( document ).ready(function(){ |
||||
//
|
||||
$( '#expireAllBtn' ).click( |
||||
|
||||
function( event ) { |
||||
|
||||
// Prevent page from reloading
|
||||
event.preventDefault(); |
||||
|
||||
// Show loading gif
|
||||
$('.expireAllLoading').show(); |
||||
|
||||
$.getJSON( |
||||
OC.filePath('files_versions','ajax','expireAll.php'), |
||||
function(result){ |
||||
if (result.status == 'success') { |
||||
$('.expireAllLoading').hide(); |
||||
$('#expireAllBtn').html('Expiration successful'); |
||||
} else { |
||||
|
||||
// Cancel loading
|
||||
$('#expireAllBtn').html('Expiration failed'); |
||||
|
||||
// Show Dialog
|
||||
OC.dialogs.alert( |
||||
'Something went wrong, your files may not have been expired', |
||||
'An error has occurred', |
||||
function(){ |
||||
$('#expireAllBtn').html(t('files_versions', 'Expire all versions')+'<img style="display: none;" class="loading" src="'+OC.filePath('core','img','loading.gif')+'" />'); |
||||
} |
||||
); |
||||
} |
||||
} |
||||
); |
||||
} |
||||
); |
||||
}); |
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "إنهاء تاريخ الإنتهاء لجميع الإصدارات", |
||||
"History" => "السجل الزمني", |
||||
"Versions" => "الإصدارات", |
||||
"This will delete all existing backup versions of your files" => "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات", |
||||
"Files Versioning" => "أصدرة الملفات", |
||||
"Enable" => "تفعيل" |
||||
); |
||||
|
||||
@ -1,6 +1,4 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"History" => "История", |
||||
"Versions" => "Версии", |
||||
"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове", |
||||
"Enable" => "Включено" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expira totes les versions", |
||||
"History" => "Historial", |
||||
"Versions" => "Versions", |
||||
"This will delete all existing backup versions of your files" => "Això eliminarà totes les versions de còpia de seguretat dels vostres fitxers", |
||||
"Files Versioning" => "Fitxers de Versions", |
||||
"Enable" => "Habilita" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Vypršet všechny verze", |
||||
"History" => "Historie", |
||||
"Versions" => "Verze", |
||||
"This will delete all existing backup versions of your files" => "Odstraní všechny existující zálohované verze Vašich souborů", |
||||
"Files Versioning" => "Verzování souborů", |
||||
"Enable" => "Povolit" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Lad alle versioner udløbe", |
||||
"History" => "Historik", |
||||
"Versions" => "Versioner", |
||||
"This will delete all existing backup versions of your files" => "Dette vil slette alle eksisterende backupversioner af dine filer", |
||||
"Files Versioning" => "Versionering af filer", |
||||
"Enable" => "Aktiver" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Alle Versionen löschen", |
||||
"History" => "Historie", |
||||
"Versions" => "Versionen", |
||||
"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien.", |
||||
"Files Versioning" => "Dateiversionierung", |
||||
"Enable" => "Aktivieren" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Alle Versionen löschen", |
||||
"History" => "Historie", |
||||
"Versions" => "Versionen", |
||||
"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Ihrer Dateien.", |
||||
"Files Versioning" => "Dateiversionierung", |
||||
"Enable" => "Aktivieren" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Λήξη όλων των εκδόσεων", |
||||
"History" => "Ιστορικό", |
||||
"Versions" => "Εκδόσεις", |
||||
"This will delete all existing backup versions of your files" => "Αυτό θα διαγράψει όλες τις υπάρχουσες εκδόσεις των αντιγράφων ασφαλείας των αρχείων σας", |
||||
"Files Versioning" => "Εκδόσεις Αρχείων", |
||||
"Enable" => "Ενεργοποίηση" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Eksvalidigi ĉiujn eldonojn", |
||||
"History" => "Historio", |
||||
"Versions" => "Eldonoj", |
||||
"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj", |
||||
"Files Versioning" => "Dosiereldonigo", |
||||
"Enable" => "Kapabligi" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expirar todas las versiones", |
||||
"History" => "Historial", |
||||
"Versions" => "Versiones", |
||||
"This will delete all existing backup versions of your files" => "Esto eliminará todas las versiones guardadas como copia de seguridad de tus archivos", |
||||
"Files Versioning" => "Versionado de archivos", |
||||
"Enable" => "Habilitar" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expirar todas las versiones", |
||||
"History" => "Historia", |
||||
"Versions" => "Versiones", |
||||
"This will delete all existing backup versions of your files" => "Hacer estom borrará todas las versiones guardadas como copia de seguridad de tus archivos", |
||||
"Files Versioning" => "Versionado de archivos", |
||||
"Enable" => "Activar" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Kõikide versioonide aegumine", |
||||
"History" => "Ajalugu", |
||||
"Versions" => "Versioonid", |
||||
"This will delete all existing backup versions of your files" => "See kustutab kõik sinu failidest tehtud varuversiooni", |
||||
"Files Versioning" => "Failide versioonihaldus", |
||||
"Enable" => "Luba" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Iraungi bertsio guztiak", |
||||
"History" => "Historia", |
||||
"Versions" => "Bertsioak", |
||||
"This will delete all existing backup versions of your files" => "Honek zure fitxategien bertsio guztiak ezabatuko ditu", |
||||
"Files Versioning" => "Fitxategien Bertsioak", |
||||
"Enable" => "Gaitu" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Vanhenna kaikki versiot", |
||||
"History" => "Historia", |
||||
"Versions" => "Versiot", |
||||
"This will delete all existing backup versions of your files" => "Tämä poistaa kaikki tiedostojesi olemassa olevat varmuuskopioversiot", |
||||
"Files Versioning" => "Tiedostojen versiointi", |
||||
"Enable" => "Käytä" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Supprimer les versions intermédiaires", |
||||
"History" => "Historique", |
||||
"Versions" => "Versions", |
||||
"This will delete all existing backup versions of your files" => "Cette opération va effacer toutes les versions intermédiaires de vos fichiers (et ne garder que la dernière version en date).", |
||||
"Files Versioning" => "Versionnage des fichiers", |
||||
"Enable" => "Activer" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Caducan todas as versións", |
||||
"History" => "Historial", |
||||
"Versions" => "Versións", |
||||
"This will delete all existing backup versions of your files" => "Isto eliminará todas as copias de seguranza que haxa dos seus ficheiros", |
||||
"Files Versioning" => "Sistema de versión de ficheiros", |
||||
"Enable" => "Activar" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "הפגת תוקף כל הגרסאות", |
||||
"History" => "היסטוריה", |
||||
"Versions" => "גרסאות", |
||||
"This will delete all existing backup versions of your files" => "פעולה זו תמחק את כל גיבויי הגרסאות הקיימים של הקבצים שלך", |
||||
"Files Versioning" => "שמירת הבדלי גרסאות של קבצים", |
||||
"Enable" => "הפעלה" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Az összes korábbi változat törlése", |
||||
"History" => "Korábbi változatok", |
||||
"Versions" => "Az állományok korábbi változatai", |
||||
"This will delete all existing backup versions of your files" => "Itt törölni tudja állományainak összes korábbi verzióját", |
||||
"Files Versioning" => "Az állományok verzionálása", |
||||
"Enable" => "engedélyezve" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "kadaluarsakan semua versi", |
||||
"History" => "riwayat", |
||||
"Versions" => "versi", |
||||
"This will delete all existing backup versions of your files" => "ini akan menghapus semua versi backup yang ada dari file anda", |
||||
"Files Versioning" => "pembuatan versi file", |
||||
"Enable" => "aktifkan" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Úrelda allar útgáfur", |
||||
"History" => "Saga", |
||||
"Versions" => "Útgáfur", |
||||
"This will delete all existing backup versions of your files" => "Þetta mun eyða öllum afritum af skránum þínum", |
||||
"Files Versioning" => "Útgáfur af skrám", |
||||
"Enable" => "Virkja" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Scadenza di tutte le versioni", |
||||
"History" => "Cronologia", |
||||
"Versions" => "Versioni", |
||||
"This will delete all existing backup versions of your files" => "Ciò eliminerà tutte le versioni esistenti dei tuoi file", |
||||
"Files Versioning" => "Controllo di versione dei file", |
||||
"Enable" => "Abilita" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "すべてのバージョンを削除する", |
||||
"History" => "履歴", |
||||
"Versions" => "バージョン", |
||||
"This will delete all existing backup versions of your files" => "これは、あなたのファイルのすべてのバックアップバージョンを削除します", |
||||
"Files Versioning" => "ファイルのバージョン管理", |
||||
"Enable" => "有効化" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "모든 버전 삭제", |
||||
"History" => "역사", |
||||
"Versions" => "버전", |
||||
"This will delete all existing backup versions of your files" => "이 파일의 모든 백업 버전을 삭제합니다", |
||||
"Files Versioning" => "파일 버전 관리", |
||||
"Enable" => "사용함" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Panaikinti visų versijų galiojimą", |
||||
"History" => "Istorija", |
||||
"Versions" => "Versijos", |
||||
"This will delete all existing backup versions of your files" => "Tai ištrins visas esamas failo versijas", |
||||
"Files Versioning" => "Failų versijos", |
||||
"Enable" => "Įjungti" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Истечи ги сите верзии", |
||||
"History" => "Историја", |
||||
"Versions" => "Версии", |
||||
"This will delete all existing backup versions of your files" => "Ова ќе ги избрише сите постоечки резервни копии од вашите датотеки", |
||||
"Files Versioning" => "Верзии на датотеки", |
||||
"Enable" => "Овозможи" |
||||
); |
||||
|
||||
@ -1,7 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"History" => "Historie", |
||||
"Versions" => "Versjoner", |
||||
"This will delete all existing backup versions of your files" => "Dette vil slette alle tidligere versjoner av alle filene dine", |
||||
"Files Versioning" => "Fil versjonering", |
||||
"Enable" => "Aktiver" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Alle versies laten verlopen", |
||||
"History" => "Geschiedenis", |
||||
"Versions" => "Versies", |
||||
"This will delete all existing backup versions of your files" => "Dit zal alle bestaande backup versies van uw bestanden verwijderen", |
||||
"Files Versioning" => "Bestand versies", |
||||
"Enable" => "Activeer" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Wygasają wszystkie wersje", |
||||
"History" => "Historia", |
||||
"Versions" => "Wersje", |
||||
"This will delete all existing backup versions of your files" => "Spowoduje to usunięcie wszystkich istniejących wersji kopii zapasowych plików", |
||||
"Files Versioning" => "Wersjonowanie plików", |
||||
"Enable" => "Włącz" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expirar todas as versões", |
||||
"History" => "Histórico", |
||||
"Versions" => "Versões", |
||||
"This will delete all existing backup versions of your files" => "Isso removerá todas as versões de backup existentes dos seus arquivos", |
||||
"Files Versioning" => "Versionamento de Arquivos", |
||||
"Enable" => "Habilitar" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expirar todas as versões", |
||||
"History" => "Histórico", |
||||
"Versions" => "Versões", |
||||
"This will delete all existing backup versions of your files" => "Isto irá apagar todas as versões de backup do seus ficheiros", |
||||
"Files Versioning" => "Versionamento de Ficheiros", |
||||
"Enable" => "Activar" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expiră toate versiunile", |
||||
"History" => "Istoric", |
||||
"Versions" => "Versiuni", |
||||
"This will delete all existing backup versions of your files" => "Această acțiune va șterge toate versiunile salvate ale fișierelor tale", |
||||
"Files Versioning" => "Versionare fișiere", |
||||
"Enable" => "Activare" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Просрочить все версии", |
||||
"History" => "История", |
||||
"Versions" => "Версии", |
||||
"This will delete all existing backup versions of your files" => "Очистить список версий ваших файлов", |
||||
"Files Versioning" => "Версии файлов", |
||||
"Enable" => "Включить" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Срок действия всех версий истекает", |
||||
"History" => "История", |
||||
"Versions" => "Версии", |
||||
"This will delete all existing backup versions of your files" => "Это приведет к удалению всех существующих версий резервной копии Ваших файлов", |
||||
"Files Versioning" => "Файлы управления версиями", |
||||
"Enable" => "Включить" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Expirovať všetky verzie", |
||||
"History" => "História", |
||||
"Versions" => "Verzie", |
||||
"This will delete all existing backup versions of your files" => "Budú zmazané všetky zálohované verzie vašich súborov", |
||||
"Files Versioning" => "Vytváranie verzií súborov", |
||||
"Enable" => "Zapnúť" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Zastaraj vse različice", |
||||
"History" => "Zgodovina", |
||||
"Versions" => "Različice", |
||||
"This will delete all existing backup versions of your files" => "S tem bodo izbrisane vse obstoječe različice varnostnih kopij vaših datotek", |
||||
"Files Versioning" => "Sledenje različicam", |
||||
"Enable" => "Omogoči" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Upphör alla versioner", |
||||
"History" => "Historik", |
||||
"Versions" => "Versioner", |
||||
"This will delete all existing backup versions of your files" => "Detta kommer att radera alla befintliga säkerhetskopior av dina filer", |
||||
"Files Versioning" => "Versionshantering av filer", |
||||
"Enable" => "Aktivera" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Tüm sürümleri sona erdir", |
||||
"History" => "Geçmiş", |
||||
"Versions" => "Sürümler", |
||||
"This will delete all existing backup versions of your files" => "Bu dosyalarınızın tüm yedek sürümlerini silecektir", |
||||
"Files Versioning" => "Dosya Sürümleri", |
||||
"Enable" => "Etkinleştir" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Термін дії всіх версій", |
||||
"History" => "Історія", |
||||
"Versions" => "Версії", |
||||
"This will delete all existing backup versions of your files" => "Це призведе до знищення всіх існуючих збережених версій Ваших файлів", |
||||
"Files Versioning" => "Версії файлів", |
||||
"Enable" => "Включити" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "Hết hạn tất cả các phiên bản", |
||||
"History" => "Lịch sử", |
||||
"Versions" => "Phiên bản", |
||||
"This will delete all existing backup versions of your files" => "Khi bạn thực hiện thao tác này sẽ xóa tất cả các phiên bản sao lưu hiện có ", |
||||
"Files Versioning" => "Phiên bản tập tin", |
||||
"Enable" => "Bật " |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "作废所有版本", |
||||
"History" => "历史", |
||||
"Versions" => "版本", |
||||
"This will delete all existing backup versions of your files" => "这将删除所有您现有文件的备份版本", |
||||
"Files Versioning" => "文件版本", |
||||
"Enable" => "启用" |
||||
); |
||||
|
||||
@ -1,8 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "过期所有版本", |
||||
"History" => "历史", |
||||
"Versions" => "版本", |
||||
"This will delete all existing backup versions of your files" => "将会删除您的文件的所有备份版本", |
||||
"Files Versioning" => "文件版本", |
||||
"Enable" => "开启" |
||||
); |
||||
|
||||
@ -1,7 +1,5 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Expire all versions" => "所有逾期的版本", |
||||
"History" => "歷史", |
||||
"Versions" => "版本", |
||||
"Files Versioning" => "檔案版本化中...", |
||||
"Enable" => "啟用" |
||||
); |
||||
|
||||
@ -1,7 +0,0 @@ |
||||
<?php |
||||
|
||||
$tmpl = new OCP\Template( 'files_versions', 'settings-personal'); |
||||
|
||||
OCP\Util::addscript('files_versions', 'settings-personal'); |
||||
|
||||
return $tmpl->fetchPage(); |
||||
@ -1,12 +0,0 @@ |
||||
<form id="versions"> |
||||
<fieldset class="personalblock"> |
||||
<legend> |
||||
<strong><?php echo $l->t('Versions'); ?></strong>
|
||||
</legend> |
||||
<button id="expireAllBtn"> |
||||
<?php echo $l->t('Expire all versions'); ?> |
||||
<img style="display: none;" class="expireAllLoading" src="<?php echo OCP\Util::imagePath('core', 'loading.gif'); ?>" />
|
||||
</button> |
||||
<br /><em><?php echo $l->t('This will delete all existing backup versions of your files'); ?></em>
|
||||
</fieldset> |
||||
</form> |
||||
@ -1,6 +1,6 @@ |
||||
<form id="versionssettings"> |
||||
<fieldset class="personalblock"> |
||||
<legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
|
||||
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
|
||||
</fieldset> |
||||
<fieldset class="personalblock"> |
||||
<legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
|
||||
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
|
||||
</fieldset> |
||||
</form> |
||||
|
||||
@ -1,3 +1,4 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Password" => "كلمة المرور" |
||||
"Password" => "كلمة المرور", |
||||
"Help" => "المساعدة" |
||||
); |
||||
|
||||
@ -0,0 +1,12 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Host" => "מארח", |
||||
"User DN" => "DN משתמש", |
||||
"Password" => "סיסמא", |
||||
"For anonymous access, leave DN and Password empty." => "לגישה אנונימית, השאר את הDM והסיסמא ריקים.", |
||||
"User Login Filter" => "סנן כניסת משתמש", |
||||
"User List Filter" => "סנן רשימת משתמשים", |
||||
"Group Filter" => "סנן קבוצה", |
||||
"in bytes" => "בבתים", |
||||
"in seconds. A change empties the cache." => "בשניות. שינוי מרוקן את המטמון.", |
||||
"Help" => "עזרה" |
||||
); |
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue