Compressor minor changes and translations
This commit is contained in:
parent
6df3939207
commit
9b0d96e99c
@ -880,4 +880,9 @@ body::-webkit-scrollbar-thumb {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#selected-files {
|
||||
padding-top: 10px;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* End */
|
@ -38,9 +38,9 @@
|
||||
<h1 id="compressor-header">Video Compressor</h1>
|
||||
|
||||
<div class="drop-zone">
|
||||
<p>Drag and drop files here or</p>
|
||||
<p>Drag and drop file(s)</p>
|
||||
<input type="file" id="fileInput" multiple hidden>
|
||||
<label for="fileInput" class="fileinput-btn">Choose Files</label>
|
||||
<label for="fileInput" class="fileinput-btn">Choose File(s)</label>
|
||||
<div id="selected-files">No files selected</div>
|
||||
</div>
|
||||
|
||||
|
@ -484,8 +484,9 @@ function createProgressItem(filename, status, data, itemId) {
|
||||
const newStatus = document.createElement("div");
|
||||
newStatus.id = itemId;
|
||||
newStatus.className = `status-item ${status}`;
|
||||
const visibleFilename = filename.substring(0, 45);
|
||||
newStatus.innerHTML = `
|
||||
<div class="filename">${filename}</div>
|
||||
<div class="filename">${visibleFilename}</div>
|
||||
<div id="${itemId + "_prog"}" class="itemProgress">${data}</div>
|
||||
`;
|
||||
statusElement.append(newStatus);
|
||||
|
@ -112,5 +112,20 @@
|
||||
"You need to give the app permission to access home directory to use this. You can do it with Flatseal by enabling the permission with text 'filesystem=home'": "You need to give the app permission to access home directory to use this. You can do it with Flatseal by enabling the permission with text 'filesystem=home'",
|
||||
"No Audio":"No Audio",
|
||||
"Proxy": "Proxy",
|
||||
"Clear Downloads": "Clear Downloads"
|
||||
"Clear Downloads": "Clear Downloads",
|
||||
"Compressor": "Compressor",
|
||||
"Drag and drop file(s)": "Drag and drop file(s)",
|
||||
"Choose File(s)": "Choose File(s)",
|
||||
"No files selected": "No files selected",
|
||||
"Video format": "Video format",
|
||||
"Video Encoder": "Video Encoder",
|
||||
"Compression Speed": "Compression Speed",
|
||||
"Video Quality": "Video Quality",
|
||||
"Audio Format": "Audio Format",
|
||||
"Output suffix": "Output suffix",
|
||||
"Output in same folder": "Output in same folder",
|
||||
"Select custom folder": "Select custom folder",
|
||||
"Start Compression": "Start Compression",
|
||||
"Cancel": "Cancel",
|
||||
"Error! Click for details": "Error! Click for details"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user