xref: /trunk/main/svx/source/src/app.src (revision 09a1d057)
1*09a1d057SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*09a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*09a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*09a1d057SAndrew Rist * distributed with this work for additional information
6*09a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*09a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*09a1d057SAndrew Rist * "License"); you may not use this file except in compliance
9*09a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10*09a1d057SAndrew Rist *
11*09a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*09a1d057SAndrew Rist *
13*09a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*09a1d057SAndrew Rist * software distributed under the License is distributed on an
15*09a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*09a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
17*09a1d057SAndrew Rist * specific language governing permissions and limitations
18*09a1d057SAndrew Rist * under the License.
19*09a1d057SAndrew Rist *
20*09a1d057SAndrew Rist *************************************************************/
21*09a1d057SAndrew Rist
22*09a1d057SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svx/svxids.hrc>
25cdf0e10cSrcweir#include "app.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweir //----------------------------------------------------------------------------
28cdf0e10cSrcweirString RID_APPTITLE
29cdf0e10cSrcweir{
30cdf0e10cSrcweir    Text = "%PRODUCTNAME %PRODUCTVERSION %PRODUCTEXTENSION" ;
31cdf0e10cSrcweir};
32cdf0e10cSrcweir
33cdf0e10cSrcweir#define MASKCOLOR		MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };
34cdf0e10cSrcweir
35cdf0e10cSrcweirErrorBox RID_ERRBOX_MODULENOTINSTALLED
36cdf0e10cSrcweir{
37cdf0e10cSrcweir	Buttons = WB_OK ;
38cdf0e10cSrcweir	Message [ en-US ] = "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed.";
39cdf0e10cSrcweir};
40cdf0e10cSrcweir
41cdf0e10cSrcweir#define IMAGE_ID_LIST\
42cdf0e10cSrcweir	IdList = {\
43cdf0e10cSrcweir		SID_HLINKBAR_LINK; \
44cdf0e10cSrcweir		SID_HLINKBAR_SEARCH; \
45cdf0e10cSrcweir		SID_HLINKBAR_TARGET; \
46cdf0e10cSrcweir		SID_HYPERLINK_DIALOG; \
47cdf0e10cSrcweir    };\
48cdf0e10cSrcweir	IdCount = {\
49cdf0e10cSrcweir        4;\
50cdf0e10cSrcweir	};
51cdf0e10cSrcweir
52cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_SC
53cdf0e10cSrcweir{
54cdf0e10cSrcweir    Prefix = "sc";
55cdf0e10cSrcweir	MASKCOLOR
56cdf0e10cSrcweir	IMAGE_ID_LIST
57cdf0e10cSrcweir};
58cdf0e10cSrcweir
59cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_LC
60cdf0e10cSrcweir{
61cdf0e10cSrcweir    Prefix = "lc";
62cdf0e10cSrcweir	MASKCOLOR
63cdf0e10cSrcweir	IMAGE_ID_LIST
64cdf0e10cSrcweir};
65cdf0e10cSrcweir
66cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_SCH
67cdf0e10cSrcweir{
68cdf0e10cSrcweir    Prefix = "sch";
69cdf0e10cSrcweir    MASKCOLOR
70cdf0e10cSrcweir    IMAGE_ID_LIST
71cdf0e10cSrcweir};
72cdf0e10cSrcweir
73cdf0e10cSrcweirImageList RID_DEFAULTIMAGELIST_LCH
74cdf0e10cSrcweir{
75cdf0e10cSrcweir    Prefix = "lch";
76cdf0e10cSrcweir    MASKCOLOR
77cdf0e10cSrcweir    IMAGE_ID_LIST
78cdf0e10cSrcweir};
79cdf0e10cSrcweir
80cdf0e10cSrcweir// Strings ---------------------------------------------------------------
81cdf0e10cSrcweir
82cdf0e10cSrcweirString RID_DESKTOP
83cdf0e10cSrcweir{
84cdf0e10cSrcweir	Text = "%PRODUCTNAME" ;
85cdf0e10cSrcweir};
86cdf0e10cSrcweir
87