1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/* -*- 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_SVX_INC_SPACING_HRC
#define INCLUDED_SVX_INC_SPACING_HRC
#include <utility>
#define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String)
// To translators: this is a listbox labelled by "Spacing:", inch units
const std::pair<const char*, int> RID_SVXSTRARY_SPACING_INCH[] =
{
{ NC_("RID_SVXSTRARY_SPACING_INCH", "None"), 0 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Extra Small (1/16″)"), 91 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Small (1/8″)"), 181 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Small Medium (1/4″)"), 363 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Medium (3/8″)"), 539 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Medium Large (1/2″)"), 720 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Large (3/4″)"), 1077 },
{ NC_("RID_SVXSTRARY_SPACING_INCH", "Extra Large (1″)"), 1440 },
{ nullptr, 0 }
};
// To translators: this is a listbox labelled by "Spacing:", cm units
const std::pair<const char*, int> RID_SVXSTRARY_SPACING_CM[] =
{
{ NC_("RID_SVXSTRARY_SPACING_CM", "None"), 0 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Extra Small (0.16 cm)"), 91 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Small (0.32 cm)"), 181 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Small Medium (0.64 cm)"), 363 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Medium (0.95 cm)"), 539 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Medium Large (1.27 cm)"), 720 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Large (1.9 cm)"), 1077 },
{ NC_("RID_SVXSTRARY_SPACING_CM", "Extra Large (2.54 cm)"), 1440 },
{ nullptr, 0 }
};
// To translators: this is a listbox labelled by "Margins:", inch units
const std::pair<const char*, int> RID_SVXSTRARY_MARGINS_INCH[] =
{
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "None"), 0 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Extra Small (1/16″)"), 91 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Small (1/8″)"), 181 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Small Medium (1/4″)"), 363 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Medium (3/8″)"), 539 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Medium Large (1/2″)"), 720 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Large (3/4″)"), 1077 },
{ NC_("RID_SVXSTRARY_MARGINS_INCH", "Extra Large (1″)"), 1440 },
{ nullptr, 0 }
};
// To translators: this is a listbox labelled by "Margins:", cm units
const std::pair<const char*, int> RID_SVXSTRARY_MARGINS_CM[] =
{
{ NC_("RID_SVXSTRARY_MARGINS_CM", "None"), 0 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Small (0.16 cm)"), 91 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Small (0.32 cm)"), 181 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Small Medium (0.64 cm)"), 363 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Medium (0.95 cm)"), 539 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Medium Large (1.27 cm)"), 720 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Large (1.9 cm)"), 1077 },
{ NC_("RID_SVXSTRARY_MARGINS_CM", "Extra Large (2.54 cm)"), 1440 },
{ nullptr, 0 }
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|