summaryrefslogtreecommitdiff
path: root/l10ntools/inc/stringmerge.hxx
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-11-27 14:12:22 +0100
committerAndras Timar <atimar@suse.com>2012-11-27 14:35:53 +0100
commit869dab55c133a80096e516a5d2b0f0c4d573fab6 (patch)
tree472f9c3681ea705ecdcfaa1d31fd28568102cb10 /l10ntools/inc/stringmerge.hxx
parenta511a4f2a9e911ba2a8cd8bc452e1fc80d9462d8 (diff)
add new tool "stringex" to extract/merge strings from/to android UI
Change-Id: I8210957cedf911418044da340642cf97396f3e14
Diffstat (limited to 'l10ntools/inc/stringmerge.hxx')
-rw-r--r--l10ntools/inc/stringmerge.hxx42
1 files changed, 42 insertions, 0 deletions
diff --git a/l10ntools/inc/stringmerge.hxx b/l10ntools/inc/stringmerge.hxx
new file mode 100644
index 000000000000..01a7b9b719cd
--- /dev/null
+++ b/l10ntools/inc/stringmerge.hxx
@@ -0,0 +1,42 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef _STRINGMERGE_INCLUDED
+#define _STRINGMERGE_INCLUDED
+
+#include <libxml/tree.h>
+#include <rtl/string.hxx>
+#include <vector>
+
+/** Class for Android strings.xml localization
+
+ Parse strings.xml files, extract translatable strings
+ and merge translated strings.
+*/
+class StringParser
+{
+private:
+ xmlDocPtr m_pSource;
+ OString m_sLang;
+ bool m_bIsInitialized;
+
+public:
+ StringParser(
+ const OString& rInputFile, const OString& rLang );
+ ~StringParser();
+
+ bool isInitialized() const { return m_bIsInitialized; }
+ void Extract(
+ const OString& rSDFFile, const OString& rPrj, const OString& rRoot );
+ void Merge(
+ const OString &rMergeSrc, const OString &rDestinationFile );
+};
+
+#endif //_STRINGMERGE_INCLUDED
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */