diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 11:45:16 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 11:02:47 +0000 |
commit | 98ef3edb8a5d1a13963101d41abb2a8dd8a806dd (patch) | |
tree | 16bac175c1f7d1957958470099b2708e4631ed4f /l10ntools | |
parent | 86781bcfc8f12df980af5c86c2f9e75067f02abc (diff) |
Fix typos
Change-Id: Id5811d092917c872715559f4508d01e4173d090c
Reviewed-on: https://gerrit.libreoffice.org/35636
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/inc/common.hxx | 2 | ||||
-rw-r--r-- | l10ntools/source/export.cxx | 2 | ||||
-rw-r--r-- | l10ntools/source/xmlparse.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/inc/common.hxx b/l10ntools/inc/common.hxx index f9cd72d955a1..4551e44f33e5 100644 --- a/l10ntools/inc/common.hxx +++ b/l10ntools/inc/common.hxx @@ -45,7 +45,7 @@ bool handleArguments(int argc, char * argv[], HandledArgs& o_aHandledArgs); /// Write out a help about usage void writeUsage(const OString& rName, const OString& rFileType); -/// Write out a PoEntry with attention to excaptions +/// Write out a PoEntry with attention to exceptions void writePoEntry( const OString& rExecutable, PoOfstream& rPoStream, const OString& rSourceFile, const OString& rResType, const OString& rGroupId, const OString& rLocalId, diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx index 37f0d64ee879..b4995ca04fb5 100644 --- a/l10ntools/source/export.cxx +++ b/l10ntools/source/export.cxx @@ -400,7 +400,7 @@ void Export::Execute( int nToken, const char * pToken ) OString sCondition; if ( sId.indexOf( '#' ) != -1 ) { - // between ResTyp, Id and paranthes is a precomp. condition + // between ResTyp, Id and parentheses is a precomp. condition sCondition = "#"; sal_Int32 n = 0; sId = sId.getToken(0, '#', n); diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx index 7281c734eb13..5e410df3aabc 100644 --- a/l10ntools/source/xmlparse.cxx +++ b/l10ntools/source/xmlparse.cxx @@ -963,7 +963,7 @@ XMLFile *SimpleXMLParser::Execute( const OString &rFileName, XMLFile* pXMLFileIn m_aErrorInformation.m_sMessage += "Tag mismatch"; break; case XML_ERROR_DUPLICATE_ATTRIBUTE: - m_aErrorInformation.m_sMessage += "Duplicat attribute"; + m_aErrorInformation.m_sMessage += "Duplicated attribute"; break; case XML_ERROR_JUNK_AFTER_DOC_ELEMENT: m_aErrorInformation.m_sMessage += "Junk after doc element"; |