bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / slideshow / slideshow.src
blob480cc096063a99f8601fae465c728db656eea9b1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "glob.hrc"
21 #include "slideshow.hrc"
23 Menu RID_SLIDESHOW_CONTEXTMENU
25     ItemList =
26     {
27         MenuItem
28         {
29             Identifier = CM_NEXT_SLIDE ;
30             Text [ en-US ] = "~Next" ;
31         };
32         MenuItem
33         {
34             Identifier = CM_PREV_SLIDE ;
35             Text [ en-US ] = "~Previous" ;
36            };
37         MenuItem
38         {
39             Identifier = CM_GOTO;
40             Text [ en-US ] = "~Go to Slide" ;
41             SubMenu = Menu
42             {
43                 ItemList =
44                 {
45                     MenuItem
46                     {
47                         Identifier = CM_FIRST_SLIDE;
48                         Text [ en-US ] = "~First Slide";
49                     };
50                     MenuItem
51                     {
52                         Identifier = CM_LAST_SLIDE;
53                         Text [ en-US ] = "~Last Slide";
54                     };
55                     MenuItem
56                     {
57                         Separator = TRUE;
58                     };
59                 };
60             };
61         };
62         MenuItem
63         {
64             Separator = TRUE;
65         };
66         MenuItem
67         {
68             Identifier = CM_PEN_MODE;
69             Text [ en-US ] = "Mouse pointer as ~Pen";
70         };
71         MenuItem
72         {
73             Identifier = CM_WIDTH_PEN;
74             Text [ en-US ] = "~Pen Width" ;
75             SubMenu = Menu
76             {
77                 ItemList =
78                 {
79                     MenuItem
80                     {
81                         Identifier =  CM_WIDTH_PEN_VERY_THIN;
82                         Text [ en-US ] = "~Very thin";
83                     };
84                     MenuItem
85                     {
86                         Identifier =  CM_WIDTH_PEN_THIN;
87                         Text [ en-US ] = "~Thin";
88                     };
89                     MenuItem
90                     {
91                         Identifier =  CM_WIDTH_PEN_NORMAL;
92                         Text [ en-US ] = "~Normal";
93                     };
94                     MenuItem
95                     {
96                         Identifier =  CM_WIDTH_PEN_THICK;
97                         Text [ en-US ] = "~Thick";
98                     };
99                     MenuItem
100                     {
101                         Identifier =  CM_WIDTH_PEN_VERY_THICK;
102                         Text [ en-US ] = "~Very Thick";
103                     };
104                 };
105             };
106         };
107         MenuItem
108         {
109             Identifier = CM_COLOR_PEN ;
110             Text [ en-US ] = "~Change pen Color..." ;
111         };
112         MenuItem
113         {
114             Identifier = CM_ERASE_ALLINK ;
115             Text [ en-US ] = "~Erase all ink on Slide" ;
116         };
117         MenuItem
118         {
119             Separator = TRUE;
120         };
121         MenuItem
122         {
123             Identifier = CM_SCREEN;
124             Text [ en-US ] = "~Screen" ;
126             SubMenu = Menu
127             {
128                 ItemList =
129                 {
130                     MenuItem
131                     {
132                         Identifier = CM_SCREEN_BLACK;
133                         Text [ en-US ] = "~Black";
134                     };
135                     MenuItem
136                     {
137                         Identifier = CM_SCREEN_WHITE;
138                         Text [ en-US ] = "~White";
139                     };
140                 };
141             };
142         };
143         MenuItem
144         {
145             Identifier = CM_EDIT_PRESENTATION ;
146             Text [ en-US ] = "E~dit Presentation" ;
147         };
148         MenuItem
149         {
150             Identifier = CM_ENDSHOW ;
151             Text [ en-US ] = "~End Show" ;
152         };
153     };
156 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */