tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / sfx2 / inc / dinfdlg.hrc
blobef47615e7e22208cd6928773c4e258fa753e0a13
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #ifndef INCLUDED_SFX2_INC_DINFDLG_HRC
21 #define INCLUDED_SFX2_INC_DINFDLG_HRC
23 #include <unotools/resmgr.hxx>
25 #define NC_(Context, String) TranslateId(Context, u8##String)
27 const TranslateId SFX_CB_PROPERTY_STRINGARRAY[] =
29     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Checked by"),
30     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Client"),
31     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Date completed"),
32     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Department"),
33     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Destinations"),
34     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Disposition"),
35     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Division"),
36     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Document number"),
37     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Editor"),
38     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Email"),
39     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Forward to"),
40     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Group"),
41     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Info"),
42     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Language"),
43     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Mailstop"),
44     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Matter"),
45     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Office"),
46     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Owner"),
47     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Project"),
48     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Publisher"),
49     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Purpose"),
50     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Received from"),
51     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Recorded by"),
52     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Recorded date"),
53     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Reference"),
54     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Source"),
55     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Status"),
56     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Telephone number"),
57     NC_("SFX_CB_PROPERTY_STRINGARRAY", "Typist"),
58     NC_("SFX_CB_PROPERTY_STRINGARRAY", "URL")
61 enum CustomProperties : sal_Int32 {
62     Custom_Type_Unknown = 0,
63     Custom_Type_Text = 1,
64     Custom_Type_Number = 2,
65     Custom_Type_Date = 3,
66     Custom_Type_Boolean = 4,
67     Custom_Type_Duration = 5,
68     Custom_Type_Datetime = 6
71 const std::pair<TranslateId, CustomProperties> SFX_LB_PROPERTY_STRINGARRAY[] =
73     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "Text")        , Custom_Type_Text },
74     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "DateTime")    , Custom_Type_Datetime },
75     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "Date")        , Custom_Type_Date },
76     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "Duration")    , Custom_Type_Duration },
77     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "Number")      , Custom_Type_Number },
78     { NC_("SFX_CB_PROPERTY_STRINGARRAY", "Yes or no")   , Custom_Type_Boolean }
81 // accessibility descriptions that use %PRODUCTNAME, we set these explicitly because querying a11y descs
82 // in order to change %PRODUCTNAME at runtime is expensive, so limit doing that as much as possible.
83 #define STR_A11Y_DESC_USERDATA                      NC_("documentinfopage|extended_tip|userdatacb", "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - %PRODUCTNAME - User Data.")
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */