Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / sd / inc / pageformatpanel.hrc
blobea3c04a9ce7c48ed70ad9c12307dc96843c0b04d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  */
10 #pragma once
12 #include <unotools/resmgr.hxx>
14 #include <utility>
16 #define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String))
18 namespace sd
21 // To translators: this is a listbox labelled by "Margins:", inch units
22 const std::pair<TranslateId, int> RID_PAGEFORMATPANEL_MARGINS_INCH[] =
24     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "None"), 0 },
25     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Narrow"), 0 },
26     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Moderate"), 0 },
27     // Normal (0.75")
28     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"),  75 },
29     // Normal (1")
30     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"), 100 },
31     // Normal (1.25")
32     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"), 125 },
33     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Wide"), 0 }
36 // To translators: this is a listbox labelled by "Margins:", cm units
37 const std::pair<TranslateId, int> RID_PAGEFORMATPANEL_MARGINS_CM[] =
39     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "None"), 0 },
40     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Narrow"), 0 },
41     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Moderate"), 0 },
42     // Normal (1.9 cm)
43     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 190 },
44     // Normal (2.54 cm)
45     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 254 },
46     // Normal (3.18 cm)
47     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 318 },
48     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Wide"), 0 }
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */