mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-22 22:58:25 +00:00
Add File Versioning to folder info (fixes #963)
Could potentially use shorter value strings ("Simple" vs "Simple File Versioning"), but this avoid introducing unnecessary strings to translate - can always be changed in the future.
This commit is contained in:
parent
a40f2b9fa0
commit
f47a5a309d
@ -150,6 +150,13 @@
|
|||||||
<th><span class="glyphicon glyphicon-refresh"></span> <span translate>Rescan Interval</span></th>
|
<th><span class="glyphicon glyphicon-refresh"></span> <span translate>Rescan Interval</span></th>
|
||||||
<td class="text-right">{{folder.RescanIntervalS}} s</td>
|
<td class="text-right">{{folder.RescanIntervalS}} s</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr ng-if="folder.Versioning.Type">
|
||||||
|
<th><span class="glyphicon glyphicon-tags"></span> <span translate>File Versioning</span></th>
|
||||||
|
<td class="text-right" ng-switch="folder.Versioning.Type">
|
||||||
|
<span ng-switch-when="staggered" translate>Staggered File Versioning</span>
|
||||||
|
<span ng-switch-when="simple" translate>Simple File Versioning</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th><span class="glyphicon glyphicon-share-alt"></span> <span translate>Shared With</span></th>
|
<th><span class="glyphicon glyphicon-share-alt"></span> <span translate>Shared With</span></th>
|
||||||
<td class="text-right">{{sharesFolder(folder)}}</td>
|
<td class="text-right">{{sharesFolder(folder)}}</td>
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user