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) TranslateId(Context, u8##String)
13 #define NNC_(Context, StringSingular, StringPlural) TranslateNId(Context, reinterpret_cast<char const *>(u8##StringSingular), reinterpret_cast<char const *>(u8##StringPlural))
15 /*--------------------------------------------------------------------
16 Description: API names for Paragraph, Character
17 and Text cursor values
18 --------------------------------------------------------------------*/
21 #define RID_NORMAL NC_("RID_ATTRIBUTE_NAMES_MAP", "Normal")
22 #define RID_BOLD NC_("RID_ATTRIBUTE_NAMES_MAP", "Bold")
23 #define RID_ITALIC NC_("RID_ATTRIBUTE_NAMES_MAP", "Italic")
25 #define RID_FALSE NC_("RID_ATTRIBUTE_NAMES_MAP", "False")
26 #define RID_TRUE NC_("RID_ATTRIBUTE_NAMES_MAP", "True")
29 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */