mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-01-10 04:07:35 +02:00
Add active shares to sharing list
This commit is contained in:
parent
f642f362d0
commit
30383d56ba
@ -1,33 +1,42 @@
|
||||
|
||||
<ng-container *ngIf="shares && shares.length >0">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th i18n>Key</th>
|
||||
<th i18n>Folder</th>
|
||||
<th i18n>Creator</th>
|
||||
<th i18n>Expires</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let share of shares">
|
||||
<td>{{share.sharingKey}}</td>
|
||||
<td>{{share.path}}</td>
|
||||
<td>{{share.creator.name}}</td>
|
||||
<td>{{share.expires | date}}</td>
|
||||
<td>
|
||||
<button (click)="deleteSharing(share)" class="btn btn-danger float-end">
|
||||
<span class="oi oi-trash" aria-hidden="true" aria-label="Delete"></span>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngIf="!shares || shares.length == 0">
|
||||
<div class="panel-info" i18n>
|
||||
No sharing was created.
|
||||
<ng-container *ngIf="Enabled">
|
||||
<div class="row mt-2">
|
||||
<div class="col-auto">
|
||||
<h5 i18n>Active shares</h5>
|
||||
</div>
|
||||
<div class="col">
|
||||
<hr/>
|
||||
</div>
|
||||
</div>
|
||||
<ng-container *ngIf="shares && shares.length >0">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th i18n>Key</th>
|
||||
<th i18n>Folder</th>
|
||||
<th i18n>Creator</th>
|
||||
<th i18n>Expires</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let share of shares">
|
||||
<td>{{share.sharingKey}}</td>
|
||||
<td>{{share.path}}</td>
|
||||
<td>{{share.creator.name}}</td>
|
||||
<td>{{share.expires | date}}</td>
|
||||
<td>
|
||||
<button (click)="deleteSharing(share)" class="btn btn-danger float-end">
|
||||
<span class="oi oi-trash" aria-hidden="true" aria-label="Delete"></span>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngIf="!shares || shares.length == 0">
|
||||
<div class="panel-info" i18n>
|
||||
No sharing was created.
|
||||
</div>
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
|
@ -1,6 +1,7 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
import {SharingDTO} from '../../../../../common/entities/SharingDTO';
|
||||
import {SharingListService} from './sharing-list.service';
|
||||
import {SettingsService} from '../settings.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-settigns-sharings-list',
|
||||
@ -11,13 +12,18 @@ export class SharingsListComponent implements OnInit {
|
||||
|
||||
public shares: SharingDTO[] = [];
|
||||
|
||||
constructor(public sharingList: SharingListService) {
|
||||
constructor(public sharingList: SharingListService,
|
||||
private settingsService: SettingsService) {
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.getSharingList();
|
||||
}
|
||||
|
||||
get Enabled(): boolean {
|
||||
return this.settingsService.settings.value.Sharing.enabled;
|
||||
}
|
||||
|
||||
async deleteSharing(sharing: SharingDTO): Promise<void> {
|
||||
await this.sharingList.deleteSharing(sharing);
|
||||
await this.getSharingList();
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>任务完成</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Auftrag abgeschlossen</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Job finished</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Trabajo finalizado</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Tâche terminée</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Feladat végzett</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Aktív megosztások</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Azonosító</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Mappa</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Létrehozta</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Lejárat</target>
|
||||
</trans-unit>
|
||||
@ -3250,7 +3258,7 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target>Nincs megosztás.</target>
|
||||
</trans-unit>
|
||||
@ -3886,4 +3894,4 @@
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
</xliff>
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Pekerjaan selesai</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target state="translated">Lavoro terminato</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Zadanie zakończone</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Job finished</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Job finished</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
@ -3214,11 +3214,19 @@
|
||||
</context-group>
|
||||
<target>Jobb färdigt</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2608815712321922387" datatype="html">
|
||||
<source>Active shares</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">4,5</context>
|
||||
</context-group>
|
||||
<target>Active shares</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="2176659033176029418" datatype="html">
|
||||
<source>Key</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
</context-group>
|
||||
<target>Key</target>
|
||||
</trans-unit>
|
||||
@ -3226,7 +3234,7 @@
|
||||
<source>Folder</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">7,8</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<target>Folder</target>
|
||||
</trans-unit>
|
||||
@ -3234,7 +3242,7 @@
|
||||
<source>Creator</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">8,9</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<target>Creator</target>
|
||||
</trans-unit>
|
||||
@ -3242,7 +3250,7 @@
|
||||
<source>Expires</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">9,10</context>
|
||||
<context context-type="linenumber">17,18</context>
|
||||
</context-group>
|
||||
<target>Expires</target>
|
||||
</trans-unit>
|
||||
@ -3250,9 +3258,9 @@
|
||||
<source> No sharing was created. </source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/frontend/app/ui/settings/sharings-list/sharings-list.component.html</context>
|
||||
<context context-type="linenumber">31,32</context>
|
||||
<context context-type="linenumber">39,40</context>
|
||||
</context-group>
|
||||
<target> No sharing was created. </target>
|
||||
<target>No sharing was created.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="5253186130625984783" datatype="html">
|
||||
<source> It seems that you are running the application in a Docker container. This setting should not be changed in docker. Make sure, that you know what you are doing.
|
||||
|
Loading…
Reference in New Issue
Block a user