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_ANALYSIS_HRC
21 #define INCLUDED_SCADDINS_INC_ANALYSIS_HRC
23 #define NC_(Context, String) (Context "\004" u8##String)
25 const char* ANALYSIS_Workday[] =
27 NC_("ANALYSIS_Workday", "Returns the serial number of the date before or after a specified number of workdays"),
28 NC_("ANALYSIS_Workday", "Start date"),
29 NC_("ANALYSIS_Workday", "The start date"),
30 NC_("ANALYSIS_Workday", "Days"),
31 NC_("ANALYSIS_Workday", "The number of workdays before or after the start date"),
32 NC_("ANALYSIS_Workday", "Holidays"),
33 NC_("ANALYSIS_Workday", "List of date values of days off (vacation, holidays, etc.)")
36 const char* ANALYSIS_Yearfrac[] =
38 NC_("ANALYSIS_Yearfrac", "Returns the number of years (including fractional part) between two dates"),
39 NC_("ANALYSIS_Yearfrac", "Start date"),
40 NC_("ANALYSIS_Yearfrac", "The start date"),
41 NC_("ANALYSIS_Yearfrac", "End date"),
42 NC_("ANALYSIS_Yearfrac", "The end date"),
43 NC_("ANALYSIS_Yearfrac", "Basis"),
44 NC_("ANALYSIS_Yearfrac", "Basis indicates the day-count convention to use in the calculation")
47 const char* ANALYSIS_Edate[] =
49 NC_("ANALYSIS_Edate", "Returns the serial number of the date that is a specified number of months before or after the start date"),
50 NC_("ANALYSIS_Edate", "Start date"),
51 NC_("ANALYSIS_Edate", "The start date"),
52 NC_("ANALYSIS_Edate", "Months"),
53 NC_("ANALYSIS_Edate", "Number of months before or after the start date")
56 const char* ANALYSIS_Weeknum[] =
58 NC_("ANALYSIS_Weeknum", "Returns the number of the calendar week in which the specified date occurs.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead."),
59 NC_("ANALYSIS_Weeknum", "Date"),
60 NC_("ANALYSIS_Weeknum", "The date or date serial number"),
61 NC_("ANALYSIS_Weeknum", "Return type"),
62 NC_("ANALYSIS_Weeknum", "Indicates the first day of the week (1 = Sunday, 2 = Monday)")
65 const char* ANALYSIS_Eomonth[] =
67 NC_("ANALYSIS_Eomonth", "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date"),
68 NC_("ANALYSIS_Eomonth", "Start date"),
69 NC_("ANALYSIS_Eomonth", "The start date"),
70 NC_("ANALYSIS_Eomonth", "Months"),
71 NC_("ANALYSIS_Eomonth", "Number of months before or after the start date")
74 const char* ANALYSIS_Networkdays[] =
76 NC_("ANALYSIS_Networkdays", "Returns the number of workdays between two dates.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use NETWORKDAYS instead."),
77 NC_("ANALYSIS_Networkdays", "Start date"),
78 NC_("ANALYSIS_Networkdays", "The start date"),
79 NC_("ANALYSIS_Networkdays", "End date"),
80 NC_("ANALYSIS_Networkdays", "The end date"),
81 NC_("ANALYSIS_Networkdays", "Holidays"),
82 NC_("ANALYSIS_Networkdays", "List of date values representing days off (vacation, holidays, etc.)")
85 const char* ANALYSIS_Iseven[] =
87 NC_("ANALYSIS_Iseven", "Returns the value 'true' if the number is even"),
88 NC_("ANALYSIS_Iseven", "Number"),
89 NC_("ANALYSIS_Iseven", "The number")
92 const char* ANALYSIS_Isodd[] =
94 NC_("ANALYSIS_Isodd", "Returns the value 'true' if the number is odd"),
95 NC_("ANALYSIS_Isodd", "Number"),
96 NC_("ANALYSIS_Isodd", "The number")
99 const char* ANALYSIS_Multinomial[] =
101 NC_("ANALYSIS_Multinomial", "Returns the multinomial coefficient of a set of numbers"),
102 NC_("ANALYSIS_Multinomial", "Number"),
103 NC_("ANALYSIS_Multinomial", "Number or list of numbers for which you want the multinomial coefficient")
106 const char* ANALYSIS_Seriessum[] =
108 NC_("ANALYSIS_Seriessum", "Returns the sum of a power series"),
109 NC_("ANALYSIS_Seriessum", "X"),
110 NC_("ANALYSIS_Seriessum", "The independent variable of the power series"),
111 NC_("ANALYSIS_Seriessum", "N"),
112 NC_("ANALYSIS_Seriessum", "The initial power to which x is to be raised"),
113 NC_("ANALYSIS_Seriessum", "M"),
114 NC_("ANALYSIS_Seriessum", "The increment by which to increase n for each term in the series"),
115 NC_("ANALYSIS_Seriessum", "Coefficients"),
116 NC_("ANALYSIS_Seriessum", "Set of coefficients by which each successive power of the variable x is multiplied")
119 const char* ANALYSIS_Quotient[] =
121 NC_("ANALYSIS_Quotient", "Returns the integer portion of a division"),
122 NC_("ANALYSIS_Quotient", "Numerator"),
123 NC_("ANALYSIS_Quotient", "The dividend"),
124 NC_("ANALYSIS_Quotient", "Denominator"),
125 NC_("ANALYSIS_Quotient", "The divisor")
128 const char* ANALYSIS_Mround[] =
130 NC_("ANALYSIS_Mround", "Returns a number rounded to a specified multiple"),
131 NC_("ANALYSIS_Mround", "Number"),
132 NC_("ANALYSIS_Mround", "The number to round off"),
133 NC_("ANALYSIS_Mround", "Multiple"),
134 NC_("ANALYSIS_Mround", "The multiple to which you want to round number")
137 const char* ANALYSIS_Sqrtpi[] =
139 NC_("ANALYSIS_Sqrtpi", "Returns the square root of a number which has been multiplied by pi"),
140 NC_("ANALYSIS_Sqrtpi", "Number"),
141 NC_("ANALYSIS_Sqrtpi", "The number by which pi is multiplied")
144 const char* ANALYSIS_Randbetween[] =
146 NC_("ANALYSIS_Randbetween", "Returns a random integer between the numbers you specify"),
147 NC_("ANALYSIS_Randbetween", "Bottom"),
148 NC_("ANALYSIS_Randbetween", "The smallest integer returned"),
149 NC_("ANALYSIS_Randbetween", "Top"),
150 NC_("ANALYSIS_Randbetween", "The largest integer returned")
153 const char* ANALYSIS_Gcd[] =
155 NC_("ANALYSIS_Gcd", "Returns the greatest common divisor.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."),
156 NC_("ANALYSIS_Gcd", "Number"),
157 NC_("ANALYSIS_Gcd", "Number or list of numbers")
160 const char* ANALYSIS_Lcm[] =
162 NC_("ANALYSIS_Lcm", "Returns the least common multiple.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."),
163 NC_("ANALYSIS_Lcm", "Number"),
164 NC_("ANALYSIS_Lcm", "Number or list of numbers")
167 const char* ANALYSIS_Besseli[] =
169 NC_("ANALYSIS_Besseli", "Returns the modified Bessel function In(x)"),
170 NC_("ANALYSIS_Besseli", "X"),
171 NC_("ANALYSIS_Besseli", "The value at which the function is to be evaluated"),
172 NC_("ANALYSIS_Besseli", "N"),
173 NC_("ANALYSIS_Besseli", "The order of the Bessel function")
176 const char* ANALYSIS_Besselj[] =
178 NC_("ANALYSIS_Besselj", "Returns the Bessel function Jn(x)"),
179 NC_("ANALYSIS_Besselj", "X"),
180 NC_("ANALYSIS_Besselj", "The value at which the function is to be evaluated"),
181 NC_("ANALYSIS_Besselj", "N"),
182 NC_("ANALYSIS_Besselj", "The order of the Bessel function")
185 const char* ANALYSIS_Besselk[] =
187 NC_("ANALYSIS_Besselk", "Returns the Bessel function Kn(x)"),
188 NC_("ANALYSIS_Besselk", "X"),
189 NC_("ANALYSIS_Besselk", "The value at which the function is to be evaluated"),
190 NC_("ANALYSIS_Besselk", "N"),
191 NC_("ANALYSIS_Besselk", "The order of the Bessel function")
194 const char* ANALYSIS_Bessely[] =
196 NC_("ANALYSIS_Bessely", "Returns the Bessel function Yn(x)"),
197 NC_("ANALYSIS_Bessely", "X"),
198 NC_("ANALYSIS_Bessely", "The value at which the function is to be evaluated"),
199 NC_("ANALYSIS_Bessely", "N"),
200 NC_("ANALYSIS_Bessely", "The order of the Bessel function")
203 const char* ANALYSIS_Bin2Oct[] =
205 NC_("ANALYSIS_Bin2Oct", "Converts a binary number to an octal number"),
206 NC_("ANALYSIS_Bin2Oct", "Number"),
207 NC_("ANALYSIS_Bin2Oct", "The binary number to be converted (as text)"),
208 NC_("ANALYSIS_Bin2Oct", "Places"),
209 NC_("ANALYSIS_Bin2Oct", "Number of places used")
212 const char* ANALYSIS_Bin2Dec[] =
214 NC_("ANALYSIS_Bin2Dec", "Converts a binary number to a decimal number"),
215 NC_("ANALYSIS_Bin2Dec", "Number"),
216 NC_("ANALYSIS_Bin2Dec", "The binary number to be converted (as text)")
219 const char* ANALYSIS_Bin2Hex[] =
221 NC_("ANALYSIS_Bin2Hex", "Converts a binary number to a hexadecimal number"),
222 NC_("ANALYSIS_Bin2Hex", "Number"),
223 NC_("ANALYSIS_Bin2Hex", "The binary number to be converted (as text)"),
224 NC_("ANALYSIS_Bin2Hex", "Places"),
225 NC_("ANALYSIS_Bin2Hex", "Number of places used.")
228 const char* ANALYSIS_Oct2Bin[] =
230 NC_("ANALYSIS_Oct2Bin", "Converts an octal number to a binary number"),
231 NC_("ANALYSIS_Oct2Bin", "Number"),
232 NC_("ANALYSIS_Oct2Bin", "The octal number to be converted (as text)"),
233 NC_("ANALYSIS_Oct2Bin", "Places"),
234 NC_("ANALYSIS_Oct2Bin", "Number of places used")
237 const char* ANALYSIS_Oct2Dec[] =
239 NC_("ANALYSIS_Oct2Dec", "Converts an octal number to a decimal number"),
240 NC_("ANALYSIS_Oct2Dec", "Number"),
241 NC_("ANALYSIS_Oct2Dec", "The octal number to be converted (as text)")
244 const char* ANALYSIS_Oct2Hex[] =
246 NC_("ANALYSIS_Oct2Hex", "Converts an octal number to a hexadecimal number"),
247 NC_("ANALYSIS_Oct2Hex", "Number"),
248 NC_("ANALYSIS_Oct2Hex", "The octal number to be converted (as text)"),
249 NC_("ANALYSIS_Oct2Hex", "Places"),
250 NC_("ANALYSIS_Oct2Hex", "Number of places used")
253 const char* ANALYSIS_Dec2Bin[] =
255 NC_("ANALYSIS_Dec2Bin", "Converts a decimal number to a binary number"),
256 NC_("ANALYSIS_Dec2Bin", "Number"),
257 NC_("ANALYSIS_Dec2Bin", "The decimal integer to be converted"),
258 NC_("ANALYSIS_Dec2Bin", "Places"),
259 NC_("ANALYSIS_Dec2Bin", "Number of places used")
262 const char* ANALYSIS_Dec2Hex[] =
264 NC_("ANALYSIS_Dec2Hex", "Converts a decimal number to a hexadecimal number"),
265 NC_("ANALYSIS_Dec2Hex", "Number"),
266 NC_("ANALYSIS_Dec2Hex", "The decimal integer to be converted"),
267 NC_("ANALYSIS_Dec2Hex", "Places"),
268 NC_("ANALYSIS_Dec2Hex", "Number of places used")
271 const char* ANALYSIS_Dec2Oct[] =
273 NC_("ANALYSIS_Dec2Oct", "Converts a decimal number into an octal number"),
274 NC_("ANALYSIS_Dec2Oct", "Number"),
275 NC_("ANALYSIS_Dec2Oct", "The decimal number"),
276 NC_("ANALYSIS_Dec2Oct", "Places"),
277 NC_("ANALYSIS_Dec2Oct", "Number of places used")
280 const char* ANALYSIS_Hex2Bin[] =
282 NC_("ANALYSIS_Hex2Bin", "Converts a hexadecimal number to a binary number"),
283 NC_("ANALYSIS_Hex2Bin", "Number"),
284 NC_("ANALYSIS_Hex2Bin", "The hexadecimal number to be converted (as text)"),
285 NC_("ANALYSIS_Hex2Bin", "Places"),
286 NC_("ANALYSIS_Hex2Bin", "Number of places used")
289 const char* ANALYSIS_Hex2Dec[] =
291 NC_("ANALYSIS_Hex2Dec", "Converts a hexadecimal number to a decimal number"),
292 NC_("ANALYSIS_Hex2Dec", "Number"),
293 NC_("ANALYSIS_Hex2Dec", "The hexadecimal number to be converted (as text)")
296 const char* ANALYSIS_Hex2Oct[] =
298 NC_("ANALYSIS_Hex2Oct", "Converts a hexadecimal number to an octal number"),
299 NC_("ANALYSIS_Hex2Oct", "Number"),
300 NC_("ANALYSIS_Hex2Oct", "The hexadecimal number to be converted (as text)"),
301 NC_("ANALYSIS_Hex2Oct", "Places"),
302 NC_("ANALYSIS_Hex2Oct", "Number of places used")
305 const char* ANALYSIS_Delta[] =
307 NC_("ANALYSIS_Delta", "Tests whether two values are equal"),
308 NC_("ANALYSIS_Delta", "Number 1"),
309 NC_("ANALYSIS_Delta", "The first number"),
310 NC_("ANALYSIS_Delta", "Number 2"),
311 NC_("ANALYSIS_Delta", "The second number")
314 const char* ANALYSIS_Erf[] =
316 NC_("ANALYSIS_Erf", "Returns the error function"),
317 NC_("ANALYSIS_Erf", "Lower limit"),
318 NC_("ANALYSIS_Erf", "The lower limit for integration"),
319 NC_("ANALYSIS_Erf", "Upper limit"),
320 NC_("ANALYSIS_Erf", "The upper limit for integration")
323 const char* ANALYSIS_Erfc[] =
325 NC_("ANALYSIS_Erfc", "Returns the complementary error function"),
326 NC_("ANALYSIS_Erfc", "Lower limit"),
327 NC_("ANALYSIS_Erfc", "The lower limit for integration")
330 const char* ANALYSIS_Gestep[] =
332 NC_("ANALYSIS_Gestep", "Tests whether a number is greater than a threshold value"),
333 NC_("ANALYSIS_Gestep", "Number"),
334 NC_("ANALYSIS_Gestep", "The value to test against step"),
335 NC_("ANALYSIS_Gestep", "Step"),
336 NC_("ANALYSIS_Gestep", "The threshold value")
339 const char* ANALYSIS_Factdouble[] =
341 NC_("ANALYSIS_Factdouble", "Returns the double factorial of Number"),
342 NC_("ANALYSIS_Factdouble", "Number"),
343 NC_("ANALYSIS_Factdouble", "The number")
346 const char* ANALYSIS_Imabs[] =
348 NC_("ANALYSIS_Imabs", "Returns the absolute value (modulus) of a complex number"),
349 NC_("ANALYSIS_Imabs", "Complex number"),
350 NC_("ANALYSIS_Imabs", "The complex number")
353 const char* ANALYSIS_Imaginary[] =
355 NC_("ANALYSIS_Imaginary", "Returns the imaginary coefficient of a complex number"),
356 NC_("ANALYSIS_Imaginary", "Complex number"),
357 NC_("ANALYSIS_Imaginary", "The complex number")
360 const char* ANALYSIS_Impower[] =
362 NC_("ANALYSIS_Impower", "Returns a complex number raised to a real power"),
363 NC_("ANALYSIS_Impower", "Complex number"),
364 NC_("ANALYSIS_Impower", "The complex number"),
365 NC_("ANALYSIS_Impower", "Number"),
366 NC_("ANALYSIS_Impower", "Power to which the complex number is raised")
369 const char* ANALYSIS_Imargument[] =
371 NC_("ANALYSIS_Imargument", "Returns the argument theta, an angle expressed in radians"),
372 NC_("ANALYSIS_Imargument", "Complex number"),
373 NC_("ANALYSIS_Imargument", "A complex number")
376 const char* ANALYSIS_Imcos[] =
378 NC_("ANALYSIS_Imcos", "Returns the cosine of a complex number"),
379 NC_("ANALYSIS_Imcos", "Complex number"),
380 NC_("ANALYSIS_Imcos", "A complex number")
383 const char* ANALYSIS_Imdiv[] =
385 NC_("ANALYSIS_Imdiv", "Returns the quotient of two complex numbers"),
386 NC_("ANALYSIS_Imdiv", "Numerator"),
387 NC_("ANALYSIS_Imdiv", "The dividend"),
388 NC_("ANALYSIS_Imdiv", "Denominator"),
389 NC_("ANALYSIS_Imdiv", "The divisor")
392 const char* ANALYSIS_Imexp[] =
394 NC_("ANALYSIS_Imexp", "Returns the algebraic form of the exponential of a complex number"),
395 NC_("ANALYSIS_Imexp", "Complex number"),
396 NC_("ANALYSIS_Imexp", "The complex number")
399 const char* ANALYSIS_Imconjugate[] =
401 NC_("ANALYSIS_Imconjugate", "Returns the complex conjugate of a complex number"),
402 NC_("ANALYSIS_Imconjugate", "Complex number"),
403 NC_("ANALYSIS_Imconjugate", "The complex number")
406 const char* ANALYSIS_Imln[] =
408 NC_("ANALYSIS_Imln", "Returns the natural logarithm of a complex number"),
409 NC_("ANALYSIS_Imln", "Complex number"),
410 NC_("ANALYSIS_Imln", "The complex number")
413 const char* ANALYSIS_Imlog10[] =
415 NC_("ANALYSIS_Imlog10", "Returns the base-10 logarithm of a complex number"),
416 NC_("ANALYSIS_Imlog10", "Complex number"),
417 NC_("ANALYSIS_Imlog10", "The complex number")
420 const char* ANALYSIS_Imlog2[] =
422 NC_("ANALYSIS_Imlog2", "Returns the base-2 logarithm of a complex number"),
423 NC_("ANALYSIS_Imlog2", "Complex number"),
424 NC_("ANALYSIS_Imlog2", "The complex number")
427 const char* ANALYSIS_Improduct[] =
429 NC_("ANALYSIS_Improduct", "Returns the product of several complex numbers"),
430 NC_("ANALYSIS_Improduct", "Complex number"),
431 NC_("ANALYSIS_Improduct", "The first complex number"),
432 NC_("ANALYSIS_Improduct", "Complex number"),
433 NC_("ANALYSIS_Improduct", "Another complex number")
436 const char* ANALYSIS_Imreal[] =
438 NC_("ANALYSIS_Imreal", "Returns the real coefficient of a complex number"),
439 NC_("ANALYSIS_Imreal", "Complex number"),
440 NC_("ANALYSIS_Imreal", "The complex number")
443 const char* ANALYSIS_Imsin[] =
445 NC_("ANALYSIS_Imsin", "Returns the sine of a complex number"),
446 NC_("ANALYSIS_Imsin", "Complex number"),
447 NC_("ANALYSIS_Imsin", "The complex number")
450 const char* ANALYSIS_Imsub[] =
452 NC_("ANALYSIS_Imsub", "Returns the difference of two complex numbers"),
453 NC_("ANALYSIS_Imsub", "Complex number 1"),
454 NC_("ANALYSIS_Imsub", "Complex number 1"),
455 NC_("ANALYSIS_Imsub", "Complex number 2"),
456 NC_("ANALYSIS_Imsub", "Complex number 2")
459 const char* ANALYSIS_Imsqrt[] =
461 NC_("ANALYSIS_Imsqrt", "Returns the square root of a complex number"),
462 NC_("ANALYSIS_Imsqrt", "Complex number"),
463 NC_("ANALYSIS_Imsqrt", "The complex number")
466 const char* ANALYSIS_Imsum[] =
468 NC_("ANALYSIS_Imsum", "Returns the sum of complex numbers"),
469 NC_("ANALYSIS_Imsum", "Complex number"),
470 NC_("ANALYSIS_Imsum", "The complex number")
473 const char* ANALYSIS_Imtan[] =
475 NC_("ANALYSIS_Imtan", "Returns the tangent of a complex number"),
476 NC_("ANALYSIS_Imtan", "Complex number"),
477 NC_("ANALYSIS_Imtan", "A complex number")
480 const char* ANALYSIS_Imsec[] =
482 NC_("ANALYSIS_Imsec", "Returns the secant of a complex number"),
483 NC_("ANALYSIS_Imsec", "Complex number"),
484 NC_("ANALYSIS_Imsec", "A complex number")
487 const char* ANALYSIS_Imcsc[] =
489 NC_("ANALYSIS_Imcsc", "Returns the cosecant of a complex number"),
490 NC_("ANALYSIS_Imcsc", "Complex number"),
491 NC_("ANALYSIS_Imcsc", "A complex number")
494 const char* ANALYSIS_Imcot[] =
496 NC_("ANALYSIS_Imcot", "Returns the cotangent of a complex number"),
497 NC_("ANALYSIS_Imcot", "Complex number"),
498 NC_("ANALYSIS_Imcot", "A complex number")
501 const char* ANALYSIS_Imsinh[] =
503 NC_("ANALYSIS_Imsinh", "Returns the hyperbolic sine of a complex number"),
504 NC_("ANALYSIS_Imsinh", "Complex number"),
505 NC_("ANALYSIS_Imsinh", "A complex number")
508 const char* ANALYSIS_Imcosh[] =
510 NC_("ANALYSIS_Imcosh", "Returns the hyperbolic cosine of a complex number"),
511 NC_("ANALYSIS_Imcosh", "Complex number"),
512 NC_("ANALYSIS_Imcosh", "A complex number")
515 const char* ANALYSIS_Imsech[] =
517 NC_("ANALYSIS_Imsech", "Returns the hyperbolic secant of a complex number"),
518 NC_("ANALYSIS_Imsech", "Complex number"),
519 NC_("ANALYSIS_Imsech", "A complex number")
522 const char* ANALYSIS_Imcsch[] =
524 NC_("ANALYSIS_Imcsch", "Returns the hyperbolic cosecant of a complex number"),
525 NC_("ANALYSIS_Imcsch", "Complex number"),
526 NC_("ANALYSIS_Imcsch", "A complex number")
529 const char* ANALYSIS_Complex[] =
531 NC_("ANALYSIS_Complex", "Converts real and imaginary coefficients into a complex number"),
532 NC_("ANALYSIS_Complex", "Real num"),
533 NC_("ANALYSIS_Complex", "The real coefficient"),
534 NC_("ANALYSIS_Complex", "I num"),
535 NC_("ANALYSIS_Complex", "The imaginary coefficient"),
536 NC_("ANALYSIS_Complex", "Suffix"),
537 NC_("ANALYSIS_Complex", "The suffix")
540 const char* ANALYSIS_Convert[] =
542 NC_("ANALYSIS_Convert", "Converts a number from one measurement system to another"),
543 NC_("ANALYSIS_Convert", "Number"),
544 NC_("ANALYSIS_Convert", "The number"),
545 NC_("ANALYSIS_Convert", "From unit"),
546 NC_("ANALYSIS_Convert", "Unit of measure for number"),
547 NC_("ANALYSIS_Convert", "To unit"),
548 NC_("ANALYSIS_Convert", "Unit of measure for the result")
551 const char* ANALYSIS_Amordegrc[] =
553 NC_("ANALYSIS_Amordegrc", "Returns the prorated linear depreciation of an asset for each accounting period"),
554 NC_("ANALYSIS_Amordegrc", "Cost"),
555 NC_("ANALYSIS_Amordegrc", "Cost of the asset"),
556 NC_("ANALYSIS_Amordegrc", "Date purchased"),
557 NC_("ANALYSIS_Amordegrc", "Purchase date of the asset"),
558 NC_("ANALYSIS_Amordegrc", "First period"),
559 NC_("ANALYSIS_Amordegrc", "Date the first period ends"),
560 NC_("ANALYSIS_Amordegrc", "Salvage"),
561 NC_("ANALYSIS_Amordegrc", "Salvage value of an asset at the end of its life"),
562 NC_("ANALYSIS_Amordegrc", "Period"),
563 NC_("ANALYSIS_Amordegrc", "The period"),
564 NC_("ANALYSIS_Amordegrc", "Rate"),
565 NC_("ANALYSIS_Amordegrc", "The rate of depreciation"),
566 NC_("ANALYSIS_Amordegrc", "Basis"),
567 NC_("ANALYSIS_Amordegrc", "The year basis to be used")
570 const char* ANALYSIS_Amorlinc[] =
572 NC_("ANALYSIS_Amorlinc", "Returns the prorated linear depreciation of an asset for each accounting period"),
573 NC_("ANALYSIS_Amorlinc", "Cost"),
574 NC_("ANALYSIS_Amorlinc", "Cost of the asset"),
575 NC_("ANALYSIS_Amorlinc", "Date purchased"),
576 NC_("ANALYSIS_Amorlinc", "Purchase date of the asset"),
577 NC_("ANALYSIS_Amorlinc", "First period"),
578 NC_("ANALYSIS_Amorlinc", "The date the first period ends"),
579 NC_("ANALYSIS_Amorlinc", "Salvage"),
580 NC_("ANALYSIS_Amorlinc", "The salvage value of an asset at the end of its life"),
581 NC_("ANALYSIS_Amorlinc", "Period"),
582 NC_("ANALYSIS_Amorlinc", "The period"),
583 NC_("ANALYSIS_Amorlinc", "Rate"),
584 NC_("ANALYSIS_Amorlinc", "The rate of depreciation"),
585 NC_("ANALYSIS_Amorlinc", "Basis"),
586 NC_("ANALYSIS_Amorlinc", "The year basis to be used")
589 const char* ANALYSIS_Accrint[] =
591 NC_("ANALYSIS_Accrint", "Returns the accrued interest for a security that pays periodic interest"),
592 NC_("ANALYSIS_Accrint", "Issue"),
593 NC_("ANALYSIS_Accrint", "Issue date of the security"),
594 NC_("ANALYSIS_Accrint", "First interest"),
595 NC_("ANALYSIS_Accrint", "First interest date of the security"),
596 NC_("ANALYSIS_Accrint", "Settlement"),
597 NC_("ANALYSIS_Accrint", "The settlement"),
598 NC_("ANALYSIS_Accrint", "Rate"),
599 NC_("ANALYSIS_Accrint", "The rate"),
600 NC_("ANALYSIS_Accrint", "Par"),
601 NC_("ANALYSIS_Accrint", "The par value"),
602 NC_("ANALYSIS_Accrint", "Frequency"),
603 NC_("ANALYSIS_Accrint", "The frequency"),
604 NC_("ANALYSIS_Accrint", "Basis"),
605 NC_("ANALYSIS_Accrint", "The basis")
608 const char* ANALYSIS_Accrintm[] =
610 NC_("ANALYSIS_Accrintm", "Returns the accrued interest for a security that pays interest at maturity"),
611 NC_("ANALYSIS_Accrintm", "Issue"),
612 NC_("ANALYSIS_Accrintm", "The issue date"),
613 NC_("ANALYSIS_Accrintm", "Settlement"),
614 NC_("ANALYSIS_Accrintm", "The settlement"),
615 NC_("ANALYSIS_Accrintm", "Rate"),
616 NC_("ANALYSIS_Accrintm", "The rate"),
617 NC_("ANALYSIS_Accrintm", "Par"),
618 NC_("ANALYSIS_Accrintm", "The par value"),
619 NC_("ANALYSIS_Accrintm", "Basis"),
620 NC_("ANALYSIS_Accrintm", "The basis")
623 const char* ANALYSIS_Received[] =
625 NC_("ANALYSIS_Received", "Returns the amount paid out at maturity for a fully invested security"),
626 NC_("ANALYSIS_Received", "Settlement"),
627 NC_("ANALYSIS_Received", "The settlement"),
628 NC_("ANALYSIS_Received", "Maturity"),
629 NC_("ANALYSIS_Received", "The maturity"),
630 NC_("ANALYSIS_Received", "Investment"),
631 NC_("ANALYSIS_Received", "The investment"),
632 NC_("ANALYSIS_Received", "Discount"),
633 NC_("ANALYSIS_Received", "The discount"),
634 NC_("ANALYSIS_Received", "Basis"),
635 NC_("ANALYSIS_Received", "The basis")
638 const char* ANALYSIS_Disc[] =
640 NC_("ANALYSIS_Disc", "Returns the discount rate for a security"),
641 NC_("ANALYSIS_Disc", "Settlement"),
642 NC_("ANALYSIS_Disc", "The settlement"),
643 NC_("ANALYSIS_Disc", "Maturity"),
644 NC_("ANALYSIS_Disc", "The maturity"),
645 NC_("ANALYSIS_Disc", "Price"),
646 NC_("ANALYSIS_Disc", "The price"),
647 NC_("ANALYSIS_Disc", "Redemption"),
648 NC_("ANALYSIS_Disc", "The redemption value"),
649 NC_("ANALYSIS_Disc", "Basis"),
650 NC_("ANALYSIS_Disc", "The basis")
653 const char* ANALYSIS_Duration[] =
655 NC_("ANALYSIS_Duration", "Returns the annual Macaulay duration of a security with periodic interest payments"),
656 NC_("ANALYSIS_Duration", "Settlement"),
657 NC_("ANALYSIS_Duration", "The settlement"),
658 NC_("ANALYSIS_Duration", "Maturity"),
659 NC_("ANALYSIS_Duration", "The maturity"),
660 NC_("ANALYSIS_Duration", "Coupon"),
661 NC_("ANALYSIS_Duration", "The coupon rate"),
662 NC_("ANALYSIS_Duration", "Yield"),
663 NC_("ANALYSIS_Duration", "The yield"),
664 NC_("ANALYSIS_Duration", "Frequency"),
665 NC_("ANALYSIS_Duration", "The frequency"),
666 NC_("ANALYSIS_Duration", "Basis"),
667 NC_("ANALYSIS_Duration", "The basis")
670 const char* ANALYSIS_Effect[] =
672 NC_("ANALYSIS_Effect", "Returns the effective annual interest rate"),
673 NC_("ANALYSIS_Effect", "Nominal rate"),
674 NC_("ANALYSIS_Effect", "The nominal rate"),
675 NC_("ANALYSIS_Effect", "Npery"),
676 NC_("ANALYSIS_Effect", "The periods")
679 const char* ANALYSIS_Cumprinc[] =
681 NC_("ANALYSIS_Cumprinc", "Returns the cumulative principal on a loan to be paid between two periods"),
682 NC_("ANALYSIS_Cumprinc", "Rate"),
683 NC_("ANALYSIS_Cumprinc", "The rate"),
684 NC_("ANALYSIS_Cumprinc", "Nper"),
685 NC_("ANALYSIS_Cumprinc", "Number of payment periods"),
686 NC_("ANALYSIS_Cumprinc", "Pv"),
687 NC_("ANALYSIS_Cumprinc", "The present value"),
688 NC_("ANALYSIS_Cumprinc", "Start period"),
689 NC_("ANALYSIS_Cumprinc", "The start period"),
690 NC_("ANALYSIS_Cumprinc", "End period"),
691 NC_("ANALYSIS_Cumprinc", "The end period"),
692 NC_("ANALYSIS_Cumprinc", "Type"),
693 NC_("ANALYSIS_Cumprinc", "The type of maturity")
696 const char* ANALYSIS_Cumipmt[] =
698 NC_("ANALYSIS_Cumipmt", "Returns the cumulative interest to be paid between two periods"),
699 NC_("ANALYSIS_Cumipmt", "Rate"),
700 NC_("ANALYSIS_Cumipmt", "The rate"),
701 NC_("ANALYSIS_Cumipmt", "Nper"),
702 NC_("ANALYSIS_Cumipmt", "Number of payment periods"),
703 NC_("ANALYSIS_Cumipmt", "Pv"),
704 NC_("ANALYSIS_Cumipmt", "The present value"),
705 NC_("ANALYSIS_Cumipmt", "Start period"),
706 NC_("ANALYSIS_Cumipmt", "The start period"),
707 NC_("ANALYSIS_Cumipmt", "End period"),
708 NC_("ANALYSIS_Cumipmt", "The end period"),
709 NC_("ANALYSIS_Cumipmt", "Type"),
710 NC_("ANALYSIS_Cumipmt", "The type of maturity")
713 const char* ANALYSIS_Price[] =
715 NC_("ANALYSIS_Price", "Returns the price per 100 currency units face value of a security that pays periodic interest"),
716 NC_("ANALYSIS_Price", "Settlement"),
717 NC_("ANALYSIS_Price", "The settlement"),
718 NC_("ANALYSIS_Price", "Maturity"),
719 NC_("ANALYSIS_Price", "The maturity"),
720 NC_("ANALYSIS_Price", "Rate"),
721 NC_("ANALYSIS_Price", "The rate"),
722 NC_("ANALYSIS_Price", "Yield"),
723 NC_("ANALYSIS_Price", "The yield"),
724 NC_("ANALYSIS_Price", "Redemption"),
725 NC_("ANALYSIS_Price", "The redemption value"),
726 NC_("ANALYSIS_Price", "Frequency"),
727 NC_("ANALYSIS_Price", "The frequency"),
728 NC_("ANALYSIS_Price", "Basis"),
729 NC_("ANALYSIS_Price", "The basis")
732 const char* ANALYSIS_Pricedisc[] =
734 NC_("ANALYSIS_Pricedisc", "Returns the price per 100 currency units face value of a discounted security"),
735 NC_("ANALYSIS_Pricedisc", "Settlement"),
736 NC_("ANALYSIS_Pricedisc", "The settlement"),
737 NC_("ANALYSIS_Pricedisc", "Maturity"),
738 NC_("ANALYSIS_Pricedisc", "The maturity"),
739 NC_("ANALYSIS_Pricedisc", "Discount"),
740 NC_("ANALYSIS_Pricedisc", "The discount"),
741 NC_("ANALYSIS_Pricedisc", "Redemption"),
742 NC_("ANALYSIS_Pricedisc", "The redemption value"),
743 NC_("ANALYSIS_Pricedisc", "Basis"),
744 NC_("ANALYSIS_Pricedisc", "The basis")
747 const char* ANALYSIS_Pricemat[] =
749 NC_("ANALYSIS_Pricemat", "Returns the price per 100 currency units face value of a security that pays interest at maturity"),
750 NC_("ANALYSIS_Pricemat", "Settlement"),
751 NC_("ANALYSIS_Pricemat", "The settlement"),
752 NC_("ANALYSIS_Pricemat", "Maturity"),
753 NC_("ANALYSIS_Pricemat", "The maturity"),
754 NC_("ANALYSIS_Pricemat", "Issue"),
755 NC_("ANALYSIS_Pricemat", "The issue date"),
756 NC_("ANALYSIS_Pricemat", "Rate"),
757 NC_("ANALYSIS_Pricemat", "The rate"),
758 NC_("ANALYSIS_Pricemat", "Yield"),
759 NC_("ANALYSIS_Pricemat", "The yield"),
760 NC_("ANALYSIS_Pricemat", "Basis"),
761 NC_("ANALYSIS_Pricemat", "The basis")
764 const char* ANALYSIS_Mduration[] =
766 NC_("ANALYSIS_Mduration", "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units"),
767 NC_("ANALYSIS_Mduration", "Settlement"),
768 NC_("ANALYSIS_Mduration", "The settlement"),
769 NC_("ANALYSIS_Mduration", "Maturity"),
770 NC_("ANALYSIS_Mduration", "The maturity"),
771 NC_("ANALYSIS_Mduration", "Coupon"),
772 NC_("ANALYSIS_Mduration", "The coupon rate"),
773 NC_("ANALYSIS_Mduration", "Yield"),
774 NC_("ANALYSIS_Mduration", "The yield"),
775 NC_("ANALYSIS_Mduration", "Frequency"),
776 NC_("ANALYSIS_Mduration", "The frequency"),
777 NC_("ANALYSIS_Mduration", "Basis"),
778 NC_("ANALYSIS_Mduration", "The basis")
781 const char* ANALYSIS_Nominal[] =
783 NC_("ANALYSIS_Nominal", "Returns the annual nominal interest rate"),
784 NC_("ANALYSIS_Nominal", "Effective rate"),
785 NC_("ANALYSIS_Nominal", "The effective interest rate"),
786 NC_("ANALYSIS_Nominal", "Npery"),
787 NC_("ANALYSIS_Nominal", "The periods")
790 const char* ANALYSIS_Dollarfr[] =
792 NC_("ANALYSIS_Dollarfr", "Converts a price expressed as a decimal into a price expressed as a fraction"),
793 NC_("ANALYSIS_Dollarfr", "Decimal dollar"),
794 NC_("ANALYSIS_Dollarfr", "The decimal number"),
795 NC_("ANALYSIS_Dollarfr", "Fraction"),
796 NC_("ANALYSIS_Dollarfr", "The divisor")
799 const char* ANALYSIS_Dollarde[] =
801 NC_("ANALYSIS_Dollarde", "Converts a price expressed as a fraction into a price expressed as a decimal"),
802 NC_("ANALYSIS_Dollarde", "Fractional dollar"),
803 NC_("ANALYSIS_Dollarde", "The number as a fraction"),
804 NC_("ANALYSIS_Dollarde", "Fraction"),
805 NC_("ANALYSIS_Dollarde", "The divisor")
808 const char* ANALYSIS_Yield[] =
810 NC_("ANALYSIS_Yield", "Returns the yield on a security that pays periodic interest"),
811 NC_("ANALYSIS_Yield", "Settlement"),
812 NC_("ANALYSIS_Yield", "The settlement"),
813 NC_("ANALYSIS_Yield", "Maturity"),
814 NC_("ANALYSIS_Yield", "The maturity"),
815 NC_("ANALYSIS_Yield", "Rate"),
816 NC_("ANALYSIS_Yield", "The rate"),
817 NC_("ANALYSIS_Yield", "Price"),
818 NC_("ANALYSIS_Yield", "The price"),
819 NC_("ANALYSIS_Yield", "Redemption"),
820 NC_("ANALYSIS_Yield", "The redemption value"),
821 NC_("ANALYSIS_Yield", "Frequency"),
822 NC_("ANALYSIS_Yield", "The frequency"),
823 NC_("ANALYSIS_Yield", "Basis"),
824 NC_("ANALYSIS_Yield", "The basis")
827 const char* ANALYSIS_Yielddisc[] =
829 NC_("ANALYSIS_Yielddisc", "Returns the annual yield for a discounted security"),
830 NC_("ANALYSIS_Yielddisc", "Settlement"),
831 NC_("ANALYSIS_Yielddisc", "The settlement"),
832 NC_("ANALYSIS_Yielddisc", "Maturity"),
833 NC_("ANALYSIS_Yielddisc", "The maturity"),
834 NC_("ANALYSIS_Yielddisc", "Price"),
835 NC_("ANALYSIS_Yielddisc", "The price"),
836 NC_("ANALYSIS_Yielddisc", "Redemption"),
837 NC_("ANALYSIS_Yielddisc", "The redemption value"),
838 NC_("ANALYSIS_Yielddisc", "Basis"),
839 NC_("ANALYSIS_Yielddisc", "The basis")
842 const char* ANALYSIS_Yieldmat[] =
844 NC_("ANALYSIS_Yieldmat", "Returns the annual yield of a security that pays interest at maturity"),
845 NC_("ANALYSIS_Yieldmat", "Settlement"),
846 NC_("ANALYSIS_Yieldmat", "The settlement"),
847 NC_("ANALYSIS_Yieldmat", "Maturity"),
848 NC_("ANALYSIS_Yieldmat", "The maturity"),
849 NC_("ANALYSIS_Yieldmat", "Issue"),
850 NC_("ANALYSIS_Yieldmat", "The issue date"),
851 NC_("ANALYSIS_Yieldmat", "Rate"),
852 NC_("ANALYSIS_Yieldmat", "The rate"),
853 NC_("ANALYSIS_Yieldmat", "Price"),
854 NC_("ANALYSIS_Yieldmat", "The price"),
855 NC_("ANALYSIS_Yieldmat", "Basis"),
856 NC_("ANALYSIS_Yieldmat", "The basis")
859 const char* ANALYSIS_Tbilleq[] =
861 NC_("ANALYSIS_Tbilleq", "Returns the bond-equivalent yield for a treasury bill"),
862 NC_("ANALYSIS_Tbilleq", "Settlement"),
863 NC_("ANALYSIS_Tbilleq", "The settlement"),
864 NC_("ANALYSIS_Tbilleq", "Maturity"),
865 NC_("ANALYSIS_Tbilleq", "The maturity"),
866 NC_("ANALYSIS_Tbilleq", "Discount"),
867 NC_("ANALYSIS_Tbilleq", "The discount rate")
870 const char* ANALYSIS_Tbillprice[] =
872 NC_("ANALYSIS_Tbillprice", "Returns the price of 100 currency units face value for a treasury bill"),
873 NC_("ANALYSIS_Tbillprice", "Settlement"),
874 NC_("ANALYSIS_Tbillprice", "The settlement"),
875 NC_("ANALYSIS_Tbillprice", "Maturity"),
876 NC_("ANALYSIS_Tbillprice", "The maturity"),
877 NC_("ANALYSIS_Tbillprice", "Discount"),
878 NC_("ANALYSIS_Tbillprice", "The discount rate")
881 const char* ANALYSIS_Tbillyield[] =
883 NC_("ANALYSIS_Tbillyield", "Returns the yield for a treasury bill"),
884 NC_("ANALYSIS_Tbillyield", "Settlement"),
885 NC_("ANALYSIS_Tbillyield", "The settlement"),
886 NC_("ANALYSIS_Tbillyield", "Maturity"),
887 NC_("ANALYSIS_Tbillyield", "The maturity"),
888 NC_("ANALYSIS_Tbillyield", "Price"),
889 NC_("ANALYSIS_Tbillyield", "The price")
892 const char* ANALYSIS_Oddfprice[] =
894 NC_("ANALYSIS_Oddfprice", "Returns the price per $100 face value of a security with an odd first period"),
895 NC_("ANALYSIS_Oddfprice", "Settlement"),
896 NC_("ANALYSIS_Oddfprice", "The settlement"),
897 NC_("ANALYSIS_Oddfprice", "Maturity"),
898 NC_("ANALYSIS_Oddfprice", "The maturity"),
899 NC_("ANALYSIS_Oddfprice", "Issue"),
900 NC_("ANALYSIS_Oddfprice", "The issue date"),
901 NC_("ANALYSIS_Oddfprice", "First coupon"),
902 NC_("ANALYSIS_Oddfprice", "The first coupon date"),
903 NC_("ANALYSIS_Oddfprice", "Rate"),
904 NC_("ANALYSIS_Oddfprice", "The rate"),
905 NC_("ANALYSIS_Oddfprice", "Yield"),
906 NC_("ANALYSIS_Oddfprice", "The yield"),
907 NC_("ANALYSIS_Oddfprice", "Redemption"),
908 NC_("ANALYSIS_Oddfprice", "The redemption value"),
909 NC_("ANALYSIS_Oddfprice", "Frequency"),
910 NC_("ANALYSIS_Oddfprice", "The frequency"),
911 NC_("ANALYSIS_Oddfprice", "Basis"),
912 NC_("ANALYSIS_Oddfprice", "The basis")
915 const char* ANALYSIS_Oddfyield[] =
917 NC_("ANALYSIS_Oddfyield", "Returns the yield of a security with an odd first period"),
918 NC_("ANALYSIS_Oddfyield", "Settlement"),
919 NC_("ANALYSIS_Oddfyield", "The settlement"),
920 NC_("ANALYSIS_Oddfyield", "Maturity"),
921 NC_("ANALYSIS_Oddfyield", "The maturity"),
922 NC_("ANALYSIS_Oddfyield", "Issue"),
923 NC_("ANALYSIS_Oddfyield", "The issue date"),
924 NC_("ANALYSIS_Oddfyield", "First coupon"),
925 NC_("ANALYSIS_Oddfyield", "The first coupon date"),
926 NC_("ANALYSIS_Oddfyield", "Rate"),
927 NC_("ANALYSIS_Oddfyield", "The rate"),
928 NC_("ANALYSIS_Oddfyield", "Price"),
929 NC_("ANALYSIS_Oddfyield", "The price"),
930 NC_("ANALYSIS_Oddfyield", "Redemption"),
931 NC_("ANALYSIS_Oddfyield", "The redemption value"),
932 NC_("ANALYSIS_Oddfyield", "Frequency"),
933 NC_("ANALYSIS_Oddfyield", "The frequency"),
934 NC_("ANALYSIS_Oddfyield", "Basis"),
935 NC_("ANALYSIS_Oddfyield", "The basis")
938 const char* ANALYSIS_Oddlprice[] =
940 NC_("ANALYSIS_Oddlprice", "Returns the price per $100 face value of a security with an odd last period"),
941 NC_("ANALYSIS_Oddlprice", "Settlement"),
942 NC_("ANALYSIS_Oddlprice", "The settlement"),
943 NC_("ANALYSIS_Oddlprice", "Maturity"),
944 NC_("ANALYSIS_Oddlprice", "The maturity"),
945 NC_("ANALYSIS_Oddlprice", "Last interest"),
946 NC_("ANALYSIS_Oddlprice", "The last interest date"),
947 NC_("ANALYSIS_Oddlprice", "Rate"),
948 NC_("ANALYSIS_Oddlprice", "The rate"),
949 NC_("ANALYSIS_Oddlprice", "Yield"),
950 NC_("ANALYSIS_Oddlprice", "The yield"),
951 NC_("ANALYSIS_Oddlprice", "Redemption"),
952 NC_("ANALYSIS_Oddlprice", "The redemption value"),
953 NC_("ANALYSIS_Oddlprice", "Frequency"),
954 NC_("ANALYSIS_Oddlprice", "The frequency"),
955 NC_("ANALYSIS_Oddlprice", "Basis"),
956 NC_("ANALYSIS_Oddlprice", "The basis")
959 const char* ANALYSIS_Oddlyield[] =
961 NC_("ANALYSIS_Oddlyield", "Returns the yield of a security with an odd last period"),
962 NC_("ANALYSIS_Oddlyield", "Settlement"),
963 NC_("ANALYSIS_Oddlyield", "The settlement"),
964 NC_("ANALYSIS_Oddlyield", "Maturity"),
965 NC_("ANALYSIS_Oddlyield", "The maturity"),
966 NC_("ANALYSIS_Oddlyield", "Last interest"),
967 NC_("ANALYSIS_Oddlyield", "The last interest date"),
968 NC_("ANALYSIS_Oddlyield", "Rate"),
969 NC_("ANALYSIS_Oddlyield", "The rate"),
970 NC_("ANALYSIS_Oddlyield", "Price"),
971 NC_("ANALYSIS_Oddlyield", "The price"),
972 NC_("ANALYSIS_Oddlyield", "Redemption"),
973 NC_("ANALYSIS_Oddlyield", "The redemption value"),
974 NC_("ANALYSIS_Oddlyield", "Frequency"),
975 NC_("ANALYSIS_Oddlyield", "The frequency"),
976 NC_("ANALYSIS_Oddlyield", "Basis"),
977 NC_("ANALYSIS_Oddlyield", "The basis")
980 const char* ANALYSIS_Xirr[] =
982 NC_("ANALYSIS_Xirr", "Returns the internal rate of return for a non-periodic schedule of payments"),
983 NC_("ANALYSIS_Xirr", "Values"),
984 NC_("ANALYSIS_Xirr", "The values"),
985 NC_("ANALYSIS_Xirr", "Dates"),
986 NC_("ANALYSIS_Xirr", "The dates"),
987 NC_("ANALYSIS_Xirr", "Guess"),
988 NC_("ANALYSIS_Xirr", "The guess")
991 const char* ANALYSIS_Xnpv[] =
993 NC_("ANALYSIS_Xnpv", "Returns the net present value for a non-periodic schedule of payments"),
994 NC_("ANALYSIS_Xnpv", "Rate"),
995 NC_("ANALYSIS_Xnpv", "The rate"),
996 NC_("ANALYSIS_Xnpv", "Values"),
997 NC_("ANALYSIS_Xnpv", "The values"),
998 NC_("ANALYSIS_Xnpv", "Dates"),
999 NC_("ANALYSIS_Xnpv", "The dates")
1002 const char* ANALYSIS_Intrate[] =
1004 NC_("ANALYSIS_Intrate", "Returns the interest rate for a fully invested security"),
1005 NC_("ANALYSIS_Intrate", "Settlement"),
1006 NC_("ANALYSIS_Intrate", "The settlement"),
1007 NC_("ANALYSIS_Intrate", "Maturity"),
1008 NC_("ANALYSIS_Intrate", "The maturity"),
1009 NC_("ANALYSIS_Intrate", "Investment"),
1010 NC_("ANALYSIS_Intrate", "The investment"),
1011 NC_("ANALYSIS_Intrate", "Redemption"),
1012 NC_("ANALYSIS_Intrate", "The redemption value"),
1013 NC_("ANALYSIS_Intrate", "Basis"),
1014 NC_("ANALYSIS_Intrate", "The basis")
1017 const char* ANALYSIS_Coupncd[] =
1019 NC_("ANALYSIS_Coupncd", "Returns the first coupon date after the settlement date"),
1020 NC_("ANALYSIS_Coupncd", "Settlement"),
1021 NC_("ANALYSIS_Coupncd", "The settlement"),
1022 NC_("ANALYSIS_Coupncd", "Maturity"),
1023 NC_("ANALYSIS_Coupncd", "The maturity"),
1024 NC_("ANALYSIS_Coupncd", "Frequency"),
1025 NC_("ANALYSIS_Coupncd", "The frequency"),
1026 NC_("ANALYSIS_Coupncd", "Basis"),
1027 NC_("ANALYSIS_Coupncd", "The basis")
1030 const char* ANALYSIS_Coupdays[] =
1032 NC_("ANALYSIS_Coupdays", "Returns the number of days in the coupon period containing the settlement date"),
1033 NC_("ANALYSIS_Coupdays", "Settlement"),
1034 NC_("ANALYSIS_Coupdays", "The settlement"),
1035 NC_("ANALYSIS_Coupdays", "Maturity"),
1036 NC_("ANALYSIS_Coupdays", "The maturity"),
1037 NC_("ANALYSIS_Coupdays", "Frequency"),
1038 NC_("ANALYSIS_Coupdays", "The frequency"),
1039 NC_("ANALYSIS_Coupdays", "Basis"),
1040 NC_("ANALYSIS_Coupdays", "The basis")
1043 const char* ANALYSIS_Coupdaysnc[] =
1045 NC_("ANALYSIS_Coupdaysnc", "Returns the number of days from the settlement date to the next coupon date"),
1046 NC_("ANALYSIS_Coupdaysnc", "Settlement"),
1047 NC_("ANALYSIS_Coupdaysnc", "The settlement"),
1048 NC_("ANALYSIS_Coupdaysnc", "Maturity"),
1049 NC_("ANALYSIS_Coupdaysnc", "The maturity"),
1050 NC_("ANALYSIS_Coupdaysnc", "Frequency"),
1051 NC_("ANALYSIS_Coupdaysnc", "The frequency"),
1052 NC_("ANALYSIS_Coupdaysnc", "Basis"),
1053 NC_("ANALYSIS_Coupdaysnc", "The basis")
1056 const char* ANALYSIS_Coupdaybs[] =
1058 NC_("ANALYSIS_Coupdaybs", "Returns the number of days from the beginning of the coupon period to the settlement date"),
1059 NC_("ANALYSIS_Coupdaybs", "Settlement"),
1060 NC_("ANALYSIS_Coupdaybs", "The settlement"),
1061 NC_("ANALYSIS_Coupdaybs", "Maturity"),
1062 NC_("ANALYSIS_Coupdaybs", "The maturity"),
1063 NC_("ANALYSIS_Coupdaybs", "Frequency"),
1064 NC_("ANALYSIS_Coupdaybs", "The frequency"),
1065 NC_("ANALYSIS_Coupdaybs", "Basis"),
1066 NC_("ANALYSIS_Coupdaybs", "The basis")
1069 const char* ANALYSIS_Couppcd[] =
1071 NC_("ANALYSIS_Couppcd", "Returns the last coupon date preceding the settlement date"),
1072 NC_("ANALYSIS_Couppcd", "Settlement"),
1073 NC_("ANALYSIS_Couppcd", "The settlement"),
1074 NC_("ANALYSIS_Couppcd", "Maturity"),
1075 NC_("ANALYSIS_Couppcd", "The maturity"),
1076 NC_("ANALYSIS_Couppcd", "Frequency"),
1077 NC_("ANALYSIS_Couppcd", "The frequency"),
1078 NC_("ANALYSIS_Couppcd", "Basis"),
1079 NC_("ANALYSIS_Couppcd", "The basis")
1082 const char* ANALYSIS_Coupnum[] =
1084 NC_("ANALYSIS_Coupnum", "Returns the number of coupons payable between the settlement and maturity dates"),
1085 NC_("ANALYSIS_Coupnum", "Settlement"),
1086 NC_("ANALYSIS_Coupnum", "The settlement"),
1087 NC_("ANALYSIS_Coupnum", "Maturity"),
1088 NC_("ANALYSIS_Coupnum", "The maturity"),
1089 NC_("ANALYSIS_Coupnum", "Frequency"),
1090 NC_("ANALYSIS_Coupnum", "The frequency"),
1091 NC_("ANALYSIS_Coupnum", "Basis"),
1092 NC_("ANALYSIS_Coupnum", "The basis")
1095 const char* ANALYSIS_Fvschedule[] =
1097 NC_("ANALYSIS_Fvschedule", "Returns the future value of the initial principal after a series of compound interest rates are applied"),
1098 NC_("ANALYSIS_Fvschedule", "Principal"),
1099 NC_("ANALYSIS_Fvschedule", "The principal"),
1100 NC_("ANALYSIS_Fvschedule", "Schedule"),
1101 NC_("ANALYSIS_Fvschedule", "The schedule")
1106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */