From 46473e7869b83da7fdb2ae1b7730eb21c132a77e Mon Sep 17 00:00:00 2001 From: Jesse Washburn <142361664+jessewashburn@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:54:55 -0500 Subject: [PATCH] teams: smoother voices titles (fixes #8086)(fixes #8087) (#8089) Co-authored-by: dogi --- package.json | 2 +- src/app/news/news-list.component.ts | 2 +- src/app/shared/forms/planet-tag-input-dialog.component.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index f2cbdad6a1..7bca8d8ea5 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "planet", "license": "AGPL-3.0", - "version": "0.16.56", + "version": "0.16.57", "myplanet": { "latest": "v0.21.99", "min": "v0.20.99" 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.`) }; }