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 _STRINGMERGE_INCLUDED
11 #define _STRINGMERGE_INCLUDED
13 #include <libxml/tree.h>
14 #include <rtl/string.hxx>
17 /** Class for Android strings.xml localization
19 Parse strings.xml files, extract translatable strings
20 and merge translated strings.
27 bool m_bIsInitialized
;
31 const OString
& rInputFile
, const OString
& rLang
);
34 bool isInitialized() const { return m_bIsInitialized
; }
35 void Extract( const OString
& rPOFile
);
37 const OString
&rMergeSrc
, const OString
&rDestinationFile
);
40 #endif //_STRINGMERGE_INCLUDED
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */