mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix typo on string formatting option
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
786f164046
commit
0db9bbdea7
1 changed files with 1 additions and 1 deletions
|
@ -543,7 +543,7 @@ void LocationFilterDelegate::paint(QPainter *painter, const QStyleOptionViewItem
|
|||
QString distance = distance_string(distanceMeters);
|
||||
int nr = nr_of_dives_at_dive_site(ds->uuid, false);
|
||||
bottomText += tr(" (~%1 away").arg(distance);
|
||||
bottomText += tr(", %n dive(s) here)").arg(nr);
|
||||
bottomText += tr(", %1 dive(s) here)").arg(nr);
|
||||
}
|
||||
}
|
||||
if (bottomText.isEmpty()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue