Branch libreoffice-5-0-4
[LibreOffice.git] / vcl / source / src / menu.src
blob7e489e6a48d62bd97e50f9d51fe8288658a3cce0
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 <svids.hrc>
22 String SV_RESID_STRING_NOSELECTIONPOSSIBLE
24     Text [ en-US ] = "<No selection possible>";
27 Menu SV_RESID_MENU_EDIT
29     ItemList =
30     {
31         MenuItem
32         {
33             Identifier = SV_MENU_EDIT_UNDO ;
34             Text [ en-US ] = "~Undo" ;
35         };
36         MenuItem { Separator = TRUE ; };
37         MenuItem
38         {
39             Identifier = SV_MENU_EDIT_CUT ;
40             Text [ en-US ] = "Cu~t" ;
41         };
42         MenuItem
43         {
44             Identifier = SV_MENU_EDIT_COPY ;
45             Text [ en-US ] = "~Copy" ;
46         };
47         MenuItem
48         {
49             Identifier = SV_MENU_EDIT_PASTE ;
50             Text [ en-US ] = "~Paste" ;
51         };
52         MenuItem
53         {
54             Identifier = SV_MENU_EDIT_DELETE ;
55             Text [ en-US ] = "~Delete" ;
56         };
57         MenuItem { Separator = TRUE ; };
58         MenuItem
59         {
60             Identifier = SV_MENU_EDIT_SELECTALL ;
61             Text [ en-US ] = "Select ~All" ;
62         };
63         MenuItem { Separator = TRUE ; };
64         MenuItem
65         {
66             Identifier = SV_MENU_EDIT_INSERTSYMBOL;
67             Text [ en-US ] = "~Special Character...";
69         };
70     };
73 String SV_MENU_MAC_SERVICES
75     Text [ en-US ] = "Services";
78 String SV_MENU_MAC_HIDEAPP
80     Text [ en-US ] = "Hide %PRODUCTNAME";
83 String SV_MENU_MAC_HIDEALL
85     Text [ en-US ] = "Hide Others";
88 String SV_MENU_MAC_SHOWALL
90     Text [ en-US ] = "Show All";
93 String SV_MENU_MAC_QUITAPP
95     Text [ en-US ] = "Quit %PRODUCTNAME";
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */