summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-31 15:14:47 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-11-01 14:37:43 +0100
commit6d9a2557a0f0366fff169f3c3581414b3cec80bd (patch)
tree6a1ead1edccb8857b888b235684d8781ca4f8194 /sw/inc
parentbeaba5f1abbb9a1461286fc831ea6a30131bb3b5 (diff)
Resolves: tdf#105081 and tdf#113420
separate translations for Spacing: vs Margins: separate translations for Inch vs cm Change-Id: I9a2d8fe3ad0edde5afefe00258f1309f898130e8 Reviewed-on: https://gerrit.libreoffice.org/62699 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/pageformatpanel.hrc43
1 files changed, 43 insertions, 0 deletions
diff --git a/sw/inc/pageformatpanel.hrc b/sw/inc/pageformatpanel.hrc
new file mode 100644
index 000000000000..e35bd64c4997
--- /dev/null
+++ b/sw/inc/pageformatpanel.hrc
@@ -0,0 +1,43 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
+/*
+ * 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 INCLUDED_SW_INC_PAGEFORMATPANEL_HRC
+#define INCLUDED_SW_INC_PAGEFORMATPANEL_HRC
+
+#define NC_(Context, String) (Context "\004" u8##String)
+
+// To translators: this is a listbox labelled by "Margins:", inch units
+const char* RID_PAGEFORMATPANEL_MARGINS_INCH[] =
+{
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "None"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Narrow"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Moderate"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (0.75\")"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (1\")"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (1.25\")"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Wide"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Mirrored")
+};
+
+// To translators: this is a listbox labelled by "Margins:", cm units
+const char* RID_PAGEFORMATPANEL_MARGINS_CM[] =
+{
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "None"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Narrow"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Moderate"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (1.9cm)"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (2.54cm)"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (3.18cm)"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Wide"),
+ NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Mirrored")
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */