Skip to content

Commit

Permalink
remove translation of nothing (#4449)
Browse files Browse the repository at this point in the history
  • Loading branch information
Elblinator authored Dec 4, 2024
1 parent 7b6050b commit b8f1e5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,8 @@ export class PdfDocumentService {

// Add no heading text if there are logos on the right and left.
if (header && !(logoHeaderRightUrl && logoHeaderLeftUrl)) {
const name = this.translate.instant(this.meetingSettingsService.instant(`name`));
const description = this.translate.instant(this.meetingSettingsService.instant(`description`));
const name = this.meetingSettingsService.instant(`name`);
const description = this.meetingSettingsService.instant(`description`);
const location = this.meetingSettingsService.instant(`location`);
const start_time = this.meetingSettingsService.instant(`start_time`);
const end_time = this.meetingSettingsService.instant(`end_time`);
Expand Down

0 comments on commit b8f1e5a

Please sign in to comment.