xref: /aoo41x/main/uui/source/cookiedg.src (revision cdf0e10c)
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
28#define __RSC
29
30#ifndef UUI_COOKIEDG_HRC
31#include <cookiedg.hrc>
32#endif
33#ifndef UUI_IDS_HRC
34#include <ids.hrc>
35#endif
36
37ModalDialog DLG_COOKIES
38{
39	HelpId = HID_DLG_COOKIES ;
40	OutputSize = TRUE ;
41	SVLook = TRUE ;
42	Size = MAP_APPFONT ( 295 , 193 ) ;
43	Moveable = TRUE ;
44	FixedBitmap FB_COOKIES
45	{
46		Border = True ;
47		Hide = TRUE ;
48		Fixed = Bitmap
49		{
50			File = "cookie.bmp" ;
51		};
52	};
53	FixedText FT_COOKIES
54	{
55		SVLook = TRUE ;
56		WordBreak = True ;
57		Pos = MAP_APPFONT ( 65 , 6 ) ;
58		Size = MAP_APPFONT ( 224 , 145 ) ;
59	};
60	FixedLine FL_COOKIES
61	{
62		Pos = MAP_APPFONT ( 6 , 155 ) ;
63		Size = MAP_APPFONT ( 283 , 1 ) ;
64	};
65	RadioButton RB_INFUTURE_SEND
66	{
67	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_SEND";
68		Pos = MAP_APPFONT ( 12 , 171 ) ;
69		Size = MAP_APPFONT ( 52 , 10 ) ;
70		Text [ en-US ] = "~Send" ;
71	};
72	RadioButton RB_INFUTURE_IGNORE
73	{
74	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_IGNORE";
75		Pos = MAP_APPFONT ( 67 , 171 ) ;
76		Size = MAP_APPFONT ( 52 , 10 ) ;
77		Text [ en-US ] = "I~gnore" ;
78	};
79	RadioButton RB_INFUTURE_INTERACTIVE
80	{
81	    HelpID = "uui:RadioButton:DLG_COOKIES:RB_INFUTURE_INTERACTIVE";
82		Pos = MAP_APPFONT ( 122 , 171 ) ;
83		Size = MAP_APPFONT ( 52 , 10 ) ;
84		Text [ en-US ] = "I~nteractive" ;
85	};
86    //TODO! If this dialog is ever used again (and it should definitely be
87    // redesigned then!), get rid of the following group box (see #88883#):
88	GroupBox GB_INFUTURE
89	{
90		Pos = MAP_APPFONT ( 6 , 160 ) ;
91		Size = MAP_APPFONT ( 174 , 27 ) ;
92		Text [ en-US ] = "Future Cookie Handling" ;
93	};
94	PushButton BTN_COOKIES_CANCEL
95	{
96	    HelpID = "uui:PushButton:DLG_COOKIES:BTN_COOKIES_CANCEL";
97		Pos = MAP_APPFONT ( 186 , 173 ) ;
98		Size = MAP_APPFONT ( 50 , 14 ) ;
99		Text [ en-US ] = "~Ignore" ;
100	};
101	PushButton BTN_COOKIES_OK
102	{
103	    HelpID = "uui:PushButton:DLG_COOKIES:BTN_COOKIES_OK";
104		Pos = MAP_APPFONT ( 239 , 173 ) ;
105		Size = MAP_APPFONT ( 50 , 14 ) ;
106		DefButton = TRUE ;
107		Text [ en-US ] = "~Send" ;
108	};
109};
110
111String STR_COOKIES_RECV_START
112{
113	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" ;
114};
115
116String STR_COOKIES_RECV_COOKIES
117{
118	Text [ en-US ] = "Domain: ${DOMAIN}, Path: ${PATH}, Cookie: ${COOKIE}.\n" ;
119};
120
121String STR_COOKIES_RECV_TITLE
122{
123	Text [ en-US ] = "Cookie Reception" ;
124};
125
126String STR_COOKIES_SEND_START
127{
128	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" ;
129};
130
131String STR_COOKIES_SEND_COOKIES
132{
133	Text [ en-US ] = "Domain: ${DOMAIN}, Path: ${PATH}, Cookie: ${COOKIE}.\n" ;
134};
135
136String STR_COOKIES_SEND_TITLE
137{
138	Text [ en-US ] = "Send Cookies" ;
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
169
170
171
172