diff options
author | treac1e <36190088+treac1e@users.noreply.github.com> | 2022-10-26 17:34:21 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-10-27 08:54:13 +0200 |
commit | b67580aa65cd14be81353c6cfcec9802e093651d (patch) | |
tree | ff334644330576c322633953c3980b29e4b19b0e | |
parent | 6689214920897e9b555a5acaf4a3c2db527be32e (diff) | |
download | PeerTube-b67580aa65cd14be81353c6cfcec9802e093651d.tar.gz PeerTube-b67580aa65cd14be81353c6cfcec9802e093651d.tar.zst PeerTube-b67580aa65cd14be81353c6cfcec9802e093651d.zip |
Update privacy-concerns.component.html
When translated, the white space after "Reminder:" is cut off, so in other languages there is no white space between the "Reminder:" and the following text, which looks ugly (e.g. in the German translation). A solution is to move the space behind the translated phrase (using the html-entity for space  ).
-rw-r--r-- | client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html b/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html index b64d45564..7677ae836 100644 --- a/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html +++ b/client/src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html | |||
@@ -1,7 +1,7 @@ | |||
1 | <div class="privacy-concerns" *ngIf="display"> | 1 | <div class="privacy-concerns" *ngIf="display"> |
2 | <div class="privacy-concerns-text"> | 2 | <div class="privacy-concerns-text"> |
3 | <span class="me-2"> | 3 | <span class="me-2"> |
4 | <strong i18n>Friendly Reminder: </strong> | 4 | <strong i18n>Friendly Reminder:</strong>  |
5 | <ng-container i18n> | 5 | <ng-container i18n> |
6 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. | 6 | the sharing system used for this video implies that some technical information about your system (such as a public IP address) can be sent to other peers. |
7 | </ng-container> | 7 | </ng-container> |