xref: /aoo4110/main/sc/addin/rot13/rot13.src (revision b1cdbd2c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#include "sc.hrc" // Definition RID_XXX in StarCalc
24#include "rot13.hrc"
25
26/* #i54546# The code belonging to this resource file is sample code for the
27 * legacy AddIn interface. The interface is still supported, but deprecated.
28 * The strings here were displayed in the function wizard. To prevent
29 * duplicated and useless translation effort (functions and strings are also
30 * part of the new scaddin module), the strings here are now layed out as fixed
31 * untranslatable strings. The entire mechanism with the ../util/cl2c.pl perl
32 * script merging the raw .cl and the .src during build time didn't work
33 * anymore anyway, since we switched from MS-LCIDs / telephone area codes to
34 * ISO codes for resources, and introduced localize.sdf files. Returned was
35 * always an empty string. Now at least the fixed English string is returned.
36 * */
37
38Resource RID_SC_ADDIN_ROT13
39{
40	String ROT13_DESC // Description
41	{
42		Text = "ROT13 Algorithm, each alphabetical character of the text is rotated by 13 in the alphabet";
43	};
44
45	String ROT13_PAR1_NAME // Name of Parameter 1
46	{
47		Text = "Text";
48	};
49
50	String ROT13_PAR1_DESC // Description of Parameter 1
51	{
52		Text = "The text that is to be rotated";
53	};
54};
55