]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Migrate i18n to localize
authorkimsible <kimsible@users.noreply.github.com>
Fri, 14 Aug 2020 12:34:47 +0000 (14:34 +0200)
committerChocobozzz <chocobozzz@cpy.re>
Fri, 14 Aug 2020 13:03:38 +0000 (15:03 +0200)
client/src/app/+videos/+video-watch/comment/video-comment-add.component.ts

index 3fa5fd623af7a419549cdbfbe1f1c87da70966db..41edb35abfc5b087a5332a3b0c20ba08bad3783c 100644 (file)
@@ -7,7 +7,6 @@ import { Video } from '@app/shared/shared-main'
 import { VideoComment, VideoCommentService } from '@app/shared/shared-video-comment'
 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
 import { VideoCommentCreate } from '@shared/models'
-import { I18n } from '@ngx-translate/i18n-polyfill'
 
 @Component({
   selector: 'my-video-comment-add',
@@ -39,7 +38,6 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges,
     private videoCommentService: VideoCommentService,
     private modalService: NgbModal,
     private router: Router,
-    private i18n: I18n
   ) {
     super()
   }
@@ -57,9 +55,9 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges,
 
     if (this.user) {
       if (!this.parentComment) {
-        this.addingCommentButtonValue = this.i18n('Comment')
+        this.addingCommentButtonValue = $localize`Comment`
       } else {
-        this.addingCommentButtonValue = this.i18n('Reply')
+        this.addingCommentButtonValue = $localize`Reply`
       }
 
       this.initTextValue()