tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / sw / inc / pageformatpanel.hrc
blobfdb6e18a72cd1309a17487c63d67c7274e6be060
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 #ifndef INCLUDED_SW_INC_PAGEFORMATPANEL_HRC
11 #define INCLUDED_SW_INC_PAGEFORMATPANEL_HRC
13 #include <unotools/resmgr.hxx>
15 #define NC_(Context, String) TranslateId(Context, u8##String)
17 #include <utility>
19 namespace sw
22 // To translators: this is a listbox labelled by "Margins:", inch units
23 const std::pair<TranslateId, int> RID_PAGEFORMATPANEL_MARGINS_INCH[] =
25     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "None"), 0 },
26     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Narrow"), 0 },
27     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Moderate"), 0 },
28     // Normal (0.75")
29     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"), 75 },
30     // Normal (1")
31     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"), 100 },
32     // Normal (1.25")
33     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Normal (%1)"), 125 },
34     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Wide"), 0 },
35     { NC_("RID_PAGEFORMATPANEL_MARGINS_INCH", "Mirrored"), 0 }
38 // To translators: this is a listbox labelled by "Margins:", cm units
39 const std::pair<TranslateId, int> RID_PAGEFORMATPANEL_MARGINS_CM[] =
41     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "None"), 0 },
42     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Narrow"), 0 },
43     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Moderate"), 0 },
44     // Normal (1.9 cm)
45     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 190 },
46     // Normal (2.54 cm)
47     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 254 },
48     // Normal (3.18 cm)
49     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Normal (%1)"), 318 },
50     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Wide"), 0 },
51     { NC_("RID_PAGEFORMATPANEL_MARGINS_CM", "Mirrored"), 0 }
56 #endif
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */