Skip to content

Commit

Permalink
teams: smoother voices titles (fixes #8086)(fixes #8087) (#8089)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <[email protected]>
  • Loading branch information
jessewashburn and dogi authored Jan 14, 2025
1 parent 2ace99e commit 46473e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/app/news/news-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/app/shared/forms/planet-tag-input-dialog.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.`)
};
}

Expand Down

0 comments on commit 46473e7

Please sign in to comment.