Patch #807
spelling-error-in-binary usr/lib/libexiv2.so.9.0.0 Continous Continuous
100%
Description
Lintian found a spelling error in the given binary. Lintian has a list of common misspellings that it looks for. It does not have a dictionary like a spelling checker does.
If the string containing the spelling error is translated with the help of gettext or a similar tool, please fix the error in the translations as well as the English text to avoid making the translations fuzzy. With gettext, for example, this means you should also fix the spelling mistake in the corresponding msgids in the *.po files.
You can often find the word in the source code by running:
grep -rw <word> <source-tree>
This tag may produce false positives for words that contain non-ASCII characters due to limitations in strings.
Severity: minor, Certainty: wild-guess
Index: exiv2-0.22/src/minoltamn.cpp
===================================================================
--- exiv2-0.22.orig/src/minoltamn.cpp 2011-02-14 01:08:44.000000000 1100
++ exiv2-0.22/src/minoltamn.cpp 2012-01-25 06:39:28.000000000 +1100@ -1100,9 +1100,9
@
{ 8, N_("White Balance Bracketing Low") },
{ 9, N_("White Balance Bracketing High") },
{ 770, N_("Single-frame Bracketing Low") },
- { 771, N_("Continous Bracketing Low") },
+ { 771, N_("Continuous Bracketing Low") },
{ 1794, N_("Single-frame Bracketing High") },
- { 1795, N_("Continous Bracketing High") }
+ { 1795, N_("Continuous Bracketing High") }
};
===================================================================
--- exiv2-0.22.orig/src/sonymn.cpp 2011-02-14 01:08:44.000000000 1100
++ exiv2-0.22/src/sonymn.cpp 2012-01-25 06:40:05.000000000 1100@ -412,7 +412,7
@
N_("Release Mode"),
sony1Id, makerTags, unsignedShort, 1, EXV_PRINT_TAG(sonyReleaseMode)), N_("Shot number in continous burst mode"),
TagInfo(0xB04A, "SequenceNumber", N_("Sequence Number"),
N_("Shot number in continuous burst mode"),
sony1Id, makerTags, unsignedShort, -1, EXV_PRINT_TAG(sonySequenceNumber)),
TagInfo(0xB04B, "AntiBlur", N_("Anti-Blur"),
N_("Anti-Blur"),
//! Lookup table to translate Sony A100 camera settings focus mode values to readable labels
Index: exiv2-0.22/src/sonymn.cpp
Associated revisions
History
Updated by Andreas Huggel almost 10 years ago
- Category set to miscellaneous
- Status changed from New to Resolved
- Assignee set to Andreas Huggel
- Target version set to 0.23
- % Done changed from 0 to 100
Thanks for reporting the issue!
#807: Fixed typo. (Mark Purcell)