summaryrefslogtreecommitdiff
path: root/sd/source/ui/animations/CustomAnimation.src
blob: c7d4f5f2b48c53ffb17e9bd5fed8aec699f51298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/*************************************************************************
 *
 *  OpenOffice.org - a multi-platform office productivity suite
 *
 *  $RCSfile: CustomAnimation.src,v $
 *
 *  $Revision: 1.4 $
 *
 *  last change: $Author: hr $ $Date: 2005-09-23 12:25:10 $
 *
 *  The Contents of this file are made available subject to
 *  the terms of GNU Lesser General Public License Version 2.1.
 *
 *
 *    GNU Lesser General Public License Version 2.1
 *    =============================================
 *    Copyright 2005 by Sun Microsystems, Inc.
 *    901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License version 2.1, as published by the Free Software Foundation.
 *
 *    This library is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *    Lesser General Public License for more details.
 *
 *    You should have received a copy of the GNU Lesser General Public
 *    License along with this library; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *    MA  02111-1307  USA
 *
 ************************************************************************/

#include "CustomAnimation.hrc"

Menu RID_EFFECT_CONTEXTMENU
{
    ItemList =
    {
        MenuItem
        {
            Identifier = CM_WITH_CLICK ;
            Text [ de ] = "Beim ~Klicken" ;
            Text [ en-US ] = "Start On ~Click" ;
        };
        MenuItem
        {
            Identifier = CM_WITH_PREVIOUS ;
            Text [ de ] = "Mit ~Vorheriger" ;
            Text [ en-US ] = "Start ~With Previous" ;
        };
        MenuItem
        {
            Identifier = CM_AFTER_PREVIOUS;
            Text [ de ] = "~Nach Vorheriger" ;
            Text [ en-US ] = "Start ~After Previous" ;
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = CM_OPTIONS;
            Text [ de ] = "~Effektoptionen..." ;
            Text [ en-US ] = "~Effect Options..." ;
        };
        MenuItem
        {
            Identifier = CM_DURATION;
            Text [ de ] = "~Anzeigedauer..." ;
            Text [ en-US ] = "~Timing..." ;
        };
        MenuItem
        {
            Identifier = CM_REMOVE;
            Text [ de ] = "En~tfernen" ;
            Text [ en-US ] = "~Remove" ;
        };
    };
};

Menu RID_CUSTOMANIMATION_FONTSIZE_POPUP
{
    ItemList =
    {
        MenuItem
        {
            Identifier = CM_SIZE_25 ;
            Text [ de ] = "Winzig" ;
            Text [ en-US ] = "Tiny" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_50 ;
            Text [ de ] = "Kleiner" ;
            Text [ en-US ] = "Smaller" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_150 ;
            Text [ de ] = "Größer" ;
            Text [ en-US ] = "Larger" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_400 ;
            Text [ de ] = "Riesengroß" ;
            Text [ en-US ] = "Extra large" ;
        };
    };
};

Menu RID_CUSTOMANIMATION_SCALE_POPUP
{
    ItemList =
    {
        MenuItem
        {
            Identifier = CM_SIZE_25 ;
            Text [ de ] = "Winzig" ;
            Text [ en-US ] = "Tiny" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_50 ;
            Text [ de ] = "Kleiner" ;
            Text [ en-US ] = "Smaller" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_150 ;
            Text [ de ] = "Größer" ;
            Text [ en-US ] = "Larger" ;
        };
        MenuItem
        {
            Identifier = CM_SIZE_400 ;
            Text [ de ] = "Riesengroß" ;
            Text [ en-US ] = "Extra large" ;
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = CM_HORIZONTAL  ;
            Text [ de ] = "Horizontal" ;
            Text [ en-US ] = "Horizontal" ;

        };
        MenuItem
        {
            Identifier = CM_VERTICAL ;
            Text [ de ] = "Vertikal" ;
            Text [ en-US ] = "Vertical" ;

        };
        MenuItem
        {
            Identifier = CM_BOTH ;
            Text [ de ] = "Beide" ;
            Text [ en-US ] = "Both" ;

        };
    };
};

Menu RID_CUSTOMANIMATION_ROTATION_POPUP
{
    ItemList =
    {
        MenuItem
        {
            Identifier = CM_QUARTER_SPIN ;
            Text [ de ] = "Vierteldrehung" ;
            Text [ en-US ] = "Quarter spin" ;
        };
        MenuItem
        {
            Identifier = CM_HALF_SPIN ;
            Text [ de ] = "Halbe Drehung" ;
            Text [ en-US ] = "Half spin" ;
        };
        MenuItem
        {
            Identifier = CM_FULL_SPIN;
            Text [ de ] = "Komplette Drehung" ;
            Text [ en-US ] = "Full spin" ;
        };
        MenuItem
        {
            Identifier = CM_TWO_SPINS;
            Text [ de ] = "Zwei Drehungen" ;
            Text [ en-US ] = "Two spins" ;
        };
        MenuItem
        {
            Separator = TRUE ;
        };
        MenuItem
        {
            Identifier = CM_CLOCKWISE;
            Text [ de ] = "Im Uhrzeigersinn" ;
            Text [ en-US ] = "Clockwise" ;
        };
        MenuItem
        {
            Identifier = CM_COUNTERCLOCKWISE;
            Text [ de ] = "Gegen den Uhrzeigersinn" ;
            Text [ en-US ] = "Counter-clockwise" ;
        };
    };
};

Menu RID_CUSTOMANIMATION_FONTSTYLE_POPUP
{
    ItemList =
    {
        MenuItem
        {
            Identifier = CM_BOLD ;
            Text [ de ] = "Fett" ;
            Text [ en-US ] = "Bold" ;
        };
        MenuItem
        {
            Identifier = CM_ITALIC ;
            Text [ de ] = "Kursiv" ;
            Text [ en-US ] = "Italic" ;
        };
        MenuItem
        {
            Identifier = CM_UNDERLINED ;
            Text [ de ] = "Unterstrichen" ;
            Text [ en-US ] = "Underlinded" ;
        };
    };
};

String STR_CUSTOMANIMATION_DURATION_VERY_SLOW
{
    Text [ de ] = "Sehr langsam";
    Text [ en-US ] = "Very slow";
};

String STR_CUSTOMANIMATION_DURATION_SLOW
{
    Text [ de ] = "Langsam";
    Text [ en-US ] = "Slow";
};

String STR_CUSTOMANIMATION_DURATION_NORMAL
{
    Text [ de ] = "Mittel";
    Text [ en-US ] = "Medium";
};

String STR_CUSTOMANIMATION_DURATION_FAST
{
    Text [ de ] = "Schnell";
    Text [ en-US ] = "Fast";
};

String STR_CUSTOMANIMATION_DURATION_VERY_FAST
{
    Text [ de ] = "Sehr schnell";
    Text [ en-US ] = "Very fast";
};

String STR_CUSTOMANIMATION_REPEAT_NONE
{
    Text [ de ] = "Keine";
    Text [ en-US ] = "none";
};

String STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK
{
    Text [ de ] = "Bis zum nächsten Klick";
    Text [ en-US ] = "Until next click";
};

String STR_CUSTOMANIMATION_REPEAT_UNTIL_END_OF_SLIDE
{
    Text [ de ] = "Bis zum Ende der Folie";
    Text [ en-US ] = "Until end of slide";
};

String STR_CUSTOMANIMATION_DIRECTION_PROPERTY
{
    Text [ de ] = "Richtung";
    Text [ en-US ] = "Direction";
};

String STR_CUSTOMANIMATION_ZOOM_PROPERTY
{
    Text [ de ] = "Zoom";
    Text [ en-US ] = "Zoom";
};

String STR_CUSTOMANIMATION_SPOKES_PROPERTY
{
    Text [ de ] = "Speichen";
    Text [ en-US ] = "Spokes";
};

String STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY
{
    Text [ de ] = "Erste Farbe";
    Text [ en-US ] = "First color";
};

String STR_CUSTOMANIMATION_SECOND_COLOR_PROPERTY
{
    Text [ de ] = "Zweite Farbe";
    Text [ en-US ] = "Second color";
};

String STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY
{
    Text [ de ] = "Füllfarbe";
    Text [ en-US ] = "Fill color";
};

String STR_CUSTOMANIMATION_STYLE_PROPERTY
{
    Text [ de ] = "Formatvorlage";
    Text [ en-US ] = "Style";
};

String STR_CUSTOMANIMATION_FONT_PROPERTY
{
    Text [ de ] = "Schriftart";
    Text [ en-US ] = "Font";
};

String STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY
{
    Text [ de ] = "Schriftfarbe";
    Text [ en-US ] = "Font color";
};

String STR_CUSTOMANIMATION_FONT_SIZE_STYLE_PROPERTY
{
    Text [ de ] = "Art";
    Text [ en-US ] = "Style";
};

String STR_CUSTOMANIMATION_FONT_STYLE_PROPERTY
{
    Text [ de ] = "Schriftschnitt";
    Text [ en-US ] = "Typeface";
};

String STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY
{
    Text [ de ] = "Linienfarbe";
    Text [ en-US ] = "Line color";
};

String STR_CUSTOMANIMATION_SIZE_PROPERTY
{
    Text [ de ] = "Schriftgrad";
    Text [ en-US ] = "Font size";
};

String STR_CUSTOMANIMATION_SCALE_PROPERTY
{
    Text [ de ] = "Größe";
    Text [ en-US ] = "Size";
};

String STR_CUSTOMANIMATION_AMOUNT_PROPERTY
{
    Text [ de ] = "Betrag";
    Text [ en-US ] = "Amount";
};

String STR_CUSTOMANIMATION_COLOR_PROPERTY
{
    Text [ de ] = "Farbe";
    Text [ en-US ] = "Color";
};

String STR_CUSTOMANIMATION_NO_SOUND
{
    Text [ de ] = "(Ohne Klang)";
    Text [ en-US ] = "(No sound)";
};

String STR_CUSTOMANIMATION_STOP_PREVIOUS_SOUND
{
    Text [ de ] = "(Vorherigen Klang Anhalten)";
    Text [ en-US ] = "(Stop previous sound)";
};

String STR_CUSTOMANIMATION_BROWSE_SOUND
{
    Text [ de ] = "Anderer Klang...";
    Text [ en-US ] = "Other sound...";
};

String STR_CUSTOMANIMATION_SAMPLE
{
    Text [ de ] = "Beispiel";
    Text [ en-US ] = "Sample";
};

String STR_CUSTOMANIMATION_1_SPOKES
{
    Text [ de ] = "1 Speiche";
    Text [ en-US ] = "1 Spoke";
};

String STR_CUSTOMANIMATION_2_SPOKES
{
    Text [ de ] = "2 Speichen";
    Text [ en-US ] = "2 Spokes";
};

String STR_CUSTOMANIMATION_3_SPOKES
{
    Text [ de ] = "3 Speichen";
    Text [ en-US ] = "3 Spokes";
};

String STR_CUSTOMANIMATION_4_SPOKES
{
    Text [ de ] = "4 Speichen";
    Text [ en-US ] = "4 Spokes";
};

String STR_CUSTOMANIMATION_8_SPOKES
{
    Text [ de ] = "8 Speichen";
    Text [ en-US ] = "8 Spokes";
};

String STR_CUSTOMANIMATION_INSTANT
{
    Text [ de ] = "Augenblicklich";
    Text [ en-US ] = "Instant";
};

String STR_CUSTOMANIMATION_GRADUAL
{
    Text [ de ] = "Schrittweise";
    Text [ en-US ] = "Gradual";
};

String STR_CUSTOMANIMATION_TRIGGER
{
    Text [ de ] = "Auslöser";
    Text [ en-US ] = "Trigger";
};

String STR_CUSTOMANIMATION_LIST_HELPTEXT
{
    Text [ de ] = "Erst ein Element auf dieser Folie auswählen und dann auf 'Hinzufügen...' klicken, um die Animation hinzuzufügen.";
    Text [ en-US ] = "First select the slide element and then click 'Add...' to add an animation effect.";
};

Image IMG_CUSTOMANIMATION_ON_CLICK
{
    ImageBitmap = Bitmap { File = "click_16.png" ; };
};

Image IMG_CUSTOMANIMATION_ON_CLICK_H
{
    ImageBitmap = Bitmap { File = "click_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_AFTER_PREVIOUS
{
    ImageBitmap = Bitmap { File = "time_16.png" ; };
};

Image IMG_CUSTOMANIMATION_AFTER_PREVIOUS_H
{
    ImageBitmap = Bitmap { File = "time_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_ENTRANCE_EFFECT
{
    ImageBitmap = Bitmap { File = "effect_16.png" ; };
};

Image IMG_CUSTOMANIMATION_ENTRANCE_EFFECT_H
{
    ImageBitmap = Bitmap { File = "effect_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_EMPHASIS_EFFECT
{
    ImageBitmap = Bitmap { File = "effectshape_16.png" ; };
};

Image IMG_CUSTOMANIMATION_EMPHASIS_EFFECT_H
{
    ImageBitmap = Bitmap { File = "effectshape_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_EXIT_EFFECT
{
    ImageBitmap = Bitmap { File = "effectfade_16.png" ; };
};

Image IMG_CUSTOMANIMATION_EXIT_EFFECT_H
{
    ImageBitmap = Bitmap { File = "effectfade_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_MOTION_PATH
{
    ImageBitmap = Bitmap { File = "effectpath_16.png" ; };
};

Image IMG_CUSTOMANIMATION_MOTION_PATH_H
{
    ImageBitmap = Bitmap { File = "effectpath_16_h.png" ; };
};

Image IMG_CUSTOMANIMATION_OLE
{
    ImageBitmap = Bitmap { File = "effectole_16.png"; } ;
};

Image IMG_CUSTOMANIMATION_OLE_H
{
    ImageBitmap = Bitmap { File = "effectole_16_h.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_PLAY
{
    ImageBitmap = Bitmap { File = "playblue_16.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_PLAY_H
{
    ImageBitmap = Bitmap { File = "playblue_16_h.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_PAUSE
{
    ImageBitmap = Bitmap { File = "breakplayingblue_16.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_PAUSE_H
{
    ImageBitmap = Bitmap { File = "breakplayingblue_16_h.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_STOP
{
    ImageBitmap = Bitmap { File = "stopplayingblue_16.png"; } ;
};

Image IMG_CUSTOMANIMATION_MEDIA_STOP_H
{
    ImageBitmap = Bitmap { File = "stopplayingblue_16_h.png"; } ;
};