1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #ifndef INCLUDED_L10NTOOLS_INC_PROPMERGE_HXX
11 #define INCLUDED_L10NTOOLS_INC_PROPMERGE_HXX
13 #include <rtl/string.hxx>
17 Class for localization of *.properties files
19 Parse *.properties files, extract translatable strings
20 and merge translated strings.
26 std::vector
<OString
> m_vLines
;
29 bool m_bIsInitialized
;
33 OString sInputFile
, OString sLang
,
34 const bool bMergeMode
);
37 bool isInitialized() const { return m_bIsInitialized
; }
38 void Extract( const OString
& rPOFile
);
39 void Merge( const OString
&rMergeSrc
, const OString
&rDestinationFile
);
42 #endif // INCLUDED_L10NTOOLS_INC_PROPMERGE_HXX
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */