matrix-dimension/web/app/configs/widget/google-docs/gdoc.widget.component.ts
Ahmad 9dc4e99aca translation
- the traslation feature without the changes from other branches
2020-10-23 13:30:20 +02:00

14 lines
552 B
TypeScript

import { WidgetComponent } from "../widget.component";
import { WIDGET_GOOGLE_DOCS } from "../../../shared/models/widget";
import { Component } from "@angular/core";
import { TranslateService } from "@ngx-translate/core";
@Component({
templateUrl: "gdoc.widget.component.html",
styleUrls: ["gdoc.widget.component.scss"],
})
export class GoogleDocsWidgetConfigComponent extends WidgetComponent {
constructor(public translate: TranslateService) {
super(WIDGET_GOOGLE_DOCS, "Google Doc", "generic", translate , "googleDocs");
}
}