summaryrefslogtreecommitdiffstats
path: root/l10ntools/inc
diff options
context:
space:
mode:
authorjan iversen <jani@documentfoundation.org>2016-03-24 12:34:51 +0100
committerjan iversen <jani@documentfoundation.org>2016-03-24 12:41:37 +0100
commitb0a601cf48b853b0ee3ccd6aba7b9c9dc9610b7f (patch)
treeb75243d0b6bc4b4157f3b6b7137bb3b5a1d6265d /l10ntools/inc
parentuse FindRangeNameByIndexAndSheet() (diff)
downloadcore-b0a601cf48b853b0ee3ccd6aba7b9c9dc9610b7f.tar.gz
core-b0a601cf48b853b0ee3ccd6aba7b9c9dc9610b7f.zip
genlang, gRun.sh produces the same files as old tools
The process of getting gRun.sh to produce the same files (same content is later), have identified a number of strange things: - many files with x-comment are not in en-US, but DE - some files have translations present in DE - many src/hrc files are not considered for translation Change-Id: If4fb9928353c181c3123421c5dd357304a8b4f0c
Diffstat (limited to 'l10ntools/inc')
-rw-r--r--l10ntools/inc/gConvXml.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/l10ntools/inc/gConvXml.hxx b/l10ntools/inc/gConvXml.hxx
new file mode 100644
index 000000000000..5e8f74d5518a
--- /dev/null
+++ b/l10ntools/inc/gConvXml.hxx
@@ -0,0 +1,39 @@
+/* -*- 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/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+#ifndef GCONVXMLHXX
+#define GCONVXMLHXX
+#include "gConv.hxx"
+
+
+
+extern int xmllex(void);
+
+
+
+class convert_xml : public convert_gen
+{
+ public:
+ convert_xml(l10nMem& crMemory);
+ ~convert_xml() override {};
+
+
+ private:
+ void doExecute() override;
+};
+#endif