aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-02-21 16:50:12 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-02-21 16:51:34 +0100
commit14571f1995e3a1868a3280b7aad5005cff051c7d (patch)
tree00ddaece6a74c864c71686b57cc24306c66e4539 /client/src/app/+accounts
parent4c1def5fd8e9f483238eb38e221f555e2e6bbf07 (diff)
downloadPeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.tar.gz
PeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.tar.zst
PeerTube-14571f1995e3a1868a3280b7aad5005cff051c7d.zip
Replace uppercase text-transform by capitalized text source
fixes #2085
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r--client/src/app/+accounts/account-about/account-about.component.html4
-rw-r--r--client/src/app/+accounts/account-video-channels/account-video-channels.component.html2
-rw-r--r--client/src/app/+accounts/accounts.component.ts6
3 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+accounts/account-about/account-about.component.html b/client/src/app/+accounts/account-about/account-about.component.html
index f857e5a52..3ae11b49c 100644
--- a/client/src/app/+accounts/account-about/account-about.component.html
+++ b/client/src/app/+accounts/account-about/account-about.component.html
@@ -1,11 +1,11 @@
1<div *ngIf="account" class="row"> 1<div *ngIf="account" class="row">
2 <div class="block col-md-6 col-sm-12"> 2 <div class="block col-md-6 col-sm-12">
3 <div i18n class="small-title">Description</div> 3 <div i18n class="small-title">DESCRIPTION</div>
4 <div class="content" [innerHtml]="getAccountDescription()"></div> 4 <div class="content" [innerHtml]="getAccountDescription()"></div>
5 </div> 5 </div>
6 6
7 <div class="block col-md-6 col-sm-12"> 7 <div class="block col-md-6 col-sm-12">
8 <div i18n class="small-title">Stats</div> 8 <div i18n class="small-title">STATS</div>
9 9
10 <div i18n class="content">Joined {{ account.createdAt | date }}</div> 10 <div i18n class="content">Joined {{ account.createdAt | date }}</div>
11 </div> 11 </div>
diff --git a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
index 781156840..8f1ff21a5 100644
--- a/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
+++ b/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
@@ -25,7 +25,7 @@
25 </div> 25 </div>
26 26
27 <a *ngIf="getVideosOf(videoChannel).length !== 0" class="show-more" i18n [routerLink]="getVideoChannelLink(videoChannel)"> 27 <a *ngIf="getVideosOf(videoChannel).length !== 0" class="show-more" i18n [routerLink]="getVideoChannelLink(videoChannel)">
28 Show this channel 28 SHOW THIS CHANNEL
29 </a> 29 </a>
30 </div> 30 </div>
31 </div> 31 </div>
diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts
index 4fea0e4ed..061eb953a 100644
--- a/client/src/app/+accounts/accounts.component.ts
+++ b/client/src/app/+accounts/accounts.component.ts
@@ -74,9 +74,9 @@ export class AccountsComponent implements OnInit, OnDestroy {
74 ) 74 )
75 75
76 this.links = [ 76 this.links = [
77 { label: this.i18n('Video channels'), routerLink: 'video-channels' }, 77 { label: this.i18n('VIDEO CHANNELS'), routerLink: 'video-channels' },
78 { label: this.i18n('Videos'), routerLink: 'videos' }, 78 { label: this.i18n('VIDEOS'), routerLink: 'videos' },
79 { label: this.i18n('About'), routerLink: 'about' } 79 { label: this.i18n('ABOUT'), routerLink: 'about' }
80 ] 80 ]
81 } 81 }
82 82