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 .
22 #include <unotools/resmgr.hxx>
24 #define NC_(Context, String) TranslateId(Context, u8##String)
26 const TranslateId DATE_FUNCDESC_DiffWeeks[] =
28 NC_("DATE_FUNCDESC_DiffWeeks", "Calculates the number of weeks in a specific period"),
29 NC_("DATE_FUNCDESC_DiffWeeks", "Start date"),
30 NC_("DATE_FUNCDESC_DiffWeeks", "First day of the period"),
31 NC_("DATE_FUNCDESC_DiffWeeks", "End date"),
32 NC_("DATE_FUNCDESC_DiffWeeks", "Last day of the period"),
33 NC_("DATE_FUNCDESC_DiffWeeks", "Type"),
34 NC_("DATE_FUNCDESC_DiffWeeks", "Type of calculation: Type=0 means the time interval, Type=1 means calendar weeks.")
37 const TranslateId DATE_FUNCDESC_DiffMonths[] =
39 NC_("DATE_FUNCDESC_DiffMonths", "Determines the number of months in a specific period."),
40 NC_("DATE_FUNCDESC_DiffMonths", "Start date"),
41 NC_("DATE_FUNCDESC_DiffMonths", "First day of the period."),
42 NC_("DATE_FUNCDESC_DiffMonths", "End date"),
43 NC_("DATE_FUNCDESC_DiffMonths", "Last day of the period."),
44 NC_("DATE_FUNCDESC_DiffMonths", "Type"),
45 NC_("DATE_FUNCDESC_DiffMonths", "Type of calculation: Type=0 means the time interval, Type=1 means calendar months.")
48 const TranslateId DATE_FUNCDESC_DiffYears[] =
50 NC_("DATE_FUNCDESC_DiffYears", "Calculates the number of years in a specific period."),
51 NC_("DATE_FUNCDESC_DiffYears", "Start date"),
52 NC_("DATE_FUNCDESC_DiffYears", "First day of the period"),
53 NC_("DATE_FUNCDESC_DiffYears", "End date"),
54 NC_("DATE_FUNCDESC_DiffYears", "Last day of the period"),
55 NC_("DATE_FUNCDESC_DiffYears", "Type"),
56 NC_("DATE_FUNCDESC_DiffYears", "Type of calculation: Type=0 means the time interval, Type=1 means calendar years.")
59 const TranslateId DATE_FUNCDESC_IsLeapYear[] =
61 NC_("DATE_FUNCDESC_IsLeapYear", "Returns 1 (TRUE) if the date is a day of a leap year, otherwise 0 (FALSE)."),
62 NC_("DATE_FUNCDESC_IsLeapYear", "Date"),
63 NC_("DATE_FUNCDESC_IsLeapYear", "Any day in the desired year")
66 const TranslateId DATE_FUNCDESC_DaysInMonth[] =
68 NC_("DATE_FUNCDESC_DaysInMonth", "Returns the number of days of the month in which the date entered occurs"),
69 NC_("DATE_FUNCDESC_DaysInMonth", "Date"),
70 NC_("DATE_FUNCDESC_DaysInMonth", "Any day in the desired month")
73 const TranslateId DATE_FUNCDESC_DaysInYear[] =
75 NC_("DATE_FUNCDESC_DaysInYear", "Returns the number of days of the year in which the date entered occurs."),
76 NC_("DATE_FUNCDESC_DaysInYear", "Date"),
77 NC_("DATE_FUNCDESC_DaysInYear", "Any day in the desired year")
80 const TranslateId DATE_FUNCDESC_WeeksInYear[] =
82 NC_("DATE_FUNCDESC_WeeksInYear", "Returns the number of weeks of the year in which the date entered occurs"),
83 NC_("DATE_FUNCDESC_WeeksInYear", "Date"),
84 NC_("DATE_FUNCDESC_WeeksInYear", "Any day in the desired year")
87 const TranslateId DATE_FUNCDESC_Rot13[] =
89 NC_("DATE_FUNCDESC_Rot13", "Encrypts or decrypts a text using the ROT13 algorithm"),
90 NC_("DATE_FUNCDESC_Rot13", "Text"),
91 NC_("DATE_FUNCDESC_Rot13", "Text to be encrypted or text already encrypted")
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */