xref: /aoo41x/main/sc/source/ui/src/opredlin.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#include "opredlin.hrc"
29TabPage RID_SCPAGE_OPREDLINE
30{
31	HelpId = HID_SCPAGE_OPREDLINE ;
32	SVLook = TRUE ;
33	Hide = TRUE ;
34	Pos = MAP_APPFONT ( 0 , 0 ) ;
35	Size = MAP_APPFONT ( 260 , 185 ) ;
36	FixedText FT_CONTENT
37	{
38		HelpID = HID_SCPAGE_OPREDLINBE_FT_CONTENT ;
39		Pos = MAP_APPFONT ( 12 , 15 ) ;
40		Size = MAP_APPFONT ( 70 , 10 ) ;
41		Text [ en-US ] = "Chan~ges" ;
42	};
43	FixedText FT_REMOVE
44	{
45		Pos = MAP_APPFONT ( 12 , 31 ) ;
46		Size = MAP_APPFONT ( 70 , 10 ) ;
47		Text [ en-US ] = "~Deletions" ;
48	};
49	FixedText FT_INSERT
50	{
51		Pos = MAP_APPFONT ( 12 , 47 ) ;
52		Size = MAP_APPFONT ( 70 , 10 ) ;
53		Text [ en-US ] = "~Insertions" ;
54	};
55	FixedText FT_MOVE
56	{
57		Pos = MAP_APPFONT ( 12 , 63 ) ;
58		Size = MAP_APPFONT ( 70 , 10 ) ;
59		Text [ en-US ] = "~Moved entries" ;
60	};
61    FixedLine GB_COLORCHGS
62	{
63		Pos = MAP_APPFONT ( 6 , 3 ) ;
64        Size = MAP_APPFONT ( 248 , 8 ) ;
65		Text [ en-US ] = "Colors for changes" ;
66	};
67	ListBox CLB_CONTENT
68	{
69	    HelpID = "sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_CONTENT";
70		Pos = MAP_APPFONT ( 90 , 14 ) ;
71		Size = MAP_APPFONT ( 120 , 86 ) ;
72		TabStop = TRUE ;
73		DropDown = TRUE ;
74	};
75	ListBox CLB_REMOVE
76	{
77	    HelpID = "sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_REMOVE";
78		Pos = MAP_APPFONT ( 90 , 30 ) ;
79		Size = MAP_APPFONT ( 120 , 86 ) ;
80		TabStop = TRUE ;
81		DropDown = TRUE ;
82	};
83	ListBox CLB_INSERT
84	{
85	    HelpID = "sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_INSERT";
86		Pos = MAP_APPFONT ( 90 , 46 ) ;
87		Size = MAP_APPFONT ( 120 , 86 ) ;
88		TabStop = TRUE ;
89		DropDown = TRUE ;
90	};
91	ListBox CLB_MOVE
92	{
93	    HelpID = "sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_MOVE";
94		Pos = MAP_APPFONT ( 90 , 62 ) ;
95		Size = MAP_APPFONT ( 120 , 86 ) ;
96		TabStop = TRUE ;
97		DropDown = TRUE ;
98	};
99	String STR_AUTHOR
100	{
101		Text [ en-US ] = "By author" ;
102	};
103};
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141