office-gobmx/sfx2/inc/dinfdlg.hrc
Gabor Kelemen 144057a54a Recheck modules s[f-t]* with IWYU
See tdf#42949 for motivation

Change-Id: I1f520aad1b1c942ad5616d96851016fc366ac58f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130203
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2022-03-01 08:21:00 +01:00

83 lines
3.5 KiB
Text

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SFX2_INC_DINFDLG_HRC
#define INCLUDED_SFX2_INC_DINFDLG_HRC
#include <unotools/resmgr.hxx>
#define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String))
const TranslateId SFX_CB_PROPERTY_STRINGARRAY[] =
{
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Checked by"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Client"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Date completed"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Department"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Destinations"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Disposition"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Division"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Document number"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Editor"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Email"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Forward to"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Group"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Info"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Language"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Mailstop"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Matter"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Office"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Owner"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Project"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Publisher"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Purpose"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Received from"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Recorded by"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Recorded date"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Reference"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Source"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Status"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Telephone number"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "Typist"),
NC_("SFX_CB_PROPERTY_STRINGARRAY", "URL")
};
enum CustomProperties : sal_Int32 {
Custom_Type_Unknown = 0,
Custom_Type_Text = 1,
Custom_Type_Number = 2,
Custom_Type_Date = 3,
Custom_Type_Boolean = 4,
Custom_Type_Duration = 5,
Custom_Type_Datetime = 6
};
const std::pair<TranslateId, CustomProperties> SFX_LB_PROPERTY_STRINGARRAY[] =
{
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "Text") , Custom_Type_Text },
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "DateTime") , Custom_Type_Datetime },
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "Date") , Custom_Type_Date },
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "Duration") , Custom_Type_Duration },
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "Number") , Custom_Type_Number },
{ NC_("SFX_CB_PROPERTY_STRINGARRAY", "Yes or no") , Custom_Type_Boolean }
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */