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 "annotations.hrc"
29#include "glob.hrc"
30#include <svx/svxids.hrc>
31#include "helpids.h"
32
33Menu RID_ANNOTATION_CONTEXTMENU
34{
35	ItemList =
36	{
37		MenuItem
38		{
39			Identifier = SID_REPLYTO_POSTIT;
40    		HelpId = CMD_SID_REPLYTO_POSTIT ;
41			Text [ en-US ] = "~Reply";
42		};
43		MenuItem
44		{
45			Separator = TRUE;
46		};
47		MenuItem
48		{
49			Identifier = SID_ATTR_CHAR_WEIGHT;
50    		HelpId = CMD_SID_ATTR_CHAR_WEIGHT ;
51			Text [ en-US ] = "~Bold";
52		};
53		MenuItem
54		{
55			Identifier = SID_ATTR_CHAR_POSTURE;
56    		HelpId = CMD_SID_ATTR_CHAR_POSTURE;
57			Text [ en-US ] = "~Italic";
58		};
59		MenuItem
60		{
61			Identifier = SID_ATTR_CHAR_UNDERLINE;
62    		HelpId = CMD_SID_ATTR_CHAR_UNDERLINE;
63			Text [ en-US ] = "~Underline";
64		};
65		MenuItem
66		{
67			Identifier = SID_ATTR_CHAR_STRIKEOUT;
68    		HelpId = CMD_SID_ATTR_CHAR_STRIKEOUT;
69			Text [ en-US ] = "~Strikethrough";
70		};
71		MenuItem
72		{
73			Separator = TRUE;
74		};
75		MenuItem
76		{
77    		Identifier = SID_COPY ;
78    		HelpId = CMD_SID_COPY ;
79    		Text [ en-US ] = "~Copy" ;
80		};
81		MenuItem
82		{
83    		Identifier = SID_PASTE ;
84    		HelpId = CMD_SID_PASTE ;
85    		Text [ en-US ] = "~Paste" ;
86		};
87		MenuItem
88		{
89			Separator = TRUE;
90		};
91        MenuItem
92        {
93            Identifier = SID_DELETE_POSTIT ;
94    		HelpId = CMD_SID_DELETE_POSTIT;
95            Text [ en-US ] = "~Delete Comment" ;
96        };
97        MenuItem
98        {
99            Identifier = SID_DELETEALLBYAUTHOR_POSTIT ;
100    		HelpId = CMD_SID_DELETEALLBYAUTHOR_POSTIT;
101            Text [ en-US ] = "Delete All Comments b~y %1" ;
102        };
103        MenuItem
104        {
105            Identifier = SID_DELETEALL_POSTIT;
106    		HelpId = CMD_SID_DELETEALL_POSTIT;
107            Text [ en-US ] = "Delete ~All Comments" ;
108        };
109	};
110};
111
112Menu RID_ANNOTATION_TAG_CONTEXTMENU
113{
114	ItemList =
115	{
116		MenuItem
117		{
118			Identifier = SID_REPLYTO_POSTIT;
119			HelpId = CMD_SID_REPLYTO_POSTIT;
120			Text [ en-US ] = "~Reply";
121		};
122		MenuItem
123		{
124			Separator = TRUE;
125		};
126        MenuItem
127        {
128            Identifier = SID_DELETE_POSTIT ;
129            HelpId = CMD_SID_DELETE_POSTIT ;
130            Text [ en-US ] = "~Delete Comment" ;
131        };
132        MenuItem
133        {
134            Identifier = SID_DELETEALLBYAUTHOR_POSTIT ;
135            HelpId = CMD_SID_DELETEALLBYAUTHOR_POSTIT ;
136            Text [ en-US ] = "Delete All Comments ~by %1" ;
137        };
138        MenuItem
139        {
140            Identifier = SID_DELETEALL_POSTIT;
141            HelpId = CMD_SID_DELETEALL_POSTIT;
142            Text [ en-US ] = "Delete ~All Comments" ;
143        };
144	};
145};
146
147String STR_ANNOTATION_TODAY
148{
149    Text [ en-US ] = "Today," ;
150};
151
152String STR_ANNOTATION_YESTERDAY
153{
154    Text [ en-US ] = "Yesterday," ;
155};
156
157String STR_ANNOTATION_NOAUTHOR
158{
159    Text [ en-US ] = "(no author)" ;
160};
161
162String STR_ANNOTATION_WRAP_FORWARD
163{
164	Text [ en-US ] = "%PRODUCTNAME Impress reached the end of the presentation. Do you want to continue at the beginning?";
165};
166
167String STR_ANNOTATION_WRAP_BACKWARD
168{
169	Text [ en-US ] = "%PRODUCTNAME Impress reached the beginning of the presentation. Do you want to continue at the end?";
170};
171
172String STR_ANNOTATION_WRAP_FORWARD_DRAW
173{
174	Text [ en-US ] = "%PRODUCTNAME Draw reached the end of the document. Do you want to continue at the beginning?";
175};
176
177String STR_ANNOTATION_WRAP_BACKWARD_DRAW
178{
179	Text [ en-US ] = "%PRODUCTNAME Draw reached the beginning of the document. Do you want to continue at the end?";
180};
181
182String STR_ANNOTATION_UNDO_INSERT
183{
184	Text [ en-US ] = "Insert Comment";
185};
186
187String STR_ANNOTATION_UNDO_DELETE
188{
189	Text [ en-US ] = "Delete Comment(s)";
190};
191
192String STR_ANNOTATION_UNDO_MOVE
193{
194	Text [ en-US ] = "Move Comment";
195};
196
197String STR_ANNOTATION_UNDO_EDIT
198{
199	Text [ en-US ] = "Edit Comment";
200};
201
202String STR_ANNOTATION_UNDO_REPLY
203{
204	Text [ en-US ] = "Reply to Comment";
205};
206
207String STR_ANNOTATION_REPLY
208{
209	Text [ en-US ] = "Reply to %1" ;
210};
211