Merge branch 'master' into trash_bin_delete_selected

This commit is contained in:
Thomas Mueller 2013-02-20 23:46:15 +01:00
commit 3eb9cd035f
54 changed files with 274 additions and 207 deletions

View File

@ -48,7 +48,7 @@ $totalSize = 0;
foreach ($files['size'] as $size) { foreach ($files['size'] as $size) {
$totalSize += $size; $totalSize += $size;
} }
if ($totalSize > \OC\Files\Filesystem::free_space($dir)) { if ($totalSize > $maxUploadFilesize) {
OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'),
'uploadMaxFilesize' => $maxUploadFilesize, 'uploadMaxFilesize' => $maxUploadFilesize,
'maxHumanFilesize' => $maxHumanFilesize))); 'maxHumanFilesize' => $maxHumanFilesize)));

View File

@ -316,7 +316,7 @@ var FileList={
if(files.substr){ if(files.substr){
files=[files]; files=[files];
} }
for (var i in files) { for (var i=0; i<files.length; i++) {
var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete"); var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
var oldHTML = deleteAction[0].outerHTML; var oldHTML = deleteAction[0].outerHTML;
var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>';

View File

@ -162,9 +162,10 @@ $(document).ready(function() {
var tr=$('tr').filterAttr('data-file',filename); var tr=$('tr').filterAttr('data-file',filename);
var renaming=tr.data('renaming'); var renaming=tr.data('renaming');
if(!renaming && !FileList.isLoading(filename)){ if(!renaming && !FileList.isLoading(filename)){
var mime=$(this).parent().parent().data('mime'); FileActions.currentFile = $(this).parent();
var type=$(this).parent().parent().data('type'); var mime=FileActions.getCurrentMimeType();
var permissions = $(this).parent().parent().data('permissions'); var type=FileActions.getCurrentType();
var permissions = FileActions.getCurrentPermissions();
var action=FileActions.getDefault(mime,type, permissions); var action=FileActions.getDefault(mime,type, permissions);
if(action){ if(action){
event.preventDefault(); event.preventDefault();

View File

@ -60,6 +60,7 @@
"Text file" => "Tekstbestand", "Text file" => "Tekstbestand",
"Folder" => "Map", "Folder" => "Map",
"From link" => "Vanaf link", "From link" => "Vanaf link",
"Deleted files" => "Verwijderde bestanden",
"Cancel upload" => "Upload afbreken", "Cancel upload" => "Upload afbreken",
"Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!",
"Download" => "Download", "Download" => "Download",

View File

@ -10,6 +10,7 @@
"No file was uploaded" => "Nie przesłano żadnego pliku", "No file was uploaded" => "Nie przesłano żadnego pliku",
"Missing a temporary folder" => "Brak katalogu tymczasowego", "Missing a temporary folder" => "Brak katalogu tymczasowego",
"Failed to write to disk" => "Błąd zapisu na dysk", "Failed to write to disk" => "Błąd zapisu na dysk",
"Not enough storage available" => "Za mało miejsca",
"Invalid directory." => "Zła ścieżka.", "Invalid directory." => "Zła ścieżka.",
"Files" => "Pliki", "Files" => "Pliki",
"Delete" => "Usuwa element", "Delete" => "Usuwa element",
@ -54,6 +55,7 @@
"Text file" => "Plik tekstowy", "Text file" => "Plik tekstowy",
"Folder" => "Katalog", "Folder" => "Katalog",
"From link" => "Z linku", "From link" => "Z linku",
"Deleted files" => "Pliki usnięte",
"Cancel upload" => "Przestań wysyłać", "Cancel upload" => "Przestań wysyłać",
"Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!", "Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!",
"Download" => "Pobiera element", "Download" => "Pobiera element",

View File

@ -229,11 +229,6 @@ class AmazonS3 extends \OC\Files\Storage\Common {
return false; return false;
} }
public function free_space($path) {
// Infinite?
return false;
}
public function touch($path, $mtime = null) { public function touch($path, $mtime = null) {
if (is_null($mtime)) { if (is_null($mtime)) {
$mtime = time(); $mtime = time();

View File

@ -242,10 +242,6 @@ class SFTP extends \OC\Files\Storage\Common {
} }
} }
public function free_space($path) {
return -1;
}
public function touch($path, $mtime=null) { public function touch($path, $mtime=null) {
try { try {
if (!is_null($mtime)) return false; if (!is_null($mtime)) return false;

View File

@ -76,10 +76,6 @@ abstract class StreamWrapper extends \OC\Files\Storage\Common{
return fopen($this->constructUrl($path), $mode); return fopen($this->constructUrl($path), $mode);
} }
public function free_space($path) {
return 0;
}
public function touch($path, $mtime=null) { public function touch($path, $mtime=null) {
$this->init(); $this->init();
if(is_null($mtime)) { if(is_null($mtime)) {

View File

@ -478,10 +478,6 @@ class SWIFT extends \OC\Files\Storage\Common{
} }
} }
public function free_space($path) {
return 1024*1024*1024*8;
}
public function touch($path, $mtime=null) { public function touch($path, $mtime=null) {
$this->init(); $this->init();
$obj=$this->getObject($path); $obj=$this->getObject($path);

View File

@ -222,7 +222,7 @@ class DAV extends \OC\Files\Storage\Common{
return 0; return 0;
} }
} catch(\Exception $e) { } catch(\Exception $e) {
return 0; return \OC\Files\FREE_SPACE_UNKNOWN;
} }
} }

View File

@ -98,7 +98,7 @@ $(document).ready(function() {
var fileslist = JSON.stringify(files); var fileslist = JSON.stringify(files);
var dirlisting=getSelectedFiles('dirlisting')[0]; var dirlisting=getSelectedFiles('dirlisting')[0];
for (var i in files) { for (var i=0; i<files.length; i++) {
var undeleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date"); var undeleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date");
undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner;
} }

View File

@ -1,7 +1,14 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Couldn't delete %s permanently" => "Неможливо видалити %s назавжди",
"Couldn't restore %s" => "Неможливо відновити %s",
"perform restore operation" => "виконати операцію відновлення",
"delete file permanently" => "видалити файл назавжди",
"Name" => "Ім'я", "Name" => "Ім'я",
"Deleted" => "Видалено",
"1 folder" => "1 папка", "1 folder" => "1 папка",
"{count} folders" => "{count} папок", "{count} folders" => "{count} папок",
"1 file" => "1 файл", "1 file" => "1 файл",
"{count} files" => "{count} файлів" "{count} files" => "{count} файлів",
"Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!",
"Restore" => "Відновити"
); );

View File

@ -11,5 +11,5 @@ OCP\Util::addscript('files_versions', 'versions');
// Listen to write signals // Listen to write signals
OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "write_hook"); OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "write_hook");
// Listen to delete and rename signals // Listen to delete and rename signals
OCP\Util::connectHook('OC_Filesystem', 'post-delete', "OCA\Files_Versions\Hooks", "remove_hook"); OCP\Util::connectHook('OC_Filesystem', 'post_delete', "OCA\Files_Versions\Hooks", "remove_hook");
OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA\Files_Versions\Hooks", "rename_hook"); OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA\Files_Versions\Hooks", "rename_hook");

View File

@ -41,6 +41,10 @@ $(document).ready(function(){
} }
}); });
function goToVersionPage(url){
window.location(url);
}
function createVersionsDropdown(filename, files) { function createVersionsDropdown(filename, files) {
var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename ); var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename );
@ -51,7 +55,7 @@ function createVersionsDropdown(filename, files) {
html += '<option value=""></option>'; html += '<option value=""></option>';
html += '</select>'; html += '</select>';
html += '</div>'; html += '</div>';
html += '<input type="button" value="All versions..." onclick="window.location=\''+historyUrl+'\'" name="makelink" id="makelink" />'; html += '<input type="button" value="All versions..." name="makelink" id="makelink" />';
html += '<input id="link" style="display:none; width:90%;" />'; html += '<input id="link" style="display:none; width:90%;" />';
if (filename) { if (filename) {
@ -61,6 +65,10 @@ function createVersionsDropdown(filename, files) {
$(html).appendTo($('thead .share')); $(html).appendTo($('thead .share'));
} }
$("#makelink").click(function() {
goToVersionPage(historyUrl);
});
$.ajax({ $.ajax({
type: 'GET', type: 'GET',
url: OC.filePath('files_versions', 'ajax', 'getVersions.php'), url: OC.filePath('files_versions', 'ajax', 'getVersions.php'),

View File

@ -1,5 +1,13 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Could not revert: %s" => "Не вдалося відновити: %s",
"success" => "успішно",
"File %s was reverted to version %s" => "Файл %s був відновлений до версії %s",
"failure" => "неуспішно",
"File %s could not be reverted to version %s" => "Файл %s не може бути відновлений до версії %s",
"No old versions available" => "Старі версії недоступні",
"No path specified" => "Шлях не вказаний",
"History" => "Історія", "History" => "Історія",
"Revert a file to a previous version by clicking on its revert button" => "Відновити файл на попередню версію, натиснувши на кнопку Відновити",
"Files Versioning" => "Версії файлів", "Files Versioning" => "Версії файлів",
"Enable" => "Включити" "Enable" => "Включити"
); );

View File

@ -20,13 +20,10 @@ class Hooks {
public static function write_hook( $params ) { public static function write_hook( $params ) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
$versions = new Storage( new \OC\Files\View('') );
$path = $params[\OC\Files\Filesystem::signal_param_path]; $path = $params[\OC\Files\Filesystem::signal_param_path];
if($path<>'') {
if($path<>'') $versions->store( $path ); Storage::store($path);
}
} }
} }
@ -40,12 +37,10 @@ class Hooks {
*/ */
public static function remove_hook($params) { public static function remove_hook($params) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
$versions = new Storage( new \OC_FilesystemView('') );
$path = $params[\OC\Files\Filesystem::signal_param_path]; $path = $params[\OC\Files\Filesystem::signal_param_path];
if($path<>'') {
if($path<>'') $versions->delete( $path ); Storage::delete($path);
}
} }
} }
@ -59,13 +54,11 @@ class Hooks {
*/ */
public static function rename_hook($params) { public static function rename_hook($params) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
$versions = new Storage( new \OC_FilesystemView('') );
$oldpath = $params['oldpath']; $oldpath = $params['oldpath'];
$newpath = $params['newpath']; $newpath = $params['newpath'];
if($oldpath<>'' && $newpath<>'') {
if($oldpath<>'' && $newpath<>'') $versions->rename( $oldpath, $newpath ); Storage::rename( $oldpath, $newpath );
}
} }
} }

View File

@ -35,19 +35,12 @@ class Storage {
'step' => 604800), 'step' => 604800),
); );
private static function getUidAndFilename($filename) private static function getUidAndFilename($filename) {
{ $uid = \OC\Files\Filesystem::getOwner($filename);
if (\OCP\App::isEnabled('files_sharing') if ( $uid != \OCP\User::getUser() ) {
&& substr($filename, 0, 7) == '/Shared' $info = \OC\Files\Filesystem::getFileInfo($filename);
&& $source = \OCP\Share::getItemSharedWith('file', $ownerView = new \OC\Files\View('/'.$uid.'/files');
substr($filename, 7), $filename = $ownerView->getPath($info['fileid']);
\OC_Share_Backend_File::FORMAT_SHARED_STORAGE)) {
$filename = $source['path'];
$pos = strpos($filename, '/files', 1);
$uid = substr($filename, 1, $pos - 1);
$filename = substr($filename, $pos + 6);
} else {
$uid = \OCP\User::getUser();
} }
return array($uid, $filename); return array($uid, $filename);
} }
@ -55,17 +48,12 @@ class Storage {
/** /**
* store a new version of a file. * store a new version of a file.
*/ */
public function store($filename) { public static function store($filename) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
list($uid, $filename) = self::getUidAndFilename($filename); list($uid, $filename) = self::getUidAndFilename($filename);
$files_view = new \OC\Files\View('/'.\OCP\User::getUser() .'/files');
$users_view = new \OC\Files\View('/'.\OCP\User::getUser());
//check if source file already exist as version to avoid recursions. $files_view = new \OC\Files\View('/'.$uid .'/files');
// todo does this check work? $users_view = new \OC\Files\View('/'.$uid);
if ($users_view->file_exists($filename)) {
return false;
}
// check if filename is a directory // check if filename is a directory
if($files_view->is_dir($filename)) { if($files_view->is_dir($filename)) {
@ -106,10 +94,10 @@ class Storage {
*/ */
public static function delete($filename) { public static function delete($filename) {
list($uid, $filename) = self::getUidAndFilename($filename); list($uid, $filename) = self::getUidAndFilename($filename);
$versions_fileview = new \OC_FilesystemView('/'.$uid .'/files_versions'); $versions_fileview = new \OC\Files\View('/'.$uid .'/files_versions');
$abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$filename.'.v'; $abs_path = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('').$filename.'.v';
if( ($versions = self::getVersions($filename)) ) { if( ($versions = self::getVersions($uid, $filename)) ) {
if ( ($versionsSize = \OCP\Config::getAppValue('files_versions', 'size')) === null ) { if ( ($versionsSize = \OCP\Config::getAppValue('files_versions', 'size')) === null ) {
$versionsSize = self::calculateSize($uid); $versionsSize = self::calculateSize($uid);
} }
@ -127,16 +115,15 @@ class Storage {
public static function rename($oldpath, $newpath) { public static function rename($oldpath, $newpath) {
list($uid, $oldpath) = self::getUidAndFilename($oldpath); list($uid, $oldpath) = self::getUidAndFilename($oldpath);
list($uidn, $newpath) = self::getUidAndFilename($newpath); list($uidn, $newpath) = self::getUidAndFilename($newpath);
$versions_view = new \OC_FilesystemView('/'.$uid .'/files_versions'); $versions_view = new \OC\Files\View('/'.$uid .'/files_versions');
$files_view = new \OC_FilesystemView('/'.$uid .'/files'); $files_view = new \OC\Files\View('/'.$uid .'/files');
$abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_view->getAbsolutePath('').$newpath; $abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_view->getAbsolutePath('').$newpath;
if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) { if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) {
$versions_view->rename($oldpath, $newpath); $versions_view->rename($oldpath, $newpath);
} else if ( ($versions = Storage::getVersions($oldpath)) ) { } else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) {
$info=pathinfo($abs_newpath); $info=pathinfo($abs_newpath);
if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true); if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true);
$versions = Storage::getVersions($oldpath);
foreach ($versions as $v) { foreach ($versions as $v) {
$versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']); $versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']);
} }
@ -177,14 +164,14 @@ class Storage {
/** /**
* @brief get a list of all available versions of a file in descending chronological order * @brief get a list of all available versions of a file in descending chronological order
* @param $uid user id from the owner of the file
* @param $filename file to find versions of, relative to the user files dir * @param $filename file to find versions of, relative to the user files dir
* @param $count number of versions to return * @param $count number of versions to return
* @returns array * @returns array
*/ */
public static function getVersions( $filename, $count = 0 ) { public static function getVersions($uid, $filename, $count = 0 ) {
if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
list($uid, $filename) = self::getUidAndFilename($filename); $versions_fileview = new \OC\Files\View('/' . $uid . '/files_versions');
$versions_fileview = new \OC\Files\View('/' . \OCP\User::getUser() . '/files_versions');
$versionsName = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath($filename); $versionsName = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath($filename);
$versions = array(); $versions = array();
@ -197,7 +184,7 @@ class Storage {
sort( $matches ); sort( $matches );
$files_view = new \OC_FilesystemView('/'.$uid.'/files'); $files_view = new \OC\Files\View('/'.$uid.'/files');
$local_file = $files_view->getLocalFile($filename); $local_file = $files_view->getLocalFile($filename);
$local_file_md5 = \md5_file( $local_file ); $local_file_md5 = \md5_file( $local_file );
@ -248,7 +235,7 @@ class Storage {
*/ */
private static function calculateSize($uid) { private static function calculateSize($uid) {
if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
$versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
$versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath(''); $versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('');
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST); $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST);
@ -273,7 +260,7 @@ class Storage {
*/ */
private static function getAllVersions($uid) { private static function getAllVersions($uid) {
if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
$versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
$versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath(''); $versionsRoot = \OCP\Config::getSystemValue('datadirectory').$versions_fileview->getAbsolutePath('');
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST); $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($versionsRoot), \RecursiveIteratorIterator::CHILD_FIRST);
@ -319,7 +306,7 @@ class Storage {
private static function expire($filename, $versionsSize = null) { private static function expire($filename, $versionsSize = null) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
list($uid, $filename) = self::getUidAndFilename($filename); list($uid, $filename) = self::getUidAndFilename($filename);
$versions_fileview = new \OC_FilesystemView('/'.$uid.'/files_versions'); $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
// get available disk space for user // get available disk space for user
$quota = \OCP\Util::computerFileSize(\OC_Preferences::getValue($uid, 'files', 'quota')); $quota = \OCP\Util::computerFileSize(\OC_Preferences::getValue($uid, 'files', 'quota'));
@ -338,7 +325,7 @@ class Storage {
} }
// calculate available space for version history // calculate available space for version history
$files_view = new \OC_FilesystemView('/'.$uid.'/files'); $files_view = new \OC\Files\View('/'.$uid.'/files');
$rootInfo = $files_view->getFileInfo('/'); $rootInfo = $files_view->getFileInfo('/');
$free = $quota-$rootInfo['size']; // remaining free space for user $free = $quota-$rootInfo['size']; // remaining free space for user
if ( $free > 0 ) { if ( $free > 0 ) {
@ -354,7 +341,7 @@ class Storage {
$versions_by_file = $result['by_file']; $versions_by_file = $result['by_file'];
$all_versions = $result['all']; $all_versions = $result['all'];
} else { } else {
$all_versions = Storage::getVersions($filename); $all_versions = Storage::getVersions($uid, $filename);
$versions_by_file[$filename] = $all_versions; $versions_by_file[$filename] = $all_versions;
} }

View File

@ -258,8 +258,8 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
#expand:hover img, #expand:focus img, #expand:active img { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } #expand:hover img, #expand:focus img, #expand:active img { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
#expanddiv { #expanddiv {
position:absolute; right:0; top:45px; z-index:76; display:none; position:absolute; right:0; top:45px; z-index:76; display:none;
background-color:#444; border-bottom-left-radius:7px; box-shadow: 0 0 20px rgb(29,45,68); background:#383c43 url('../img/noise.png') repeat;
background:#383c43 url('../img/noise.png') repeat; border-bottom:1px #333 solid; border-left:border-bottom:1px #333 solid; border-bottom-left-radius:7px; border-bottom:1px #333 solid; border-left:1px #333 solid;
-moz-box-shadow:0 0 7px rgb(29,45,68); -webkit-box-shadow:0 0 7px rgb(29,45,68); box-shadow:0 0 7px rgb(29,45,68); -moz-box-shadow:0 0 7px rgb(29,45,68); -webkit-box-shadow:0 0 7px rgb(29,45,68); box-shadow:0 0 7px rgb(29,45,68);
} }
#expanddiv a { #expanddiv a {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 566 B

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 519 B

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 789 B

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 566 B

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 519 B

After

Width:  |  Height:  |  Size: 588 B

View File

@ -266,8 +266,9 @@
} }
list.append(list.find('li.creator')); list.append(list.find('li.creator'));
var pos=button.position(); var pos=button.position();
if($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height()) if(($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height())
|| $(document).height()/2 > pos.top && $(document).height() - button.offset().top > (button.offset().top+button.outerHeight() + list.children().length * button.height()))
|| $(document).height()/2 > button.offset().top
) { ) {
list.css({ list.css({
top:pos.top+button.outerHeight()-5, top:pos.top+button.outerHeight()-5,

View File

@ -44,7 +44,11 @@ class OC_Core_LostPassword_Controller {
$msg = $tmpl->fetchPage(); $msg = $tmpl->fetchPage();
$l = OC_L10N::get('core'); $l = OC_L10N::get('core');
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
try {
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
} catch (Exception $e) {
OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
}
self::displayLostPasswordPage(false, true); self::displayLostPasswordPage(false, true);
} else { } else {
self::displayLostPasswordPage(true, false); self::displayLostPasswordPage(true, false);

View File

@ -20,8 +20,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-18 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-17 12:30+0000\n" "PO-Revision-Date: 2013-02-19 22:10+0000\n"
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -164,7 +164,7 @@ msgstr "προσθήκη ομάδας"
#: js/users.js:352 #: js/users.js:352
msgid "A valid username must be provided" msgid "A valid username must be provided"
msgstr "" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη"
#: js/users.js:353 js/users.js:359 js/users.js:374 #: js/users.js:353 js/users.js:359 js/users.js:374
msgid "Error creating user" msgid "Error creating user"
@ -172,7 +172,7 @@ msgstr "Σφάλμα δημιουργίας χρήστη"
#: js/users.js:358 #: js/users.js:358
msgid "A valid password must be provided" msgid "A valid password must be provided"
msgstr "" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό"
#: personal.php:29 personal.php:30 #: personal.php:29 personal.php:30
msgid "__language_name__" msgid "__language_name__"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-16 00:04+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-15 15:00+0000\n" "PO-Revision-Date: 2013-02-19 12:10+0000\n"
"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-16 00:04+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-15 14:31+0000\n" "PO-Revision-Date: 2013-02-19 12:10+0000\n"
"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -11,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-16 00:04+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-15 15:40+0000\n" "PO-Revision-Date: 2013-02-19 12:10+0000\n"
"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"

View File

@ -19,9 +19,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-15 00:04+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-14 23:05+0000\n" "PO-Revision-Date: 2013-02-19 21:50+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: André Koot <meneer@tken.net>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -286,7 +286,7 @@ msgstr "Vanaf link"
#: templates/index.php:40 #: templates/index.php:40
msgid "Deleted files" msgid "Deleted files"
msgstr "" msgstr "Verwijderde bestanden"
#: templates/index.php:46 #: templates/index.php:46
msgid "Cancel upload" msgid "Cancel upload"

View File

@ -7,6 +7,7 @@
# Cyryl Sochacki <>, 2012. # Cyryl Sochacki <>, 2012.
# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013.
# Marcin Małecki <gerber@tkdami.net>, 2011-2012. # Marcin Małecki <gerber@tkdami.net>, 2011-2012.
# Mariusz <fisiu@opensuse.org>, 2013.
# <mosslar@gmail.com>, 2011. # <mosslar@gmail.com>, 2011.
# <mplichta@gmail.com>, 2012. # <mplichta@gmail.com>, 2012.
# Piotr Sokół <psokol@jabster.pl>, 2012. # Piotr Sokół <psokol@jabster.pl>, 2012.
@ -15,9 +16,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-15 00:04+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-14 23:05+0000\n" "PO-Revision-Date: 2013-02-19 15:50+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Mariusz Fik <fisiu@opensuse.org>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -76,7 +77,7 @@ msgstr "Błąd zapisu na dysk"
#: ajax/upload.php:52 #: ajax/upload.php:52
msgid "Not enough storage available" msgid "Not enough storage available"
msgstr "" msgstr "Za mało miejsca"
#: ajax/upload.php:83 #: ajax/upload.php:83
msgid "Invalid directory." msgid "Invalid directory."
@ -282,7 +283,7 @@ msgstr "Z linku"
#: templates/index.php:40 #: templates/index.php:40
msgid "Deleted files" msgid "Deleted files"
msgstr "" msgstr "Pliki usnięte"
#: templates/index.php:46 #: templates/index.php:46
msgid "Cancel upload" msgid "Cancel upload"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ajax/delete.php:22 #: ajax/delete.php:24
#, php-format #, php-format
msgid "Couldn't delete %s permanently" msgid "Couldn't delete %s permanently"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud Core 5.0.0\n" "Project-Id-Version: ownCloud Core 5.0.0\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -3,7 +3,7 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Aranel Surion <aranel@aranelsurion.org>, 2011, 2012. # Aranel Surion <aranel@aranelsurion.org>, 2011-2013.
# Emre <emresaracoglu@live.com>, 2012. # Emre <emresaracoglu@live.com>, 2012.
# <info@beyboo.de>, 2012. # <info@beyboo.de>, 2012.
# Necdet Yücel <necdetyucel@gmail.com>, 2012. # Necdet Yücel <necdetyucel@gmail.com>, 2012.
@ -11,9 +11,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-18 19:50+0000\n" "PO-Revision-Date: 2013-02-18 23:30+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: Aranel Surion <aranel@aranelsurion.org>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -32,7 +32,7 @@ msgstr "Eşleşme hata"
#: ajax/changedisplayname.php:32 #: ajax/changedisplayname.php:32
msgid "Unable to change display name" msgid "Unable to change display name"
msgstr "" msgstr "Ekran adı değiştirilemiyor"
#: ajax/creategroup.php:10 #: ajax/creategroup.php:10
msgid "Group already exists" msgid "Group already exists"
@ -72,7 +72,7 @@ msgstr "Geçersiz istek"
#: ajax/togglegroups.php:12 #: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group" msgid "Admins can't remove themself from the admin group"
msgstr "" msgstr "Yöneticiler kendilerini yönetici grubundan kaldıramaz"
#: ajax/togglegroups.php:28 #: ajax/togglegroups.php:28
#, php-format #, php-format
@ -82,15 +82,15 @@ msgstr "Kullanıcı %s grubuna eklenemiyor"
#: ajax/togglegroups.php:34 #: ajax/togglegroups.php:34
#, php-format #, php-format
msgid "Unable to remove user from group %s" msgid "Unable to remove user from group %s"
msgstr "" msgstr "%s grubundan kullanıcı kaldırılamıyor"
#: ajax/updateapp.php:14 #: ajax/updateapp.php:14
msgid "Couldn't update app." msgid "Couldn't update app."
msgstr "" msgstr "Uygulama güncellenemedi."
#: js/apps.js:30 #: js/apps.js:30
msgid "Update to {appversion}" msgid "Update to {appversion}"
msgstr "" msgstr "{appversion} Güncelle"
#: js/apps.js:36 js/apps.js:76 #: js/apps.js:36 js/apps.js:76
msgid "Disable" msgid "Disable"
@ -102,15 +102,15 @@ msgstr "Etkin"
#: js/apps.js:55 #: js/apps.js:55
msgid "Please wait...." msgid "Please wait...."
msgstr "" msgstr "Lütfen bekleyin...."
#: js/apps.js:84 #: js/apps.js:84
msgid "Updating...." msgid "Updating...."
msgstr "" msgstr "Güncelleniyor...."
#: js/apps.js:87 #: js/apps.js:87
msgid "Error while updating app" msgid "Error while updating app"
msgstr "" msgstr "Uygulama güncellenirken hata"
#: js/apps.js:87 #: js/apps.js:87
msgid "Error" msgid "Error"
@ -118,7 +118,7 @@ msgstr "Hata"
#: js/apps.js:90 #: js/apps.js:90
msgid "Updated" msgid "Updated"
msgstr "" msgstr "Güncellendi"
#: js/personal.js:96 #: js/personal.js:96
msgid "Saving..." msgid "Saving..."
@ -134,7 +134,7 @@ msgstr "geri al"
#: js/users.js:62 #: js/users.js:62
msgid "Unable to remove user" msgid "Unable to remove user"
msgstr "" msgstr "Kullanıcı kaldırılamıyor"
#: js/users.js:75 templates/users.php:26 templates/users.php:80 #: js/users.js:75 templates/users.php:26 templates/users.php:80
#: templates/users.php:105 #: templates/users.php:105
@ -151,19 +151,19 @@ msgstr "Sil"
#: js/users.js:191 #: js/users.js:191
msgid "add group" msgid "add group"
msgstr "" msgstr "grup ekle"
#: js/users.js:352 #: js/users.js:352
msgid "A valid username must be provided" msgid "A valid username must be provided"
msgstr "" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı"
#: js/users.js:353 js/users.js:359 js/users.js:374 #: js/users.js:353 js/users.js:359 js/users.js:374
msgid "Error creating user" msgid "Error creating user"
msgstr "" msgstr "Kullanıcı oluşturulurken hata"
#: js/users.js:358 #: js/users.js:358
msgid "A valid password must be provided" msgid "A valid password must be provided"
msgstr "" msgstr "Geçerli bir parola mutlaka sağlanmalı"
#: personal.php:29 personal.php:30 #: personal.php:29 personal.php:30
msgid "__language_name__" msgid "__language_name__"
@ -184,7 +184,7 @@ msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden e
#: templates/admin.php:29 #: templates/admin.php:29
msgid "Setup Warning" msgid "Setup Warning"
msgstr "" msgstr "Kurulum Uyarısı"
#: templates/admin.php:32 #: templates/admin.php:32
msgid "" msgid ""
@ -199,7 +199,7 @@ msgstr ""
#: templates/admin.php:44 #: templates/admin.php:44
msgid "Module 'fileinfo' missing" msgid "Module 'fileinfo' missing"
msgstr "" msgstr "Modül 'fileinfo' kayıp"
#: templates/admin.php:47 #: templates/admin.php:47
msgid "" msgid ""
@ -352,7 +352,7 @@ msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın "
#: templates/apps.php:29 #: templates/apps.php:29
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
msgstr "" msgstr "<span class=\"licence\"></span>-lisanslayan <span class=\"author\"></span>"
#: templates/apps.php:31 #: templates/apps.php:31
msgid "Update" msgid "Update"
@ -393,7 +393,7 @@ msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin"
#: templates/personal.php:25 #: templates/personal.php:25
msgid "Show First Run Wizard again" msgid "Show First Run Wizard again"
msgstr "" msgstr "İlk Çalıştırma Sihirbazını yeniden göster"
#: templates/personal.php:36 templates/users.php:23 templates/users.php:79 #: templates/personal.php:36 templates/users.php:23 templates/users.php:79
msgid "Password" msgid "Password"
@ -421,19 +421,19 @@ msgstr "Parola değiştir"
#: templates/personal.php:54 templates/users.php:78 #: templates/personal.php:54 templates/users.php:78
msgid "Display Name" msgid "Display Name"
msgstr "" msgstr "Ekran Adı"
#: templates/personal.php:55 #: templates/personal.php:55
msgid "Your display name was changed" msgid "Your display name was changed"
msgstr "" msgstr "Ekran adınız değiştirildi"
#: templates/personal.php:56 #: templates/personal.php:56
msgid "Unable to change your display name" msgid "Unable to change your display name"
msgstr "" msgstr "Ekran adınız değiştirilemiyor"
#: templates/personal.php:59 #: templates/personal.php:59
msgid "Change display name" msgid "Change display name"
msgstr "" msgstr "Ekran adını değiştir"
#: templates/personal.php:68 #: templates/personal.php:68
msgid "Email" msgid "Email"
@ -461,11 +461,11 @@ msgstr "WebDAV"
#: templates/personal.php:89 #: templates/personal.php:89
msgid "Use this address to connect to your ownCloud in your file manager" msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın"
#: templates/users.php:21 templates/users.php:77 #: templates/users.php:21 templates/users.php:77
msgid "Login Name" msgid "Login Name"
msgstr "" msgstr "Giriş Adı"
#: templates/users.php:32 #: templates/users.php:32
msgid "Create" msgid "Create"
@ -473,11 +473,11 @@ msgstr "Oluştur"
#: templates/users.php:35 #: templates/users.php:35
msgid "Default Storage" msgid "Default Storage"
msgstr "" msgstr "Varsayılan Depolama"
#: templates/users.php:41 templates/users.php:139 #: templates/users.php:41 templates/users.php:139
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr "Limitsiz"
#: templates/users.php:59 templates/users.php:154 #: templates/users.php:59 templates/users.php:154
msgid "Other" msgid "Other"
@ -485,16 +485,16 @@ msgstr "Diğer"
#: templates/users.php:84 #: templates/users.php:84
msgid "Storage" msgid "Storage"
msgstr "" msgstr "Depolama"
#: templates/users.php:95 #: templates/users.php:95
msgid "change display name" msgid "change display name"
msgstr "" msgstr "ekran adını değiştir"
#: templates/users.php:99 #: templates/users.php:99
msgid "set new password" msgid "set new password"
msgstr "" msgstr "yeni parola belirle"
#: templates/users.php:134 #: templates/users.php:134
msgid "Default" msgid "Default"
msgstr "" msgstr "Varsayılan"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# пан Володимир <volodya327@gmail.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-12 15:10+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-12 10:07+0000\n" "PO-Revision-Date: 2013-02-19 14:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: volodya327 <volodya327@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -17,23 +18,23 @@ msgstr ""
"Language: uk\n" "Language: uk\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" "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"
#: ajax/delete.php:22 #: ajax/delete.php:24
#, php-format #, php-format
msgid "Couldn't delete %s permanently" msgid "Couldn't delete %s permanently"
msgstr "" msgstr "Неможливо видалити %s назавжди"
#: ajax/undelete.php:41 #: ajax/undelete.php:41
#, php-format #, php-format
msgid "Couldn't restore %s" msgid "Couldn't restore %s"
msgstr "" msgstr "Неможливо відновити %s"
#: js/trash.js:7 js/trash.js:94 #: js/trash.js:7 js/trash.js:94
msgid "perform restore operation" msgid "perform restore operation"
msgstr "" msgstr "виконати операцію відновлення"
#: js/trash.js:33 #: js/trash.js:33
msgid "delete file permanently" msgid "delete file permanently"
msgstr "" msgstr "видалити файл назавжди"
#: js/trash.js:125 templates/index.php:17 #: js/trash.js:125 templates/index.php:17
msgid "Name" msgid "Name"
@ -41,7 +42,7 @@ msgstr "Ім'я"
#: js/trash.js:126 templates/index.php:27 #: js/trash.js:126 templates/index.php:27
msgid "Deleted" msgid "Deleted"
msgstr "" msgstr "Видалено"
#: js/trash.js:135 #: js/trash.js:135
msgid "1 folder" msgid "1 folder"
@ -61,8 +62,8 @@ msgstr "{count} файлів"
#: templates/index.php:9 #: templates/index.php:9
msgid "Nothing in here. Your trash bin is empty!" msgid "Nothing in here. Your trash bin is empty!"
msgstr "" msgstr "Нічого немає. Ваший кошик для сміття пустий!"
#: templates/index.php:20 templates/index.php:22 #: templates/index.php:20 templates/index.php:22
msgid "Restore" msgid "Restore"
msgstr "" msgstr "Відновити"

View File

@ -4,13 +4,14 @@
# #
# Translators: # Translators:
# <skoptev@ukr.net>, 2012. # <skoptev@ukr.net>, 2012.
# пан Володимир <volodya327@gmail.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-08 00:10+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-07 23:11+0000\n" "PO-Revision-Date: 2013-02-19 14:30+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: volodya327 <volodya327@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -21,33 +22,33 @@ msgstr ""
#: ajax/rollbackVersion.php:15 #: ajax/rollbackVersion.php:15
#, php-format #, php-format
msgid "Could not revert: %s" msgid "Could not revert: %s"
msgstr "" msgstr "Не вдалося відновити: %s"
#: history.php:40 #: history.php:40
msgid "success" msgid "success"
msgstr "" msgstr "успішно"
#: history.php:42 #: history.php:42
#, php-format #, php-format
msgid "File %s was reverted to version %s" msgid "File %s was reverted to version %s"
msgstr "" msgstr "Файл %s був відновлений до версії %s"
#: history.php:49 #: history.php:49
msgid "failure" msgid "failure"
msgstr "" msgstr "неуспішно"
#: history.php:51 #: history.php:51
#, php-format #, php-format
msgid "File %s could not be reverted to version %s" msgid "File %s could not be reverted to version %s"
msgstr "" msgstr "Файл %s не може бути відновлений до версії %s"
#: history.php:68 #: history.php:68
msgid "No old versions available" msgid "No old versions available"
msgstr "" msgstr "Старі версії недоступні"
#: history.php:73 #: history.php:73
msgid "No path specified" msgid "No path specified"
msgstr "" msgstr "Шлях не вказаний"
#: js/versions.js:16 #: js/versions.js:16
msgid "History" msgid "History"
@ -55,7 +56,7 @@ msgstr "Історія"
#: templates/history.php:20 #: templates/history.php:20
msgid "Revert a file to a previous version by clicking on its revert button" msgid "Revert a file to a previous version by clicking on its revert button"
msgstr "" msgstr "Відновити файл на попередню версію, натиснувши на кнопку Відновити"
#: templates/settings.php:3 #: templates/settings.php:3
msgid "Files Versioning" msgid "Files Versioning"

View File

@ -7,13 +7,14 @@
# <skoptev@ukr.net>, 2012. # <skoptev@ukr.net>, 2012.
# <victor.dubiniuk@gmail.com>, 2012. # <victor.dubiniuk@gmail.com>, 2012.
# <volodya327@gmail.com>, 2013. # <volodya327@gmail.com>, 2013.
# пан Володимир <volodya327@gmail.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-19 00:05+0100\n" "POT-Creation-Date: 2013-02-20 00:02+0100\n"
"PO-Revision-Date: 2013-02-18 13:40+0000\n" "PO-Revision-Date: 2013-02-19 14:10+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: volodya327 <volodya327@gmail.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -91,51 +92,51 @@ msgstr "Зображення"
#: setup.php:34 #: setup.php:34
msgid "Set an admin username." msgid "Set an admin username."
msgstr "" msgstr "Встановіть ім'я адміністратора."
#: setup.php:37 #: setup.php:37
msgid "Set an admin password." msgid "Set an admin password."
msgstr "" msgstr "Встановіть пароль адміністратора."
#: setup.php:40 #: setup.php:40
msgid "Specify a data folder." msgid "Specify a data folder."
msgstr "" msgstr "Вкажіть теку для даних."
#: setup.php:53 #: setup.php:53
#, php-format #, php-format
msgid "%s enter the database username." msgid "%s enter the database username."
msgstr "" msgstr "%s введіть ім'я користувача бази даних."
#: setup.php:56 #: setup.php:56
#, php-format #, php-format
msgid "%s enter the database name." msgid "%s enter the database name."
msgstr "" msgstr "%s введіть назву бази даних."
#: setup.php:59 #: setup.php:59
#, php-format #, php-format
msgid "%s you may not use dots in the database name" msgid "%s you may not use dots in the database name"
msgstr "" msgstr "%s не можна використовувати крапки в назві бази даних"
#: setup.php:62 #: setup.php:62
#, php-format #, php-format
msgid "%s set the database host." msgid "%s set the database host."
msgstr "" msgstr "%s встановити хост бази даних."
#: setup.php:126 setup.php:294 setup.php:339 #: setup.php:126 setup.php:294 setup.php:339
msgid "PostgreSQL username and/or password not valid" msgid "PostgreSQL username and/or password not valid"
msgstr "" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні"
#: setup.php:127 setup.php:150 setup.php:204 #: setup.php:127 setup.php:150 setup.php:204
msgid "You need to enter either an existing account or the administrator." msgid "You need to enter either an existing account or the administrator."
msgstr "" msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator."
#: setup.php:149 setup.php:427 setup.php:494 #: setup.php:149 setup.php:427 setup.php:494
msgid "Oracle username and/or password not valid" msgid "Oracle username and/or password not valid"
msgstr "" msgstr "Oracle ім'я користувача та/або пароль не дійсні"
#: setup.php:203 #: setup.php:203
msgid "MySQL username and/or password not valid" msgid "MySQL username and/or password not valid"
msgstr "" msgstr "MySQL ім'я користувача та/або пароль не дійсні"
#: setup.php:257 setup.php:360 setup.php:369 setup.php:387 setup.php:397 #: setup.php:257 setup.php:360 setup.php:369 setup.php:387 setup.php:397
#: setup.php:406 setup.php:435 setup.php:501 setup.php:527 setup.php:534 #: setup.php:406 setup.php:435 setup.php:501 setup.php:527 setup.php:534
@ -143,37 +144,37 @@ msgstr ""
#: setup.php:584 #: setup.php:584
#, php-format #, php-format
msgid "DB Error: \"%s\"" msgid "DB Error: \"%s\""
msgstr "" msgstr "Помилка БД: \"%s\""
#: setup.php:258 setup.php:361 setup.php:370 setup.php:388 setup.php:398 #: setup.php:258 setup.php:361 setup.php:370 setup.php:388 setup.php:398
#: setup.php:407 setup.php:436 setup.php:502 setup.php:528 setup.php:535 #: setup.php:407 setup.php:436 setup.php:502 setup.php:528 setup.php:535
#: setup.php:546 setup.php:562 setup.php:570 setup.php:579 #: setup.php:546 setup.php:562 setup.php:570 setup.php:579
#, php-format #, php-format
msgid "Offending command was: \"%s\"" msgid "Offending command was: \"%s\""
msgstr "" msgstr "Команда, що викликала проблему: \"%s\""
#: setup.php:273 #: setup.php:273
#, php-format #, php-format
msgid "MySQL user '%s'@'localhost' exists already." msgid "MySQL user '%s'@'localhost' exists already."
msgstr "" msgstr "Користувач MySQL '%s'@'localhost' вже існує."
#: setup.php:274 #: setup.php:274
msgid "Drop this user from MySQL" msgid "Drop this user from MySQL"
msgstr "" msgstr "Видалити цього користувача з MySQL"
#: setup.php:279 #: setup.php:279
#, php-format #, php-format
msgid "MySQL user '%s'@'%%' already exists" msgid "MySQL user '%s'@'%%' already exists"
msgstr "" msgstr "Користувач MySQL '%s'@'%%' вже існує"
#: setup.php:280 #: setup.php:280
msgid "Drop this user from MySQL." msgid "Drop this user from MySQL."
msgstr "" msgstr "Видалити цього користувача з MySQL."
#: setup.php:553 setup.php:585 #: setup.php:553 setup.php:585
#, php-format #, php-format
msgid "Offending command was: \"%s\", name: %s, password: %s" msgid "Offending command was: \"%s\", name: %s, password: %s"
msgstr "" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s"
#: setup.php:649 #: setup.php:649
msgid "" msgid ""

View File

@ -84,6 +84,9 @@ class OC_FileProxy_Quota extends OC_FileProxy{
if($free==-1) { if($free==-1) {
return $space; return $space;
} }
if ($space < 0){
return $free;
}
return min($free, $space); return min($free, $space);
} }

View File

@ -29,6 +29,8 @@
namespace OC\Files; namespace OC\Files;
const FREE_SPACE_UNKNOWN = -2;
class Filesystem { class Filesystem {
public static $loaded = false; public static $loaded = false;
/** /**

View File

@ -301,4 +301,13 @@ abstract class Common implements \OC\Files\Storage\Storage {
} }
return implode('/', $output); return implode('/', $output);
} }
/**
* get the free space in the storage
* @param $path
* return int
*/
public function free_space($path){
return \OC\Files\FREE_SPACE_UNKNOWN;
}
} }

View File

@ -762,9 +762,13 @@ class OC_Helper {
$maxUploadFilesize = min($upload_max_filesize, $post_max_size); $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
$freeSpace = \OC\Files\Filesystem::free_space($dir); $freeSpace = \OC\Files\Filesystem::free_space($dir);
if($freeSpace !== \OC\Files\FREE_SPACE_UNKNOWN){
$freeSpace = max($freeSpace, 0); $freeSpace = max($freeSpace, 0);
return min($maxUploadFilesize, $freeSpace); return min($maxUploadFilesize, $freeSpace);
} else {
return $maxUploadFilesize;
}
} }
/** /**

View File

@ -16,6 +16,24 @@
"Files" => "Файли", "Files" => "Файли",
"Text" => "Текст", "Text" => "Текст",
"Images" => "Зображення", "Images" => "Зображення",
"Set an admin username." => "Встановіть ім'я адміністратора.",
"Set an admin password." => "Встановіть пароль адміністратора.",
"Specify a data folder." => "Вкажіть теку для даних.",
"%s enter the database username." => "%s введіть ім'я користувача бази даних.",
"%s enter the database name." => "%s введіть назву бази даних.",
"%s you may not use dots in the database name" => "%s не можна використовувати крапки в назві бази даних",
"%s set the database host." => "%s встановити хост бази даних.",
"PostgreSQL username and/or password not valid" => "PostgreSQL ім'я користувача та/або пароль не дійсні",
"You need to enter either an existing account or the administrator." => "Вам потрібно ввести або існуючий обліковий запис або administrator.",
"Oracle username and/or password not valid" => "Oracle ім'я користувача та/або пароль не дійсні",
"MySQL username and/or password not valid" => "MySQL ім'я користувача та/або пароль не дійсні",
"DB Error: \"%s\"" => "Помилка БД: \"%s\"",
"Offending command was: \"%s\"" => "Команда, що викликала проблему: \"%s\"",
"MySQL user '%s'@'localhost' exists already." => "Користувач MySQL '%s'@'localhost' вже існує.",
"Drop this user from MySQL" => "Видалити цього користувача з MySQL",
"MySQL user '%s'@'%%' already exists" => "Користувач MySQL '%s'@'%%' вже існує",
"Drop this user from MySQL." => "Видалити цього користувача з MySQL.",
"Offending command was: \"%s\", name: %s, password: %s" => "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.",
"Please double check the <a href='%s'>installation guides</a>." => "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.", "Please double check the <a href='%s'>installation guides</a>." => "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>.",
"seconds ago" => "секунди тому", "seconds ago" => "секунди тому",

View File

@ -75,7 +75,7 @@ class OC_Util {
public static function getVersion() { public static function getVersion() {
// hint: We only can count up. So the internal version number // hint: We only can count up. So the internal version number
// of ownCloud 4.5 will be 4.90.0. This is not visible to the user // of ownCloud 4.5 will be 4.90.0. This is not visible to the user
return array(4, 92, 10); return array(4, 93, 10);
} }
/** /**
@ -83,7 +83,7 @@ class OC_Util {
* @return string * @return string
*/ */
public static function getVersionString() { public static function getVersionString() {
return '5.0 alpha 1'; return '5.0 beta 1';
} }
/** /**

View File

@ -29,7 +29,9 @@
"Group Admin" => "Ομάδα Διαχειριστών", "Group Admin" => "Ομάδα Διαχειριστών",
"Delete" => "Διαγραφή", "Delete" => "Διαγραφή",
"add group" => "προσθήκη ομάδας", "add group" => "προσθήκη ομάδας",
"A valid username must be provided" => "Πρέπει να δοθεί έγκυρο όνομα χρήστη",
"Error creating user" => "Σφάλμα δημιουργίας χρήστη", "Error creating user" => "Σφάλμα δημιουργίας χρήστη",
"A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό",
"__language_name__" => "__όνομα_γλώσσας__", "__language_name__" => "__όνομα_γλώσσας__",
"Security Warning" => "Προειδοποίηση Ασφαλείας", "Security Warning" => "Προειδοποίηση Ασφαλείας",
"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή.", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή.",

View File

@ -1,6 +1,7 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", "Unable to load list from App Store" => "App Store'dan liste yüklenemiyor",
"Authentication error" => "Eşleşme hata", "Authentication error" => "Eşleşme hata",
"Unable to change display name" => "Ekran adı değiştirilemiyor",
"Group already exists" => "Grup zaten mevcut", "Group already exists" => "Grup zaten mevcut",
"Unable to add group" => "Gruba eklenemiyor", "Unable to add group" => "Gruba eklenemiyor",
"Could not enable app. " => "Uygulama devreye alınamadı", "Could not enable app. " => "Uygulama devreye alınamadı",
@ -10,19 +11,34 @@
"Unable to delete user" => "Kullanıcı silinemiyor", "Unable to delete user" => "Kullanıcı silinemiyor",
"Language changed" => "Dil değiştirildi", "Language changed" => "Dil değiştirildi",
"Invalid request" => "Geçersiz istek", "Invalid request" => "Geçersiz istek",
"Admins can't remove themself from the admin group" => "Yöneticiler kendilerini yönetici grubundan kaldıramaz",
"Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor",
"Unable to remove user from group %s" => "%s grubundan kullanıcı kaldırılamıyor",
"Couldn't update app." => "Uygulama güncellenemedi.",
"Update to {appversion}" => "{appversion} Güncelle",
"Disable" => "Etkin değil", "Disable" => "Etkin değil",
"Enable" => "Etkin", "Enable" => "Etkin",
"Please wait...." => "Lütfen bekleyin....",
"Updating...." => "Güncelleniyor....",
"Error while updating app" => "Uygulama güncellenirken hata",
"Error" => "Hata", "Error" => "Hata",
"Updated" => "Güncellendi",
"Saving..." => "Kaydediliyor...", "Saving..." => "Kaydediliyor...",
"deleted" => "silindi", "deleted" => "silindi",
"undo" => "geri al", "undo" => "geri al",
"Unable to remove user" => "Kullanıcı kaldırılamıyor",
"Groups" => "Gruplar", "Groups" => "Gruplar",
"Group Admin" => "Yönetici Grubu ", "Group Admin" => "Yönetici Grubu ",
"Delete" => "Sil", "Delete" => "Sil",
"add group" => "grup ekle",
"A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı",
"Error creating user" => "Kullanıcı oluşturulurken hata",
"A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı",
"__language_name__" => "__dil_adı__", "__language_name__" => "__dil_adı__",
"Security Warning" => "Güvenlik Uyarisi", "Security Warning" => "Güvenlik Uyarisi",
"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.",
"Setup Warning" => "Kurulum Uyarısı",
"Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp",
"More" => "Daha fazla", "More" => "Daha fazla",
"Version" => "Sürüm", "Version" => "Sürüm",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Geliştirilen Taraf<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is altında lisanslanmıştır <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Geliştirilen Taraf<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is altında lisanslanmıştır <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
@ -30,6 +46,7 @@
"More Apps" => "Daha fazla App", "More Apps" => "Daha fazla App",
"Select an App" => "Bir uygulama seçin", "Select an App" => "Bir uygulama seçin",
"See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ",
"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisanslayan <span class=\"author\"></span>",
"Update" => "Güncelleme", "Update" => "Güncelleme",
"User Documentation" => "Kullanıcı Belgelendirmesi", "User Documentation" => "Kullanıcı Belgelendirmesi",
"Administrator Documentation" => "Yönetici Belgelendirmesi", "Administrator Documentation" => "Yönetici Belgelendirmesi",
@ -38,18 +55,31 @@
"Bugtracker" => "Hata Takip Sistemi", "Bugtracker" => "Hata Takip Sistemi",
"Commercial Support" => "Ticari Destek", "Commercial Support" => "Ticari Destek",
"Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin", "Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin",
"Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster",
"Password" => "Parola", "Password" => "Parola",
"Your password was changed" => "Şifreniz değiştirildi", "Your password was changed" => "Şifreniz değiştirildi",
"Unable to change your password" => "Parolanız değiştirilemiyor", "Unable to change your password" => "Parolanız değiştirilemiyor",
"Current password" => "Mevcut parola", "Current password" => "Mevcut parola",
"New password" => "Yeni parola", "New password" => "Yeni parola",
"Change password" => "Parola değiştir", "Change password" => "Parola değiştir",
"Display Name" => "Ekran Adı",
"Your display name was changed" => "Ekran adınız değiştirildi",
"Unable to change your display name" => "Ekran adınız değiştirilemiyor",
"Change display name" => "Ekran adını değiştir",
"Email" => "Eposta", "Email" => "Eposta",
"Your email address" => "Eposta adresiniz", "Your email address" => "Eposta adresiniz",
"Fill in an email address to enable password recovery" => "Parola sıfırlamayı aktifleştirmek için eposta adresi girin", "Fill in an email address to enable password recovery" => "Parola sıfırlamayı aktifleştirmek için eposta adresi girin",
"Language" => "Dil", "Language" => "Dil",
"Help translate" => "Çevirilere yardım edin", "Help translate" => "Çevirilere yardım edin",
"WebDAV" => "WebDAV", "WebDAV" => "WebDAV",
"Use this address to connect to your ownCloud in your file manager" => "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın",
"Login Name" => "Giriş Adı",
"Create" => "Oluştur", "Create" => "Oluştur",
"Other" => "Diğer" "Default Storage" => "Varsayılan Depolama",
"Unlimited" => "Limitsiz",
"Other" => "Diğer",
"Storage" => "Depolama",
"change display name" => "ekran adını değiştir",
"set new password" => "yeni parola belirle",
"Default" => "Varsayılan"
); );