]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/menu/language-chooser.component.html
Update client according to new model paths
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / language-chooser.component.html
CommitLineData
63347a0f
C
1<ng-template #modal let-hide="close">
2 <div class="modal-header">
3 <h4 i18n class="modal-title">Change the language</h4>
4 <span class="close" aria-label="Close" role="button" (click)="hide()"></span>
5 </div>
8afc19a6 6
63347a0f
C
7 <div class="modal-body">
8 <a *ngFor="let lang of languages" [href]="buildLanguageLink(lang)">{{ lang.label }}</a>
8afc19a6 9 </div>
63347a0f 10</ng-template>