xref: /trunk/main/sw/source/ui/misc/redlndlg.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27/* StarView ressource file */
28
29#include "redlndlg.hrc"
30#include "misc.hrc"
31#include "helpid.h"
32
33#define WIDTH 297
34#define HEIGHT 169
35
36#define REDLNDLG \
37    OutputSize = TRUE ; \
38    SVLook = TRUE ; \
39    Size = MAP_APPFONT ( WIDTH , HEIGHT ) ; \
40    Moveable = TRUE ; \
41    Closeable = TRUE ; \
42    Sizeable = TRUE ; \
43    Hide = TRUE ; \
44    Control CTRL_TABPAGES\
45    {\
46        Pos = MAP_APPFONT ( XBORDER , YBORDER ) ; \
47        Size = MAP_APPFONT ( WIDTH - XBORDER * 2 , HEIGHT - YBORDER * 2 ) ; \
48        HelpID = HID_REDLINE_CTRL ; \
49        TabStop = TRUE ; \
50    };
51
52ModelessDialog DLG_REDLINE_ACCEPT
53{
54    HelpID = HID_REDLINE_ACCEPT ;
55    /* ### ACHTUNG: Neuer Text in Resource? �nderungen akzeptieren oder verwerfen : Redlining */
56    Text [ en-US ] = "Accept or Reject Changes" ;
57    REDLNDLG
58};
59
60ModalDialog DLG_MOD_REDLINE_ACCEPT
61{
62    HelpID = HID_REDLINE_AUTOFMT_ACCEPT ;
63    REDLNDLG
64    Text [ en-US ] = "Accept or Reject AutoCorrect Changes";
65};
66
67Menu MN_REDLINE_POPUP
68{
69    ItemList =
70    {
71        MenuItem
72        {
73            Identifier = MN_EDIT_COMMENT ;
74            HelpID = HID_EDIT_COMMENT ;
75            Text [ en-US ] = "Edit Comment..." ;
76        };
77        MenuItem
78        {
79            Identifier = MN_SUB_SORT ;
80            RadioCheck = TRUE ;
81            SubMenu = Menu
82            {
83                ItemList =
84                {
85                    MenuItem
86                    {
87                        Identifier = MN_SORT_ACTION ;
88                        HelpID = HID_SORT_ACTION ;
89                        RadioCheck = TRUE ;
90                        Text [ en-US ] = "Action" ;
91                    };
92                    MenuItem
93                    {
94                        Identifier = MN_SORT_AUTHOR ;
95                        HelpID = HID_SORT_AUTHOR ;
96                        RadioCheck = TRUE ;
97                        Text [ en-US ] = "Author" ;
98                    };
99                    MenuItem
100                    {
101                        Identifier = MN_SORT_DATE ;
102                        HelpID = HID_SORT_DATE ;
103                        RadioCheck = TRUE ;
104                        Text [ en-US ] = "Date" ;
105                    };
106                    MenuItem
107                    {
108                        Identifier = MN_SORT_COMMENT ;
109                        HelpID = HID_SORT_COMMENT ;
110                        RadioCheck = TRUE ;
111                        Text [ en-US ] = "Comment" ;
112                    };
113                    MenuItem
114                    {
115                        Identifier = MN_SORT_POSITION ;
116                        HelpID = HID_SW_SORT_POSITION ;
117                        RadioCheck = TRUE ;
118                        Text [ en-US ] = "Document position" ;
119                    };
120                };
121            };
122            Text [ en-US ] = "Sort By" ;
123        };
124    };
125};
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149