summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2018-12-05 18:54:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-12-09 22:16:31 +0100
commit0ec24d6f29c319462912bbf6a2eca361fab08637 (patch)
treec809a06954f1e104a8177279397e059da685873f /sd/inc
parent79defcb4a9d559c16f59af561f7767f8fbfed98d (diff)
tdf#121926: Take metrics into account
Similar to 6d9a2557a0f0366fff169f3c3581414b3cec80bd Reviewed-on: https://gerrit.libreoffice.org/64645 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org> (cherry picked from commit cc797cd31e99d47db5b2815a0a86c96204a65e62) Change-Id: Ifecc3f86a3da8fdd4b0535cb67c6315e0d418f5a Reviewed-on: https://gerrit.libreoffice.org/64705 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/pageformatpanel.hrc41
1 files changed, 41 insertions, 0 deletions
diff --git a/sd/inc/pageformatpanel.hrc b/sd/inc/pageformatpanel.hrc
new file mode 100644
index 000000000000..23325e26ac2f
--- /dev/null
+++ b/sd/inc/pageformatpanel.hrc
@@ -0,0 +1,41 @@
+/* -*- 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_SD_INC_PAGEFORMATPANEL_HRC
+#define INCLUDED_SD_INC_PAGEFORMATPANEL_HRC
+
+#define NC_(Context, String) reinterpret_cast<char const *>(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"),
+};
+
+// 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"),
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */