]> source.dussan.org Git - nextcloud-server.git/commitdiff
add translation strings & add margin to uploaded files-list
authorChristopher Mueller <chrinimue@posteo.me>
Tue, 31 Mar 2020 17:47:22 +0000 (17:47 +0000)
committerChristopher Mueller <chrinimue@posteo.me>
Tue, 31 Mar 2020 17:47:22 +0000 (17:47 +0000)
Signed-off-by: Christopher Mueller <chrinimue@posteo.me>
apps/files_sharing/css/public.scss
apps/files_sharing/js/files_drop.js
apps/files_sharing/templates/public.php

index aad2e97dec4a710771edbc2e1de56f4b7ccf7b3c..f6d889370fd931f0d4c970e1c4e76edaad44d193 100644 (file)
@@ -139,7 +139,7 @@ thead {
 
 #public-upload #emptycontent ul {
        width: 230px;
-       margin: 5px auto;
+       margin: 5px auto 5vh;
        text-align: left;
 }
 
index ba280b2544d12f3a932716b7c18b4fcb123f17c2..8bf80554b532a963c9542a06926c2fa397f35408 100644 (file)
@@ -66,7 +66,6 @@
 
                        $('#drop-uploaded-files').append(output({isUploading: true, name: data.files[0].name}));
                        $('[data-toggle="tooltip"]').tooltip();
-                       $('#drop-upload-status').text('waiting...');
                        data.submit();
 
                        return true;
                                sequentialUploads: true,
                                start: function(e) {
                                        self._uploading = true;
-                                       $('#drop-upload-status').text('starting');
                                },
                                stop: function(e) {
                                        self._uploading = false;
                                },
                                add: function(e, data) {
                                        Drop.addFileToUpload(e, data);
-                                       $('#drop-upload-status').text('waiting...');
+                                       $('#drop-upload-status').text(t('files_sharing', 'waiting...'));
                                        //we return true to keep trying to upload next file even
                                        //if addFileToUpload did not like the privious one
                                        return true;
                                                        'Could not upload "{filename}"',
                                                        {filename: data.files[0].name}
                                                        ));
+                                       $('#drop-upload-status').text(t('files_sharing', 'error'));
                                        var errorIconSrc = OC.imagePath('core', 'actions/error.svg');
                                        var fileItem = output({isUploading: false, iconSrc: errorIconSrc, name: data.files[0].name});
                                        Drop.updateFileItem(data.files[0].name, fileItem);
                                        var progress = parseInt(data.loaded / data.total * 100, 10);
                                        if(progress === 100) {
                                                 $('#drop-upload-progress-bar').val(100);
-                                                $('#drop-upload-status').text('finished');
+                                                $('#drop-upload-status').text(t('files_sharing', 'finished'));
                                         } else {
                                                 $('#drop-upload-progress-bar').val(progress);
                                                 $('#drop-upload-status').text(progress + '%');
index e029279535e78ab9d25fa955b49e4ec2134f0ac3..edde05d9f65076885f782f1f398bcbe1ff5354b4 100644 (file)
@@ -99,7 +99,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
 
                        <input type="file" name="files[]" class="hidden" multiple>
                        <a href="#" class="button icon-upload"><?php p($l->t('Select or drop files')) ?></a>
-                       <div id="drop-upload-progress-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploading files')) ?></div>
+                       <div id="drop-upload-progress-indicator" style="padding-top: 25px;" class="hidden"><span class="icon-loading-small"></span><?php p($l->t('Uploading files')) ?></div>
                        <div id="drop-upload-done-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploaded files:')) ?></div>
                        <ul id="drop-uploaded-files"></ul>