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 "conflictsdlg.hrc"
29
30ModalDialog RID_SCDLG_CONFLICTS
31{
32    OutputSize = TRUE ;
33    HelpId = HID_SCDLG_CONFLICTS ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 338 , 192 ) ;
36    Text [ en-US ] = "Resolve Conflicts" ;
37    Moveable = TRUE ;
38    Sizeable = TRUE ;
39    Closeable = TRUE ;
40    FixedText FT_CONFLICTS
41    {
42        Pos = MAP_APPFONT ( 6 , 6 ) ;
43        Size = MAP_APPFONT ( 326 , 26 ) ;
44        WordBreak = TRUE ;
45        Text [ en-US ] = "There are conflicting changes in this shared spreadsheet. Conflicts must be resolved before saving the spreadsheet. Keep either own or other changes." ;
46    };
47    Control LB_CONFLICTS
48    {
49        Pos = MAP_APPFONT ( 6 , 34 ) ;
50        Size = MAP_APPFONT ( 326 , 104 ) ;
51        Border = TRUE ;
52    };
53    PushButton BTN_KEEPMINE
54    {
55        HelpID = "sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPMINE";
56        Pos = MAP_APPFONT ( 72 , 145 ) ;
57        Size = MAP_APPFONT ( 76 , 14 ) ;
58        Text [ en-US ] = "Keep ~Mine" ;
59    };
60    PushButton BTN_KEEPOTHER
61    {
62        HelpID = "sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPOTHER";
63        Pos = MAP_APPFONT ( 190 , 145 ) ;
64        Size = MAP_APPFONT ( 76 , 14 ) ;
65        Text [ en-US ] = "Keep ~Other" ;
66    };
67    FixedLine FL_CONFLICTS
68    {
69        Pos = MAP_APPFONT ( 1 , 162 ) ;
70        Size = MAP_APPFONT ( 338 , 8 ) ;
71    };
72    PushButton BTN_KEEPALLMINE
73    {
74        HelpID = "sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLMINE";
75        Pos = MAP_APPFONT ( 6 , 172 ) ;
76        Size = MAP_APPFONT ( 104 , 14 ) ;
77        Text [ en-US ] = "~Keep All Mine" ;
78    };
79    PushButton BTN_KEEPALLOTHERS
80    {
81        HelpID = "sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLOTHERS";
82        Pos = MAP_APPFONT ( 116 , 172 ) ;
83        Size = MAP_APPFONT ( 104 , 14 ) ;
84        Text [ en-US ] = "Keep ~All Others" ;
85    };
86    CancelButton BTN_CANCEL
87    {
88        Pos = MAP_APPFONT ( 226 , 172 ) ;
89        Size = MAP_APPFONT ( 50 , 14 ) ;
90    };
91    HelpButton BTN_HELP
92    {
93        Pos = MAP_APPFONT ( 282 , 172 ) ;
94        Size = MAP_APPFONT ( 50 , 14 ) ;
95    };
96    String STR_TITLE_CONFLICT
97    {
98        Text [ en-US ] = "Conflict" ;
99    };
100    String STR_TITLE_AUTHOR
101    {
102        Text [ en-US ] = "Author" ;
103    };
104    String STR_TITLE_DATE
105    {
106        Text [ en-US ] = "Date" ;
107    };
108    String STR_UNKNOWN_USER
109    {
110        Text [ en-US ] = "Unknown User" ;
111    };
112};
113
114