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#include "sharedocdlg.hrc"
29
30ModalDialog RID_SCDLG_SHAREDOCUMENT
31{
32    OutputSize = TRUE ;
33    HelpId = CMD_SID_SHARE_DOC ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 204 , 186 ) ;
36    Text [ en-US ] = "Share Document" ;
37    Moveable = TRUE ;
38    Closeable = TRUE ;
39    CheckBox CB_SHARE
40    {
41        HelpID = "sc:CheckBox:RID_SCDLG_SHAREDOCUMENT:CB_SHARE";
42        Pos = MAP_APPFONT ( 6 , 6 ) ;
43        Size = MAP_APPFONT ( 192 , 8 ) ;
44        Text [ en-US ] = "Share this spreadsheet with other users" ;
45    };
46    FixedText FT_WARNING
47    {
48        Pos = MAP_APPFONT ( 15 , 18 ) ;
49        Size = MAP_APPFONT ( 183 , 48 ) ;
50        WordBreak = TRUE ;
51        Text [ en-US ] = "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." ;
52    };
53    FixedLine FL_USERS
54    {
55        Pos = MAP_APPFONT ( 6 , 66 ) ;
56        Size = MAP_APPFONT ( 192 , 4 ) ;
57    };
58    FixedText FT_USERS
59    {
60        Pos = MAP_APPFONT ( 6 , 72 ) ;
61        Size = MAP_APPFONT ( 192 , 8 ) ;
62        Text [ en-US ] = "Users currently accessing this spreadsheet" ;
63    };
64    Control LB_USERS
65    {
66        Pos = MAP_APPFONT ( 6 , 82 ) ;
67        Size = MAP_APPFONT ( 192 , 72 ) ;
68        Border = TRUE ;
69    };
70    FixedLine FL_END
71    {
72        Pos = MAP_APPFONT ( 1 , 156 ) ;
73        Size = MAP_APPFONT ( 204 , 8 ) ;
74    };
75    HelpButton BTN_HELP
76    {
77        Pos = MAP_APPFONT ( 6 , 166 ) ;
78        Size = MAP_APPFONT ( 50 , 14 ) ;
79    };
80    OKButton BTN_OK
81    {
82        Pos = MAP_APPFONT ( 92 , 166 ) ;
83        Size = MAP_APPFONT ( 50 , 14 ) ;
84        DefButton = TRUE ;
85    };
86    CancelButton BTN_CANCEL
87    {
88        Pos = MAP_APPFONT ( 148 , 166 ) ;
89        Size = MAP_APPFONT ( 50 , 14 ) ;
90    };
91    String STR_TITLE_NAME
92    {
93        Text [ en-US ] = "Name" ;
94    };
95    String STR_TITLE_ACCESSED
96    {
97        Text [ en-US ] = "Accessed" ;
98    };
99    String STR_NO_USER_DATA
100    {
101        Text [ en-US ] = "No user data available." ;
102    };
103    String STR_UNKNOWN_USER
104    {
105        Text [ en-US ] = "Unknown User" ;
106    };
107    String STR_EXCLUSIVE_ACCESS
108    {
109        Text [ en-US ] = "(exclusive access)" ;
110    };
111};
112