gui: Allow to translate action and type in Recent Changes modal (#8548)

Currently, action and type are both displayed only in English. This
commit makes it possible to translate both of them.

Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
This commit is contained in:
tomasz1986
2023-01-05 14:33:03 +01:00
committed by GitHub
parent ded881c372
commit 458d6cff2a
2 changed files with 14 additions and 2 deletions
@@ -17,8 +17,16 @@
<tr ng-repeat="changeEvent in globalChangeEvents">
<td ng-if="changeEvent.data.modifiedBy">{{friendlyNameFromShort(changeEvent.data.modifiedBy)}}</td>
<td ng-if="!changeEvent.data.modifiedBy"><span translate>Unknown</span></td>
<td>{{changeEvent.data.action}}</td>
<td>{{changeEvent.data.type}}</td>
<td ng-switch="changeEvent.data.action">
<span ng-switch-when="modified" translate>modified</span>
<span ng-switch-when="deleted" translate>deleted</span>
<span ng-switch-default>{{changeEvent.data.action}}</span>
</td>
<td ng-switch="changeEvent.data.type">
<span ng-switch-when="file" translate>file</span>
<span ng-switch-when="folder" translate>folder</span>
<span ng-switch-default>{{changeEvent.data.type}}</span>
</td>
<td class="no-overflow-ellipse">{{folderLabel(changeEvent.data.folder)}}</td>
<td class="file-path no-overflow-ellipse">{{changeEvent.data.path}}</td>
<td class="no-overflow-ellipse">{{changeEvent.time | date:"yyyy-MM-dd HH:mm:ss"}}</td>