diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-26 19:01:56 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-06-15 11:07:15 -0700 |
commit | cdb3bcb1a641e27cf157530bf637ee4a9851b401 (patch) | |
tree | 58cf23c1b7de7b9ac7f1ab583dbb7859a1873dc1 /desktop-widgets/command_edit.cpp | |
parent | 439fcead0829671179d964d1681d151f421ad9ee (diff) | |
download | subsurface-cdb3bcb1a641e27cf157530bf637ee4a9851b401.tar.gz |
Cleanup: remove silly typo in translation comments
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command_edit.cpp')
-rw-r--r-- | desktop-widgets/command_edit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop-widgets/command_edit.cpp b/desktop-widgets/command_edit.cpp index 5207d1ac1..ff0bd871a 100644 --- a/desktop-widgets/command_edit.cpp +++ b/desktop-widgets/command_edit.cpp @@ -63,7 +63,7 @@ bool EditBase<T>::workToBeDone() // Create a text for the menu entry. In the case of multiple dives add the number size_t num_dives = dives.size(); if (num_dives > 0) - //: remove the part in parantheses for %n = 1 + //: remove the part in parentheses for %n = 1 setText(tr("Edit %1 (%n dive(s))", "", num_dives).arg(fieldName())); return num_dives > 0; @@ -501,7 +501,7 @@ bool EditTagsBase::workToBeDone() // Create a text for the menu entry. In the case of multiple dives add the number size_t num_dives = dives.size(); if (num_dives > 0) - //: remove the part in parantheses for %n = 1 + //: remove the part in parentheses for %n = 1 setText(tr("Edit %1 (%n dive(s))", "", num_dives).arg(fieldName())); return num_dives != 0; |