1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
12 #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String)
14 const char* RID_SVXITEMS_HORJUST[] =
16 // enum SvxCellHorJustify ----------------------------------------------------
17 NC_("RID_SVXITEMS_HORJUST_STANDARD", "Horizontal alignment default"),
18 NC_("RID_SVXITEMS_HORJUST_LEFT", "Align left"),
19 NC_("RID_SVXITEMS_HORJUST_CENTER", "Centered horizontally"),
20 NC_("RID_SVXITEMS_HORJUST_RIGHT", "Align right"),
21 NC_("RID_SVXITEMS_HORJUST_BLOCK", "Justify horizontally"),
22 NC_("RID_SVXITEMS_HORJUST_REPEAT", "Repeat alignment")
25 const char* RID_SVXITEMS_VERJUST[] =
27 // enum SvxCellVerJustify ----------------------------------------------------
28 NC_("RID_SVXITEMS_VERJUST_STANDARD", "Vertical alignment default"),
29 NC_("RID_SVXITEMS_VERJUST_TOP", "Align to top"),
30 NC_("RID_SVXITEMS_VERJUST_CENTER", "Centered vertically"),
31 NC_("RID_SVXITEMS_VERJUST_BOTTOM", "Align to bottom"),
32 NC_("RID_SVXITEMS_HORJUST_BLOCK", "Justify vertically")
35 const char* RID_SVXITEMS_JUSTMETHOD[] =
37 // enum SvxCellJustifyMethod ----------------------------------------------------
38 NC_("RID_SVXITEMS_JUSTMETHOD_AUTO", "Automatic Justify"),
39 NC_("RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE", "Distributed Justify")
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */