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 #include <unotools/resmgr.hxx>
14 #define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String))
16 const TranslateId RID_SVXITEMS_HORJUST[] =
18 // enum SvxCellHorJustify ----------------------------------------------------
19 NC_("RID_SVXITEMS_HORJUST_STANDARD", "Horizontal alignment default"),
20 NC_("RID_SVXITEMS_HORJUST_LEFT", "Align left"),
21 NC_("RID_SVXITEMS_HORJUST_CENTER", "Centered horizontally"),
22 NC_("RID_SVXITEMS_HORJUST_RIGHT", "Align right"),
23 NC_("RID_SVXITEMS_HORJUST_BLOCK", "Justify horizontally"),
24 NC_("RID_SVXITEMS_HORJUST_REPEAT", "Repeat alignment")
27 const TranslateId RID_SVXITEMS_VERJUST[] =
29 // enum SvxCellVerJustify ----------------------------------------------------
30 NC_("RID_SVXITEMS_VERJUST_STANDARD", "Vertical alignment default"),
31 NC_("RID_SVXITEMS_VERJUST_TOP", "Align to top"),
32 NC_("RID_SVXITEMS_VERJUST_CENTER", "Centered vertically"),
33 NC_("RID_SVXITEMS_VERJUST_BOTTOM", "Align to bottom"),
34 NC_("RID_SVXITEMS_HORJUST_BLOCK", "Justify vertically")
37 const TranslateId RID_SVXITEMS_JUSTMETHOD[] =
39 // enum SvxCellJustifyMethod ----------------------------------------------------
40 NC_("RID_SVXITEMS_JUSTMETHOD_AUTO", "Automatic Justify"),
41 NC_("RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE", "Distributed Justify")
44 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */