xref: /trunk/main/sc/addin/rot13/rot13.src (revision a30e0b2c)
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
24#include "sc.hrc" // Definition RID_XXX in Calc
25#include "rot13.hrc"
26
27/* #i54546# The code belonging to this resource file is sample code for the
28 * legacy AddIn interface. The interface is still supported, but deprecated.
29 * The strings here were displayed in the function wizard. To prevent
30 * duplicated and useless translation effort (functions and strings are also
31 * part of the new scaddin module), the strings here are now laid out as fixed
32 * untranslatable strings. The entire mechanism with the ../util/cl2c.pl perl
33 * script merging the raw .cl and the .src during build time didn't work
34 * anymore anyway, since we switched from MS-LCIDs / telephone area codes to
35 * ISO codes for resources, and introduced localize.sdf files. Returned was
36 * always an empty string. Now at least the fixed English string is returned.
37 * */
38
39Resource RID_SC_ADDIN_ROT13
40{
41	String ROT13_DESC // Description
42	{
43		Text = "ROT13 Algorithm, each alphabetical character of the text is rotated by 13 in the alphabet" ;
44	};
45
46	String ROT13_PAR1_NAME // Name of Parameter 1
47	{
48		Text = "Text" ;
49	};
50
51	String ROT13_PAR1_DESC // Description of Parameter 1
52	{
53		Text = "The text that is to be rotated" ;
54	};
55};
56
57// ********************************************************************** EOF
58