diff --git a/src/app/news/news-list.component.ts b/src/app/news/news-list.component.ts index fb0b0cf5bd..daf1bf1d2c 100644 --- a/src/app/news/news-list.component.ts +++ b/src/app/news/news-list.component.ts @@ -22,7 +22,7 @@ import { dedupeShelfReduce } from '../shared/utils'; export class NewsListComponent implements OnChanges { @Input() items: any[] = []; - @Input() editSuccessMessage = $localize`News has been updated successfully.`; + @Input() editSuccessMessage = $localize`Message updated successfully.`; @Input() viewableBy = 'community'; @Input() viewableId: string; @Input() editable = true; diff --git a/src/app/shared/forms/planet-tag-input-dialog.component.ts b/src/app/shared/forms/planet-tag-input-dialog.component.ts index 418fdbbf44..35d967fb7d 100644 --- a/src/app/shared/forms/planet-tag-input-dialog.component.ts +++ b/src/app/shared/forms/planet-tag-input-dialog.component.ts @@ -223,10 +223,10 @@ export class PlanetTagInputDialogComponent { onNext: (data) => { this.data.initTags(); this.deleteDialog.close(); - this.planetMessageService.showMessage($localize`Tag deleted: ${tag.name}`); + this.planetMessageService.showMessage($localize`Collection deleted: ${tag.name}`); this.resetValidationAndCheck(this.addTagForm); }, - onError: (error) => this.planetMessageService.showAlert($localize`There was a problem deleting this tag.`) + onError: (error) => this.planetMessageService.showAlert($localize`There was a problem deleting this collection.`) }; }