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 "CustomAnimation.hrc"
25
26Menu RID_EFFECT_CONTEXTMENU
27{
28	ItemList =
29	{
30        MenuItem
31        {
32            Identifier = CM_WITH_CLICK ;
33            Text [ en-US ] = "Start On ~Click" ;
34        };
35        MenuItem
36        {
37            Identifier = CM_WITH_PREVIOUS ;
38            Text [ en-US ] = "Start ~With Previous" ;
39        };
40        MenuItem
41        {
42            Identifier = CM_AFTER_PREVIOUS;
43            Text [ en-US ] = "Start ~After Previous" ;
44        };
45		MenuItem
46		{
47			Separator = TRUE ;
48		};
49        MenuItem
50        {
51            Identifier = CM_OPTIONS;
52            Text [ en-US ] = "~Effect Options..." ;
53        };
54        MenuItem
55        {
56            Identifier = CM_DURATION;
57            Text [ en-US ] = "~Timing..." ;
58        };
59        MenuItem
60        {
61            Identifier = CM_REMOVE;
62            Text [ en-US ] = "~Remove" ;
63        };
64	};
65};
66
67Menu RID_CUSTOMANIMATION_FONTSIZE_POPUP
68{
69	ItemList =
70	{
71		MenuItem
72		{
73            Identifier = CM_SIZE_25 ;
74            Text [ en-US ] = "Tiny" ;
75        };
76		MenuItem
77		{
78            Identifier = CM_SIZE_50 ;
79            Text [ en-US ] = "Smaller" ;
80        };
81		MenuItem
82		{
83            Identifier = CM_SIZE_150 ;
84            Text [ en-US ] = "Larger" ;
85        };
86		MenuItem
87		{
88            Identifier = CM_SIZE_400 ;
89            Text [ en-US ] = "Extra large" ;
90        };
91	};
92};
93
94Menu RID_CUSTOMANIMATION_SCALE_POPUP
95{
96	ItemList =
97	{
98		MenuItem
99		{
100            Identifier = CM_SIZE_25 ;
101            Text [ en-US ] = "Tiny" ;
102        };
103		MenuItem
104		{
105            Identifier = CM_SIZE_50 ;
106            Text [ en-US ] = "Smaller" ;
107        };
108		MenuItem
109		{
110            Identifier = CM_SIZE_150 ;
111            Text [ en-US ] = "Larger" ;
112        };
113		MenuItem
114		{
115            Identifier = CM_SIZE_400 ;
116            Text [ en-US ] = "Extra large" ;
117        };
118		MenuItem
119		{
120			Separator = TRUE ;
121		};
122        MenuItem
123        {
124            Identifier = CM_HORIZONTAL  ;
125            Text [ en-US ] = "Horizontal" ;
126
127        };
128        MenuItem
129        {
130            Identifier = CM_VERTICAL ;
131            Text [ en-US ] = "Vertical" ;
132
133        };
134        MenuItem
135        {
136            Identifier = CM_BOTH ;
137            Text [ en-US ] = "Both" ;
138
139        };
140	};
141};
142
143Menu RID_CUSTOMANIMATION_ROTATION_POPUP
144{
145	ItemList =
146	{
147        MenuItem
148        {
149            Identifier = CM_QUARTER_SPIN ;
150            Text [ en-US ] = "Quarter spin" ;
151        };
152        MenuItem
153        {
154            Identifier = CM_HALF_SPIN ;
155            Text [ en-US ] = "Half spin" ;
156        };
157        MenuItem
158        {
159            Identifier = CM_FULL_SPIN;
160            Text [ en-US ] = "Full spin" ;
161        };
162        MenuItem
163        {
164            Identifier = CM_TWO_SPINS;
165            Text [ en-US ] = "Two spins" ;
166        };
167		MenuItem
168		{
169			Separator = TRUE ;
170		};
171        MenuItem
172        {
173            Identifier = CM_CLOCKWISE;
174            Text [ en-US ] = "Clockwise" ;
175        };
176        MenuItem
177        {
178            Identifier = CM_COUNTERCLOCKWISE;
179            Text [ en-US ] = "Counter-clockwise" ;
180        };
181	};
182};
183
184Menu RID_CUSTOMANIMATION_FONTSTYLE_POPUP
185{
186	ItemList =
187	{
188        MenuItem
189        {
190            Identifier = CM_BOLD ;
191            Text [ en-US ] = "Bold" ;
192        };
193        MenuItem
194        {
195            Identifier = CM_ITALIC ;
196            Text [ en-US ] = "Italic" ;
197        };
198        MenuItem
199        {
200            Identifier = CM_UNDERLINED ;
201            Text [ en-US ] = "Underlined" ;
202        };
203	};
204};
205
206String STR_CUSTOMANIMATION_DURATION_VERY_SLOW
207{
208	Text [ en-US ] = "Very slow";
209};
210
211String STR_CUSTOMANIMATION_DURATION_SLOW
212{
213	Text [ en-US ] = "Slow";
214};
215
216String STR_CUSTOMANIMATION_DURATION_NORMAL
217{
218	Text [ en-US ] = "Medium";
219};
220
221String STR_CUSTOMANIMATION_DURATION_FAST
222{
223	Text [ en-US ] = "Fast";
224};
225
226String STR_CUSTOMANIMATION_DURATION_VERY_FAST
227{
228	Text [ en-US ] = "Very fast";
229};
230
231String STR_CUSTOMANIMATION_REPEAT_NONE
232{
233	Text [ en-US ] = "none";
234};
235
236String STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK
237{
238	Text [ en-US ] = "Until next click";
239};
240
241String STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE
242{
243	Text [ en-US ] = "Until end of slide";
244};
245
246String STR_CUSTOMANIMATION_DIRECTION_PROPERTY
247{
248	Text [ en-US ] = "Direction";
249};
250
251String STR_CUSTOMANIMATION_ZOOM_PROPERTY
252{
253	Text [ en-US ] = "Zoom";
254};
255
256String STR_CUSTOMANIMATION_SPOKES_PROPERTY
257{
258	Text [ en-US ] = "Spokes";
259};
260
261String STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY
262{
263	Text [ en-US ] = "First color";
264};
265
266String STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY
267{
268	Text [ en-US ] = "Second color";
269};
270
271String STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY
272{
273	Text [ en-US ] = "Fill color";
274};
275
276String STR_CUSTOMANIMATION_STYLE_PROPERTY
277{
278	Text [ en-US ] = "Style";
279};
280
281String STR_CUSTOMANIMATION_FONT_PROPERTY
282{
283	Text [ en-US ] = "Font";
284};
285
286String STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY
287{
288	Text [ en-US ] = "Font color";
289};
290
291String STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY
292{
293	Text [ en-US ] = "Style";
294};
295
296String STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY
297{
298	Text [ en-US ] = "Typeface";
299};
300
301String STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY
302{
303	Text [ en-US ] = "Line color";
304};
305
306String STR_CUSTOMANIMATION_SIZE_PROPERTY
307{
308	Text [ en-US ] = "Font size";
309};
310
311String STR_CUSTOMANIMATION_SCALE_PROPERTY
312{
313	Text [ en-US ] = "Size";
314};
315
316String STR_CUSTOMANIMATION_AMOUNT_PROPERTY
317{
318	Text [ en-US ] = "Amount";
319};
320
321String STR_CUSTOMANIMATION_COLOR_PROPERTY
322{
323	Text [ en-US ] = "Color";
324};
325
326String STR_CUSTOMANIMATION_NO_SOUND
327{
328	Text [ en-US ] = "(No sound)";
329};
330
331String STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND
332{
333	Text [ en-US ] = "(Stop previous sound)";
334};
335
336String STR_CUSTOMANIMATION_BROWSE_SOUND
337{
338	Text [ en-US ] = "Other sound...";
339};
340
341String STR_CUSTOMANIMATION_SAMPLE
342{
343	Text [ en-US ] = "Sample";
344};
345
346String STR_CUSTOMANIMATION_1_SPOKES
347{
348	Text [ en-US ] = "1 Spoke";
349};
350
351String STR_CUSTOMANIMATION_2_SPOKES
352{
353	Text [ en-US ] = "2 Spokes";
354};
355
356String STR_CUSTOMANIMATION_3_SPOKES
357{
358	Text [ en-US ] = "3 Spokes";
359};
360
361String STR_CUSTOMANIMATION_4_SPOKES
362{
363	Text [ en-US ] = "4 Spokes";
364};
365
366String STR_CUSTOMANIMATION_8_SPOKES
367{
368	Text [ en-US ] = "8 Spokes";
369};
370
371String STR_CUSTOMANIMATION_INSTANT
372{
373	Text [ en-US ] = "Instant";
374};
375
376String STR_CUSTOMANIMATION_GRADUAL
377{
378	Text [ en-US ] = "Gradual";
379};
380
381String STR_CUSTOMANIMATION_TRIGGER
382{
383	Text [ en-US ] = "Trigger";
384};
385
386String STR_CUSTOMANIMATION_LIST_HELPTEXT
387{
388	Text [ en-US ] = "First select the slide element and then click 'Add...' to add an animation effect.";
389};
390
391Image IMG_CUSTOMANIMATION_ON_CLICK
392{
393	ImageBitmap = Bitmap { File = "click_16.png" ; };
394};
395
396Image IMG_CUSTOMANIMATION_ON_CLICK_H
397{
398	ImageBitmap = Bitmap { File = "click_16_h.png" ; };
399};
400
401Image IMG_CUSTOMANIMATION_AFTER_PREVIOUS
402{
403	ImageBitmap = Bitmap { File = "time_16.png" ; };
404};
405
406Image IMG_CUSTOMANIMATION_AFTER_PREVIOUS_H
407{
408	ImageBitmap = Bitmap { File = "time_16_h.png" ; };
409};
410
411Image IMG_CUSTOMANIMATION_ENTRANCE_EFFECT
412{
413	ImageBitmap = Bitmap { File = "effect_16.png" ; };
414};
415
416Image IMG_CUSTOMANIMATION_ENTRANCE_EFFECT_H
417{
418	ImageBitmap = Bitmap { File = "effect_16_h.png" ; };
419};
420
421Image IMG_CUSTOMANIMATION_EMPHASIS_EFFECT
422{
423	ImageBitmap = Bitmap { File = "effectshape_16.png" ; };
424};
425
426Image IMG_CUSTOMANIMATION_EMPHASIS_EFFECT_H
427{
428	ImageBitmap = Bitmap { File = "effectshape_16_h.png" ; };
429};
430
431Image IMG_CUSTOMANIMATION_EXIT_EFFECT
432{
433	ImageBitmap = Bitmap { File = "effectfade_16.png" ; };
434};
435
436Image IMG_CUSTOMANIMATION_EXIT_EFFECT_H
437{
438	ImageBitmap = Bitmap { File = "effectfade_16_h.png" ; };
439};
440
441Image IMG_CUSTOMANIMATION_MOTION_PATH
442{
443	ImageBitmap = Bitmap { File = "effectpath_16.png" ; };
444};
445
446Image IMG_CUSTOMANIMATION_MOTION_PATH_H
447{
448	ImageBitmap = Bitmap { File = "effectpath_16_h.png" ; };
449};
450
451Image IMG_CUSTOMANIMATION_OLE
452{
453	ImageBitmap = Bitmap { File = "effectole_16.png"; } ;
454};
455
456Image IMG_CUSTOMANIMATION_OLE_H
457{
458	ImageBitmap = Bitmap { File = "effectole_16_h.png"; } ;
459};
460
461Image IMG_CUSTOMANIMATION_MEDIA_PLAY
462{
463	ImageBitmap = Bitmap { File = "playblue_16.png"; } ;
464};
465
466Image IMG_CUSTOMANIMATION_MEDIA_PLAY_H
467{
468	ImageBitmap = Bitmap { File = "playblue_16_h.png"; } ;
469};
470
471Image IMG_CUSTOMANIMATION_MEDIA_PAUSE
472{
473	ImageBitmap = Bitmap { File = "breakplayingblue_16.png"; } ;
474};
475
476Image IMG_CUSTOMANIMATION_MEDIA_PAUSE_H
477{
478	ImageBitmap = Bitmap { File = "breakplayingblue_16_h.png"; } ;
479};
480
481Image IMG_CUSTOMANIMATION_MEDIA_STOP
482{
483	ImageBitmap = Bitmap { File = "stopplayingblue_16.png"; } ;
484};
485
486Image IMG_CUSTOMANIMATION_MEDIA_STOP_H
487{
488	ImageBitmap = Bitmap { File = "stopplayingblue_16_h.png"; } ;
489};
490
491
492