diff options
author | Filip Bengtsson <me@autom.zone> | 2020-02-21 18:51:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 18:51:05 +0100 |
commit | 97eae8382eed6267f8f1e04e5aa47b314111c06c (patch) | |
tree | d9321d0258c7f2ce5554c50f12339e546710c990 /client/src/app/shared/instance | |
parent | 14571f1995e3a1868a3280b7aad5005cff051c7d (diff) | |
download | PeerTube-97eae8382eed6267f8f1e04e5aa47b314111c06c.tar.gz PeerTube-97eae8382eed6267f8f1e04e5aa47b314111c06c.tar.zst PeerTube-97eae8382eed6267f8f1e04e5aa47b314111c06c.zip |
Mark additional strings as translatable (#2507)
Diffstat (limited to 'client/src/app/shared/instance')
-rw-r--r-- | client/src/app/shared/instance/instance-features-table.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/instance/instance-features-table.component.html b/client/src/app/shared/instance/instance-features-table.component.html index 51a56d414..99b854d13 100644 --- a/client/src/app/shared/instance/instance-features-table.component.html +++ b/client/src/app/shared/instance/instance-features-table.component.html | |||
@@ -37,8 +37,8 @@ | |||
37 | <tr> | 37 | <tr> |
38 | <td i18n class="sub-label">Video uploads</td> | 38 | <td i18n class="sub-label">Video uploads</td> |
39 | <td> | 39 | <td> |
40 | <span *ngIf="serverConfig.autoBlacklist.videos.ofUsers.enabled">Requires manual validation by moderators</span> | 40 | <span i18n *ngIf="serverConfig.autoBlacklist.videos.ofUsers.enabled">Requires manual validation by moderators</span> |
41 | <span *ngIf="!serverConfig.autoBlacklist.videos.ofUsers.enabled">Automatically published</span> | 41 | <span i18n *ngIf="!serverConfig.autoBlacklist.videos.ofUsers.enabled">Automatically published</span> |
42 | </td> | 42 | </td> |
43 | </tr> | 43 | </tr> |
44 | 44 | ||