Skip to content

Commit

Permalink
English plurals rather than Italian ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Aug 24, 2023
1 parent 817bc27 commit 21a6326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/notation/view/selectionfiltermodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ QString SelectionFilterModel::titleForType(SelectionFilterType type) const
case SelectionFilterType::ARPEGGIO:
return qtrc("notation", "Arpeggios");
case SelectionFilterType::GLISSANDO:
return qtrc("notation", "Glissandi");
return qtrc("notation", "Glissandos");
case SelectionFilterType::FRET_DIAGRAM:
return qtrc("notation", "Fretboard diagrams");
case SelectionFilterType::BREATH:
Expand Down
2 changes: 1 addition & 1 deletion src/palette/internal/palettecreator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ PalettePtr PaletteCreator::newBreathPalette(bool defaultPalette)
PalettePtr PaletteCreator::newArpeggioPalette()
{
PalettePtr sp = std::make_shared<Palette>(Palette::Type::Arpeggio);
sp->setName(QT_TRANSLATE_NOOP("palette", "Arpeggios & glissandi"));
sp->setName(QT_TRANSLATE_NOOP("palette", "Arpeggios & glissandos"));
sp->setGridSize(42, 44);
sp->setDrawGrid(true);
sp->setVisible(false);
Expand Down

0 comments on commit 21a6326

Please sign in to comment.