1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SCADDINS_INC_PRICING_HRC
21 #define INCLUDED_SCADDINS_INC_PRICING_HRC
23 #define NC_(Context, String) (Context "\004" u8##String)
25 const char* DATE_FUNCDESC_DiffWeeks[] =
27 NC_("DATE_FUNCDESC_DiffWeeks", "Calculates the number of weeks in a specific period"),
28 NC_("DATE_FUNCDESC_DiffWeeks", "Start date"),
29 NC_("DATE_FUNCDESC_DiffWeeks", "First day of the period"),
30 NC_("DATE_FUNCDESC_DiffWeeks", "End date"),
31 NC_("DATE_FUNCDESC_DiffWeeks", "Last day of the period"),
32 NC_("DATE_FUNCDESC_DiffWeeks", "Type"),
33 NC_("DATE_FUNCDESC_DiffWeeks", "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.")
36 const char* DATE_FUNCDESC_DiffMonths[] =
38 NC_("DATE_FUNCDESC_DiffMonths", "Determines the number of months in a specific period."),
39 NC_("DATE_FUNCDESC_DiffMonths", "Start date"),
40 NC_("DATE_FUNCDESC_DiffMonths", "First day of the period."),
41 NC_("DATE_FUNCDESC_DiffMonths", "End date"),
42 NC_("DATE_FUNCDESC_DiffMonths", "Last day of the period."),
43 NC_("DATE_FUNCDESC_DiffMonths", "Type"),
44 NC_("DATE_FUNCDESC_DiffMonths", "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.")
47 const char* DATE_FUNCDESC_DiffYears[] =
49 NC_("DATE_FUNCDESC_DiffYears", "Calculates the number of years in a specific period."),
50 NC_("DATE_FUNCDESC_DiffYears", "Start date"),
51 NC_("DATE_FUNCDESC_DiffYears", "First day of the period"),
52 NC_("DATE_FUNCDESC_DiffYears", "End date"),
53 NC_("DATE_FUNCDESC_DiffYears", "Last day of the period"),
54 NC_("DATE_FUNCDESC_DiffYears", "Type"),
55 NC_("DATE_FUNCDESC_DiffYears", "Type of calculation: Type=0 means the time interval, Type=1 means calendar years.")
58 const char* DATE_FUNCDESC_IsLeapYear[] =
60 NC_("DATE_FUNCDESC_IsLeapYear", "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."),
61 NC_("DATE_FUNCDESC_IsLeapYear", "Date"),
62 NC_("DATE_FUNCDESC_IsLeapYear", "Any day in the desired year")
65 const char* DATE_FUNCDESC_DaysInMonth[] =
67 NC_("DATE_FUNCDESC_DaysInMonth", "Returns the number of days of the month in which the date entered occurs"),
68 NC_("DATE_FUNCDESC_DaysInMonth", "Date"),
69 NC_("DATE_FUNCDESC_DaysInMonth", "Any day in the desired month")
72 const char* DATE_FUNCDESC_DaysInYear[] =
74 NC_("DATE_FUNCDESC_DaysInYear", "Returns the number of days of the year in which the date entered occurs."),
75 NC_("DATE_FUNCDESC_DaysInYear", "Date"),
76 NC_("DATE_FUNCDESC_DaysInYear", "Any day in the desired year")
79 const char* DATE_FUNCDESC_WeeksInYear[] =
81 NC_("DATE_FUNCDESC_WeeksInYear", "Returns the number of weeks of the year in which the date entered occurs"),
82 NC_("DATE_FUNCDESC_WeeksInYear", "Date"),
83 NC_("DATE_FUNCDESC_WeeksInYear", "Any day in the desired year")
86 const char* DATE_FUNCDESC_Rot13[] =
88 NC_("DATE_FUNCDESC_Rot13", "Encrypts or decrypts a text using the ROT13 algorithm"),
89 NC_("DATE_FUNCDESC_Rot13", "Text"),
90 NC_("DATE_FUNCDESC_Rot13", "Text to be encrypted or text already encrypted")
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */