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 "mediacontrol.hrc"
29
30String AVMEDIA_STR_OPEN
31{
32	Text[en-US] = "Open";
33};
34
35// ------------------------------------------------------------------------------
36
37String AVMEDIA_STR_INSERT
38{
39	Text [ en-US ] = "Apply" ;
40};
41
42// ------------------------------------------------------------------------------
43
44String AVMEDIA_STR_PLAY
45{
46	Text[en-US] = "Play";
47};
48
49// ------------------------------------------------------------------------------
50
51String AVMEDIA_STR_PAUSE
52{
53	Text[en-US] = "Pause";
54};
55
56// ------------------------------------------------------------------------------
57
58String AVMEDIA_STR_STOP
59{
60	Text[en-US] = "Stop";
61};
62
63// ------------------------------------------------------------------------------
64
65String AVMEDIA_STR_ENDLESS
66{
67	Text[en-US] = "Repeat";
68};
69
70// ------------------------------------------------------------------------------
71
72String AVMEDIA_STR_MUTE
73{
74	Text[en-US] = "Mute";
75};
76
77// ------------------------------------------------------------------------------
78
79String AVMEDIA_STR_ZOOM
80{
81    Text[en-US] = "View";
82};
83
84// ------------------------------------------------------------------------------
85
86String AVMEDIA_STR_ZOOM_50
87{
88	Text[en-US] = "50%";
89};
90
91// ------------------------------------------------------------------------------
92
93String AVMEDIA_STR_ZOOM_100
94{
95	Text[en-US] = "100%";
96};
97
98// ------------------------------------------------------------------------------
99
100String AVMEDIA_STR_ZOOM_200
101{
102	Text[en-US] = "200%";
103};
104
105// ------------------------------------------------------------------------------
106
107String AVMEDIA_STR_ZOOM_FIT
108{
109	Text[en-US] = "Scaled";
110};
111
112// ------------------------------------------------------------------------------
113
114String AVMEDIA_STR_MEDIAPLAYER
115{
116	Text[en-US] = "Media Player";
117};
118
119// ------------------------------------------------------------------------------
120
121ImageList AVMEDIA_IMGLST
122{
123	Prefix = "av";
124	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
125	IdList =
126	{
127		AVMEDIA_IMG_OPEN;
128		AVMEDIA_IMG_PLAY;
129		AVMEDIA_IMG_PAUSE;
130		AVMEDIA_IMG_STOP;
131		AVMEDIA_IMG_ENDLESS;
132		AVMEDIA_IMG_INSERT;
133		AVMEDIA_IMG_MUTE;
134	};
135	IdCount = 7;
136};
137
138// ------------------------------------------------------------------------------
139
140ImageList AVMEDIA_IMGLST_L
141{
142	Prefix = "avl";
143	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
144	IdList =
145	{
146		AVMEDIA_IMG_OPEN;
147		AVMEDIA_IMG_PLAY;
148		AVMEDIA_IMG_PAUSE;
149		AVMEDIA_IMG_STOP;
150		AVMEDIA_IMG_ENDLESS;
151		AVMEDIA_IMG_INSERT;
152		AVMEDIA_IMG_MUTE;
153	};
154	IdCount = 7;
155};
156
157// ------------------------------------------------------------------------------
158
159ImageList AVMEDIA_IMGLST_HC
160{
161	Prefix = "avh";
162	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
163	IdList =
164	{
165		AVMEDIA_IMG_OPEN;
166		AVMEDIA_IMG_PLAY;
167		AVMEDIA_IMG_PAUSE;
168		AVMEDIA_IMG_STOP;
169		AVMEDIA_IMG_ENDLESS;
170		AVMEDIA_IMG_INSERT;
171		AVMEDIA_IMG_MUTE;
172	};
173	IdCount = 7;
174};
175
176// ------------------------------------------------------------------------------
177
178ImageList AVMEDIA_IMGLST_L_HC
179{
180	Prefix = "avlh";
181	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
182	IdList =
183	{
184		AVMEDIA_IMG_OPEN;
185		AVMEDIA_IMG_PLAY;
186		AVMEDIA_IMG_PAUSE;
187		AVMEDIA_IMG_STOP;
188		AVMEDIA_IMG_ENDLESS;
189		AVMEDIA_IMG_INSERT;
190		AVMEDIA_IMG_MUTE;
191	};
192	IdCount = 7;
193};
194