xref: /aoo4110/main/uui/source/cookiedg.src (revision b1cdbd2c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#define __RSC
25
26#ifndef UUI_COOKIEDG_HRC
27#include <cookiedg.hrc>
28#endif
29#ifndef UUI_IDS_HRC
30#include <ids.hrc>
31#endif
32
33ModalDialog DLG_COOKIES
34{
35	HelpId = HID_DLG_COOKIES ;
36	OutputSize = TRUE ;
37	SVLook = TRUE ;
38	Size = MAP_APPFONT ( 295 , 193 ) ;
39	Moveable = TRUE ;
40	FixedBitmap FB_COOKIES
41	{
42		Border = True ;
43		Hide = TRUE ;
44		Fixed = Bitmap
45		{
46			File = "cookie.bmp" ;
47		};
48	};
49	FixedText FT_COOKIES
50	{
51		SVLook = TRUE ;
52		WordBreak = True ;
53		Pos = MAP_APPFONT ( 65 , 6 ) ;
54		Size = MAP_APPFONT ( 224 , 145 ) ;
55	};
56	FixedLine FL_COOKIES
57	{
58		Pos = MAP_APPFONT ( 6 , 155 ) ;
59		Size = MAP_APPFONT ( 283 , 1 ) ;
60	};
61	RadioButton RB_INFUTURE_SEND
62	{
63	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_SEND";
64		Pos = MAP_APPFONT ( 12 , 171 ) ;
65		Size = MAP_APPFONT ( 52 , 10 ) ;
66		Text [ en-US ] = "~Send" ;
67	};
68	RadioButton RB_INFUTURE_IGNORE
69	{
70	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_IGNORE";
71		Pos = MAP_APPFONT ( 67 , 171 ) ;
72		Size = MAP_APPFONT ( 52 , 10 ) ;
73		Text [ en-US ] = "I~gnore" ;
74	};
75	RadioButton RB_INFUTURE_INTERACTIVE
76	{
77	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_INTERACTIVE";
78		Pos = MAP_APPFONT ( 122 , 171 ) ;
79		Size = MAP_APPFONT ( 52 , 10 ) ;
80		Text [ en-US ] = "I~nteractive" ;
81	};
82    //TODO! If this dialog is ever used again (and it should definitely be
83    // redesigned then!), get rid of the following group box (see #88883#):
84	GroupBox GB_INFUTURE
85	{
86		Pos = MAP_APPFONT ( 6 , 160 ) ;
87		Size = MAP_APPFONT ( 174 , 27 ) ;
88		Text [ en-US ] = "Future Cookie Handling" ;
89	};
90	PushButton BTN_COOKIES_CANCEL
91	{
92	    HelpID = "uui:PushButton:DLG_COOKIES:BTN_COOKIES_CANCEL";
93		Pos = MAP_APPFONT ( 186 , 173 ) ;
94		Size = MAP_APPFONT ( 50 , 14 ) ;
95		Text [ en-US ] = "~Ignore" ;
96	};
97	PushButton BTN_COOKIES_OK
98	{
99	    HelpID = "uui:PushButton:DLG_COOKIES:BTN_COOKIES_OK";
100		Pos = MAP_APPFONT ( 239 , 173 ) ;
101		Size = MAP_APPFONT ( 50 , 14 ) ;
102		DefButton = TRUE ;
103		Text [ en-US ] = "~Send" ;
104	};
105};
106
107String STR_COOKIES_RECV_START
108{
109	Text [ en-US ] = "The '${HOST}' server wishes to set one or more cookies.\nCookies contain information referring to certain URL classes. If %PRODUCTNAME later requests a document with a URL corresponding to the class of a previously set cookie, %PRODUCTNAME will send this information to the server. This allows a server to recognize the status of a WWW application, e.g., when shopping online.\n\nThe following Cookies should be set:\n\n" ;
110};
111
112String STR_COOKIES_RECV_COOKIES
113{
114	Text [ en-US ] = "Domain: ${DOMAIN}, Path: ${PATH}, Cookie: ${COOKIE}.\n" ;
115};
116
117String STR_COOKIES_RECV_TITLE
118{
119	Text [ en-US ] = "Cookie Reception" ;
120};
121
122String STR_COOKIES_SEND_START
123{
124	Text [ en-US ] = "%PRODUCTNAME has saved cookies for the server '${HOST}' which will be sent when requesting the document ${PATH}.\nCookies contain information which refers to certain URL classes. They are sent by some servers to %PRODUCTNAME where they are saved when certain documents are accessed. If %PRODUCTNAME loads a document that, according to the URL, corresponds to a class of one of the previously received Cookies, %PRODUCTNAME will send this information to that server. This enables a server to keep track of the status of a WWW application, e.g., when shopping online.\n\nThe following Cookies should be set:\n\n" ;
125};
126
127String STR_COOKIES_SEND_COOKIES
128{
129	Text [ en-US ] = "Domain: ${DOMAIN}, Path: ${PATH}, Cookie: ${COOKIE}.\n" ;
130};
131
132String STR_COOKIES_SEND_TITLE
133{
134	Text [ en-US ] = "Send Cookies" ;
135};
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168