1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "mediacontrol.hrc"
25
26String AVMEDIA_STR_OPEN
27{
28	Text [ en-US ] = "Open" ;
29};
30
31// ------------------------------------------------------------------------------
32
33String AVMEDIA_STR_INSERT
34{
35	Text [ en-US ] = "Apply" ;
36};
37
38// ------------------------------------------------------------------------------
39
40String AVMEDIA_STR_PLAY
41{
42	Text [ en-US ] = "Play" ;
43};
44
45// ------------------------------------------------------------------------------
46
47String AVMEDIA_STR_PAUSE
48{
49	Text [ en-US ] = "Pause" ;
50};
51
52// ------------------------------------------------------------------------------
53
54String AVMEDIA_STR_STOP
55{
56	Text [ en-US ] = "Stop" ;
57};
58
59// ------------------------------------------------------------------------------
60
61String AVMEDIA_STR_ENDLESS
62{
63	Text [ en-US ] = "Repeat" ;
64};
65
66// ------------------------------------------------------------------------------
67
68String AVMEDIA_STR_MUTE
69{
70	Text [ en-US ] = "Mute" ;
71};
72
73// ------------------------------------------------------------------------------
74
75String AVMEDIA_STR_ZOOM
76{
77	Text [ en-US ] = "View" ;
78};
79
80// ------------------------------------------------------------------------------
81
82String AVMEDIA_STR_ZOOM_50
83{
84	Text [ en-US ] = "50 %" ;
85};
86
87// ------------------------------------------------------------------------------
88
89String AVMEDIA_STR_ZOOM_100
90{
91	Text [ en-US ] = "100 %" ;
92};
93
94// ------------------------------------------------------------------------------
95
96String AVMEDIA_STR_ZOOM_200
97{
98	Text [ en-US ] = "200 %" ;
99};
100
101// ------------------------------------------------------------------------------
102
103String AVMEDIA_STR_ZOOM_FIT
104{
105	Text [ en-US ] = "Scaled" ;
106};
107
108// ------------------------------------------------------------------------------
109
110String AVMEDIA_STR_MEDIAPLAYER
111{
112	Text [ en-US ] = "Media Player" ;
113};
114
115// ------------------------------------------------------------------------------
116
117ImageList AVMEDIA_IMGLST
118{
119	Prefix = "av" ;
120	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
121	IdList =
122	{
123		AVMEDIA_IMG_OPEN ;
124		AVMEDIA_IMG_PLAY ;
125		AVMEDIA_IMG_PAUSE ;
126		AVMEDIA_IMG_STOP ;
127		AVMEDIA_IMG_ENDLESS ;
128		AVMEDIA_IMG_INSERT ;
129		AVMEDIA_IMG_MUTE ;
130	};
131	IdCount = 7 ;
132};
133
134// ------------------------------------------------------------------------------
135
136ImageList AVMEDIA_IMGLST_L
137{
138	Prefix = "avl" ;
139	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
140	IdList =
141	{
142		AVMEDIA_IMG_OPEN ;
143		AVMEDIA_IMG_PLAY ;
144		AVMEDIA_IMG_PAUSE ;
145		AVMEDIA_IMG_STOP ;
146		AVMEDIA_IMG_ENDLESS ;
147		AVMEDIA_IMG_INSERT ;
148		AVMEDIA_IMG_MUTE ;
149	};
150	IdCount = 7 ;
151};
152
153// ------------------------------------------------------------------------------
154
155ImageList AVMEDIA_IMGLST_HC
156{
157	Prefix = "avh" ;
158	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
159	IdList =
160	{
161		AVMEDIA_IMG_OPEN ;
162		AVMEDIA_IMG_PLAY ;
163		AVMEDIA_IMG_PAUSE ;
164		AVMEDIA_IMG_STOP ;
165		AVMEDIA_IMG_ENDLESS ;
166		AVMEDIA_IMG_INSERT ;
167		AVMEDIA_IMG_MUTE ;
168	};
169	IdCount = 7 ;
170};
171
172// ------------------------------------------------------------------------------
173
174ImageList AVMEDIA_IMGLST_L_HC
175{
176	Prefix = "avlh" ;
177	MaskColor = Color{ Red = 0xff00; Green = 0x0000; Blue = 0xff00; };
178	IdList =
179	{
180		AVMEDIA_IMG_OPEN ;
181		AVMEDIA_IMG_PLAY ;
182		AVMEDIA_IMG_PAUSE ;
183		AVMEDIA_IMG_STOP ;
184		AVMEDIA_IMG_ENDLESS ;
185		AVMEDIA_IMG_INSERT ;
186		AVMEDIA_IMG_MUTE ;
187	};
188	IdCount = 7 ;
189};
190
191// ********************************************************************** EOF
192