summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_dialog2.src
blob: b4978efc4c44df769fcaf6af846cdb36d2e42931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* -*- 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 .
 */

#include <svtools/controldims.hrc>
#include "dp_gui.hrc"

ModalDialog RID_DLG_UPDATE_REQUIRED
{
    HelpId = HID_PACKAGE_MANAGER_UPD_REQ;
    Text [ en-US ] = "Extension Update Required";

    Size = MAP_APPFONT( 300, 200 );
    OutputSize = TRUE;
    SVLook = TRUE;
    Moveable = TRUE;
    Closeable = TRUE;
    Sizeable = TRUE;
    Hide = TRUE;

    FixedText RID_EM_FT_MSG
    {
        Text [ en-US ] = "%PRODUCTNAME has been updated to a new version. Some installed %PRODUCTNAME extensions are not compatible with this version and need to be updated before they can be used.";
        WordBreak = TRUE;
        NoLabel = TRUE;
        Size = MAP_APPFONT( 280, 3*RSC_BS_CHARHEIGHT );
        Pos = MAP_APPFONT( 5, 5 );
    };

    FixedText RID_EM_FT_PROGRESS
    {
        Hide = TRUE;
        Right = TRUE;
        Text [ en-US ] = "Adding %EXTENSION_NAME";
        Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
    };

    HelpButton RID_EM_BTN_HELP
    {
        TabStop = TRUE;
        Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
    };

    PushButton RID_EM_BTN_CHECK_UPDATES
    {
        HelpID = "desktop:PushButton:RID_DLG_UPDATE_REQUIRED:RID_EM_BTN_CHECK_UPDATES";
        TabStop = TRUE;
        Text [ en-US ] = "Check for ~Updates...";
        Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
    };

    PushButton RID_EM_BTN_CLOSE
    {
        HelpID = "desktop:PushButton:RID_DLG_UPDATE_REQUIRED:RID_EM_BTN_CLOSE";
        TabStop = TRUE;
        DefButton = TRUE;
        Text [ en-US ] = "Disable all";
        Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
    };

    CancelButton RID_EM_BTN_CANCEL
    {
        TabStop = TRUE;
        Hide = TRUE;
        Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
    };

};

Image RID_IMG_WARNING
{
    ImageBitmap = Bitmap { File = "caution_16.png"; };
};

Image RID_IMG_LOCKED
{
    ImageBitmap = Bitmap { File = "lock_16.png"; };
};

Image RID_IMG_SHARED
{
    ImageBitmap = Bitmap { File = "shared_16.png"; };
};

Image RID_IMG_EXTENSION
{
    ImageBitmap = Bitmap { File = "extension_32.png"; };
};

QueryBox RID_QUERYBOX_INSTALL_FOR_ALL
{
    Buttons = WB_YES_NO_CANCEL;
    DefButton = WB_DEF_YES;
    Message[en-US] = "Make sure that no further users are working with the same %PRODUCTNAME, when installing an extension for all users in a multi user environment.\n\nFor whom do you want to install the extension?\n";
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */