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, reinterpret_cast<char const *>(u8##String))
26 const TranslateId ANALYSIS_Workday[] =
28 NC_("ANALYSIS_Workday", "Returns the serial number of the date before or after a specified number of workdays"),
29 NC_("ANALYSIS_Workday", "Start date"),
30 NC_("ANALYSIS_Workday", "The start date"),
31 NC_("ANALYSIS_Workday", "Days"),
32 NC_("ANALYSIS_Workday", "The number of workdays before or after the start date"),
33 NC_("ANALYSIS_Workday", "Holidays"),
34 NC_("ANALYSIS_Workday", "List of date values of days off (vacation, holidays, etc.)")
37 const TranslateId ANALYSIS_Yearfrac[] =
39 NC_("ANALYSIS_Yearfrac", "Returns the number of years (including fractional part) between two dates"),
40 NC_("ANALYSIS_Yearfrac", "Start date"),
41 NC_("ANALYSIS_Yearfrac", "The start date"),
42 NC_("ANALYSIS_Yearfrac", "End date"),
43 NC_("ANALYSIS_Yearfrac", "The end date"),
44 NC_("ANALYSIS_Yearfrac", "Basis"),
45 NC_("ANALYSIS_Yearfrac", "Basis indicates the day-count convention to use in the calculation")
48 const TranslateId ANALYSIS_Edate[] =
50 NC_("ANALYSIS_Edate", "Returns the serial number of the date that is a specified number of months before or after the start date"),
51 NC_("ANALYSIS_Edate", "Start date"),
52 NC_("ANALYSIS_Edate", "The start date"),
53 NC_("ANALYSIS_Edate", "Months"),
54 NC_("ANALYSIS_Edate", "Number of months before or after the start date")
57 const TranslateId ANALYSIS_Weeknum[] =
59 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."),
60 NC_("ANALYSIS_Weeknum", "Date"),
61 NC_("ANALYSIS_Weeknum", "The date or date serial number"),
62 NC_("ANALYSIS_Weeknum", "Return type"),
63 NC_("ANALYSIS_Weeknum", "Indicates the first day of the week (1 = Sunday, 2 = Monday)")
66 const TranslateId ANALYSIS_Eomonth[] =
68 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"),
69 NC_("ANALYSIS_Eomonth", "Start date"),
70 NC_("ANALYSIS_Eomonth", "The start date"),
71 NC_("ANALYSIS_Eomonth", "Months"),
72 NC_("ANALYSIS_Eomonth", "Number of months before or after the start date")
75 const TranslateId ANALYSIS_Networkdays[] =
77 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."),
78 NC_("ANALYSIS_Networkdays", "Start date"),
79 NC_("ANALYSIS_Networkdays", "The start date"),
80 NC_("ANALYSIS_Networkdays", "End date"),
81 NC_("ANALYSIS_Networkdays", "The end date"),
82 NC_("ANALYSIS_Networkdays", "Holidays"),
83 NC_("ANALYSIS_Networkdays", "List of date values representing days off (vacation, holidays, etc.)")
86 const TranslateId ANALYSIS_Iseven[] =
88 NC_("ANALYSIS_Iseven", "Returns the value 'true' if the number is even"),
89 NC_("ANALYSIS_Iseven", "Number"),
90 NC_("ANALYSIS_Iseven", "The number")
93 const TranslateId ANALYSIS_Isodd[] =
95 NC_("ANALYSIS_Isodd", "Returns the value 'true' if the number is odd"),
96 NC_("ANALYSIS_Isodd", "Number"),
97 NC_("ANALYSIS_Isodd", "The number")
100 const TranslateId ANALYSIS_Multinomial[] =
102 NC_("ANALYSIS_Multinomial", "Returns the multinomial coefficient of a set of numbers"),
103 NC_("ANALYSIS_Multinomial", "Number"),
104 NC_("ANALYSIS_Multinomial", "Number or list of numbers for which you want the multinomial coefficient")
107 const TranslateId ANALYSIS_Seriessum[] =
109 NC_("ANALYSIS_Seriessum", "Returns the sum of a power series"),
110 NC_("ANALYSIS_Seriessum", "X"),
111 NC_("ANALYSIS_Seriessum", "The independent variable of the power series"),
112 NC_("ANALYSIS_Seriessum", "N"),
113 NC_("ANALYSIS_Seriessum", "The initial power to which x is to be raised"),
114 NC_("ANALYSIS_Seriessum", "M"),
115 NC_("ANALYSIS_Seriessum", "The increment by which to increase n for each term in the series"),
116 NC_("ANALYSIS_Seriessum", "Coefficients"),
117 NC_("ANALYSIS_Seriessum", "Set of coefficients by which each successive power of the variable x is multiplied")
120 const TranslateId ANALYSIS_Quotient[] =
122 NC_("ANALYSIS_Quotient", "Returns the integer portion of a division"),
123 NC_("ANALYSIS_Quotient", "Numerator"),
124 NC_("ANALYSIS_Quotient", "The dividend"),
125 NC_("ANALYSIS_Quotient", "Denominator"),
126 NC_("ANALYSIS_Quotient", "The divisor")
129 const TranslateId ANALYSIS_Mround[] =
131 NC_("ANALYSIS_Mround", "Returns a number rounded to a specified multiple"),
132 NC_("ANALYSIS_Mround", "Number"),
133 NC_("ANALYSIS_Mround", "The number to round off"),
134 NC_("ANALYSIS_Mround", "Multiple"),
135 NC_("ANALYSIS_Mround", "The multiple to which you want to round number")
138 const TranslateId ANALYSIS_Sqrtpi[] =
140 NC_("ANALYSIS_Sqrtpi", "Returns the square root of a number which has been multiplied by pi"),
141 NC_("ANALYSIS_Sqrtpi", "Number"),
142 NC_("ANALYSIS_Sqrtpi", "The number by which pi is multiplied")
145 const TranslateId ANALYSIS_Randbetween[] =
147 NC_("ANALYSIS_Randbetween", "Returns a random integer between the numbers you specify"),
148 NC_("ANALYSIS_Randbetween", "Bottom"),
149 NC_("ANALYSIS_Randbetween", "The smallest integer returned"),
150 NC_("ANALYSIS_Randbetween", "Top"),
151 NC_("ANALYSIS_Randbetween", "The largest integer returned")
154 const TranslateId ANALYSIS_Gcd[] =
156 NC_("ANALYSIS_Gcd", "Returns the greatest common divisor.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."),
157 NC_("ANALYSIS_Gcd", "Number"),
158 NC_("ANALYSIS_Gcd", "Number or list of numbers")
161 const TranslateId ANALYSIS_Lcm[] =
163 NC_("ANALYSIS_Lcm", "Returns the least common multiple.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."),
164 NC_("ANALYSIS_Lcm", "Number"),
165 NC_("ANALYSIS_Lcm", "Number or list of numbers")
168 const TranslateId ANALYSIS_Besseli[] =
170 NC_("ANALYSIS_Besseli", "Returns the modified Bessel function In(x)"),
171 NC_("ANALYSIS_Besseli", "X"),
172 NC_("ANALYSIS_Besseli", "The value at which the function is to be evaluated"),
173 NC_("ANALYSIS_Besseli", "N"),
174 NC_("ANALYSIS_Besseli", "The order of the Bessel function")
177 const TranslateId ANALYSIS_Besselj[] =
179 NC_("ANALYSIS_Besselj", "Returns the Bessel function Jn(x)"),
180 NC_("ANALYSIS_Besselj", "X"),
181 NC_("ANALYSIS_Besselj", "The value at which the function is to be evaluated"),
182 NC_("ANALYSIS_Besselj", "N"),
183 NC_("ANALYSIS_Besselj", "The order of the Bessel function")
186 const TranslateId ANALYSIS_Besselk[] =
188 NC_("ANALYSIS_Besselk", "Returns the Bessel function Kn(x)"),
189 NC_("ANALYSIS_Besselk", "X"),
190 NC_("ANALYSIS_Besselk", "The value at which the function is to be evaluated"),
191 NC_("ANALYSIS_Besselk", "N"),
192 NC_("ANALYSIS_Besselk", "The order of the Bessel function")
195 const TranslateId ANALYSIS_Bessely[] =
197 NC_("ANALYSIS_Bessely", "Returns the Bessel function Yn(x)"),
198 NC_("ANALYSIS_Bessely", "X"),
199 NC_("ANALYSIS_Bessely", "The value at which the function is to be evaluated"),
200 NC_("ANALYSIS_Bessely", "N"),
201 NC_("ANALYSIS_Bessely", "The order of the Bessel function")
204 const TranslateId ANALYSIS_Bin2Oct[] =
206 NC_("ANALYSIS_Bin2Oct", "Converts a binary number to an octal number"),
207 NC_("ANALYSIS_Bin2Oct", "Number"),
208 NC_("ANALYSIS_Bin2Oct", "The binary number to be converted (as text)"),
209 NC_("ANALYSIS_Bin2Oct", "Places"),
210 NC_("ANALYSIS_Bin2Oct", "Number of places used")
213 const TranslateId ANALYSIS_Bin2Dec[] =
215 NC_("ANALYSIS_Bin2Dec", "Converts a binary number to a decimal number"),
216 NC_("ANALYSIS_Bin2Dec", "Number"),
217 NC_("ANALYSIS_Bin2Dec", "The binary number to be converted (as text)")
220 const TranslateId ANALYSIS_Bin2Hex[] =
222 NC_("ANALYSIS_Bin2Hex", "Converts a binary number to a hexadecimal number"),
223 NC_("ANALYSIS_Bin2Hex", "Number"),
224 NC_("ANALYSIS_Bin2Hex", "The binary number to be converted (as text)"),
225 NC_("ANALYSIS_Bin2Hex", "Places"),
226 NC_("ANALYSIS_Bin2Hex", "Number of places used.")
229 const TranslateId ANALYSIS_Oct2Bin[] =
231 NC_("ANALYSIS_Oct2Bin", "Converts an octal number to a binary number"),
232 NC_("ANALYSIS_Oct2Bin", "Number"),
233 NC_("ANALYSIS_Oct2Bin", "The octal number to be converted (as text)"),
234 NC_("ANALYSIS_Oct2Bin", "Places"),
235 NC_("ANALYSIS_Oct2Bin", "Number of places used")
238 const TranslateId ANALYSIS_Oct2Dec[] =
240 NC_("ANALYSIS_Oct2Dec", "Converts an octal number to a decimal number"),
241 NC_("ANALYSIS_Oct2Dec", "Number"),
242 NC_("ANALYSIS_Oct2Dec", "The octal number to be converted (as text)")
245 const TranslateId ANALYSIS_Oct2Hex[] =
247 NC_("ANALYSIS_Oct2Hex", "Converts an octal number to a hexadecimal number"),
248 NC_("ANALYSIS_Oct2Hex", "Number"),
249 NC_("ANALYSIS_Oct2Hex", "The octal number to be converted (as text)"),
250 NC_("ANALYSIS_Oct2Hex", "Places"),
251 NC_("ANALYSIS_Oct2Hex", "Number of places used")
254 const TranslateId ANALYSIS_Dec2Bin[] =
256 NC_("ANALYSIS_Dec2Bin", "Converts a decimal number to a binary number"),
257 NC_("ANALYSIS_Dec2Bin", "Number"),
258 NC_("ANALYSIS_Dec2Bin", "The decimal integer to be converted"),
259 NC_("ANALYSIS_Dec2Bin", "Places"),
260 NC_("ANALYSIS_Dec2Bin", "Number of places used")
263 const TranslateId ANALYSIS_Dec2Hex[] =
265 NC_("ANALYSIS_Dec2Hex", "Converts a decimal number to a hexadecimal number"),
266 NC_("ANALYSIS_Dec2Hex", "Number"),
267 NC_("ANALYSIS_Dec2Hex", "The decimal integer to be converted"),
268 NC_("ANALYSIS_Dec2Hex", "Places"),
269 NC_("ANALYSIS_Dec2Hex", "Number of places used")
272 const TranslateId ANALYSIS_Dec2Oct[] =
274 NC_("ANALYSIS_Dec2Oct", "Converts a decimal number into an octal number"),
275 NC_("ANALYSIS_Dec2Oct", "Number"),
276 NC_("ANALYSIS_Dec2Oct", "The decimal number"),
277 NC_("ANALYSIS_Dec2Oct", "Places"),
278 NC_("ANALYSIS_Dec2Oct", "Number of places used")
281 const TranslateId ANALYSIS_Hex2Bin[] =
283 NC_("ANALYSIS_Hex2Bin", "Converts a hexadecimal number to a binary number"),
284 NC_("ANALYSIS_Hex2Bin", "Number"),
285 NC_("ANALYSIS_Hex2Bin", "The hexadecimal number to be converted (as text)"),
286 NC_("ANALYSIS_Hex2Bin", "Places"),
287 NC_("ANALYSIS_Hex2Bin", "Number of places used")
290 const TranslateId ANALYSIS_Hex2Dec[] =
292 NC_("ANALYSIS_Hex2Dec", "Converts a hexadecimal number to a decimal number"),
293 NC_("ANALYSIS_Hex2Dec", "Number"),
294 NC_("ANALYSIS_Hex2Dec", "The hexadecimal number to be converted (as text)")
297 const TranslateId ANALYSIS_Hex2Oct[] =
299 NC_("ANALYSIS_Hex2Oct", "Converts a hexadecimal number to an octal number"),
300 NC_("ANALYSIS_Hex2Oct", "Number"),
301 NC_("ANALYSIS_Hex2Oct", "The hexadecimal number to be converted (as text)"),
302 NC_("ANALYSIS_Hex2Oct", "Places"),
303 NC_("ANALYSIS_Hex2Oct", "Number of places used")
306 const TranslateId ANALYSIS_Delta[] =
308 NC_("ANALYSIS_Delta", "Tests whether two values are equal"),
309 NC_("ANALYSIS_Delta", "Number 1"),
310 NC_("ANALYSIS_Delta", "The first number"),
311 NC_("ANALYSIS_Delta", "Number 2"),
312 NC_("ANALYSIS_Delta", "The second number")
315 const TranslateId ANALYSIS_Erf[] =
317 NC_("ANALYSIS_Erf", "Returns the error function"),
318 NC_("ANALYSIS_Erf", "Lower limit"),
319 NC_("ANALYSIS_Erf", "The lower limit for integration"),
320 NC_("ANALYSIS_Erf", "Upper limit"),
321 NC_("ANALYSIS_Erf", "The upper limit for integration")
324 const TranslateId ANALYSIS_Erfc[] =
326 NC_("ANALYSIS_Erfc", "Returns the complementary error function"),
327 NC_("ANALYSIS_Erfc", "Lower limit"),
328 NC_("ANALYSIS_Erfc", "The lower limit for integration")
331 const TranslateId ANALYSIS_Gestep[] =
333 NC_("ANALYSIS_Gestep", "Tests whether a number is greater than a threshold value"),
334 NC_("ANALYSIS_Gestep", "Number"),
335 NC_("ANALYSIS_Gestep", "The value to test against step"),
336 NC_("ANALYSIS_Gestep", "Step"),
337 NC_("ANALYSIS_Gestep", "The threshold value")
340 const TranslateId ANALYSIS_Factdouble[] =
342 NC_("ANALYSIS_Factdouble", "Returns the double factorial of Number"),
343 NC_("ANALYSIS_Factdouble", "Number"),
344 NC_("ANALYSIS_Factdouble", "The number")
347 const TranslateId ANALYSIS_Imabs[] =
349 NC_("ANALYSIS_Imabs", "Returns the absolute value (modulus) of a complex number"),
350 NC_("ANALYSIS_Imabs", "Complex number"),
351 NC_("ANALYSIS_Imabs", "The complex number")
354 const TranslateId ANALYSIS_Imaginary[] =
356 NC_("ANALYSIS_Imaginary", "Returns the imaginary coefficient of a complex number"),
357 NC_("ANALYSIS_Imaginary", "Complex number"),
358 NC_("ANALYSIS_Imaginary", "The complex number")
361 const TranslateId ANALYSIS_Impower[] =
363 NC_("ANALYSIS_Impower", "Returns a complex number raised to a real power"),
364 NC_("ANALYSIS_Impower", "Complex number"),
365 NC_("ANALYSIS_Impower", "The complex number"),
366 NC_("ANALYSIS_Impower", "Number"),
367 NC_("ANALYSIS_Impower", "Power to which the complex number is raised")
370 const TranslateId ANALYSIS_Imargument[] =
372 NC_("ANALYSIS_Imargument", "Returns the argument theta, an angle expressed in radians"),
373 NC_("ANALYSIS_Imargument", "Complex number"),
374 NC_("ANALYSIS_Imargument", "A complex number")
377 const TranslateId ANALYSIS_Imcos[] =
379 NC_("ANALYSIS_Imcos", "Returns the cosine of a complex number"),
380 NC_("ANALYSIS_Imcos", "Complex number"),
381 NC_("ANALYSIS_Imcos", "A complex number")
384 const TranslateId ANALYSIS_Imdiv[] =
386 NC_("ANALYSIS_Imdiv", "Returns the quotient of two complex numbers"),
387 NC_("ANALYSIS_Imdiv", "Numerator"),
388 NC_("ANALYSIS_Imdiv", "The dividend"),
389 NC_("ANALYSIS_Imdiv", "Denominator"),
390 NC_("ANALYSIS_Imdiv", "The divisor")
393 const TranslateId ANALYSIS_Imexp[] =
395 NC_("ANALYSIS_Imexp", "Returns the algebraic form of the exponential of a complex number"),
396 NC_("ANALYSIS_Imexp", "Complex number"),
397 NC_("ANALYSIS_Imexp", "The complex number")
400 const TranslateId ANALYSIS_Imconjugate[] =
402 NC_("ANALYSIS_Imconjugate", "Returns the complex conjugate of a complex number"),
403 NC_("ANALYSIS_Imconjugate", "Complex number"),
404 NC_("ANALYSIS_Imconjugate", "The complex number")
407 const TranslateId ANALYSIS_Imln[] =
409 NC_("ANALYSIS_Imln", "Returns the natural logarithm of a complex number"),
410 NC_("ANALYSIS_Imln", "Complex number"),
411 NC_("ANALYSIS_Imln", "The complex number")
414 const TranslateId ANALYSIS_Imlog10[] =
416 NC_("ANALYSIS_Imlog10", "Returns the base-10 logarithm of a complex number"),
417 NC_("ANALYSIS_Imlog10", "Complex number"),
418 NC_("ANALYSIS_Imlog10", "The complex number")
421 const TranslateId ANALYSIS_Imlog2[] =
423 NC_("ANALYSIS_Imlog2", "Returns the base-2 logarithm of a complex number"),
424 NC_("ANALYSIS_Imlog2", "Complex number"),
425 NC_("ANALYSIS_Imlog2", "The complex number")
428 const TranslateId ANALYSIS_Improduct[] =
430 NC_("ANALYSIS_Improduct", "Returns the product of several complex numbers"),
431 NC_("ANALYSIS_Improduct", "Complex number"),
432 NC_("ANALYSIS_Improduct", "The first complex number"),
433 NC_("ANALYSIS_Improduct", "Complex number"),
434 NC_("ANALYSIS_Improduct", "Another complex number")
437 const TranslateId ANALYSIS_Imreal[] =
439 NC_("ANALYSIS_Imreal", "Returns the real coefficient of a complex number"),
440 NC_("ANALYSIS_Imreal", "Complex number"),
441 NC_("ANALYSIS_Imreal", "The complex number")
444 const TranslateId ANALYSIS_Imsin[] =
446 NC_("ANALYSIS_Imsin", "Returns the sine of a complex number"),
447 NC_("ANALYSIS_Imsin", "Complex number"),
448 NC_("ANALYSIS_Imsin", "The complex number")
451 const TranslateId ANALYSIS_Imsub[] =
453 NC_("ANALYSIS_Imsub", "Returns the difference of two complex numbers"),
454 NC_("ANALYSIS_Imsub", "Complex number 1"),
455 NC_("ANALYSIS_Imsub", "Complex number 1"),
456 NC_("ANALYSIS_Imsub", "Complex number 2"),
457 NC_("ANALYSIS_Imsub", "Complex number 2")
460 const TranslateId ANALYSIS_Imsqrt[] =
462 NC_("ANALYSIS_Imsqrt", "Returns the square root of a complex number"),
463 NC_("ANALYSIS_Imsqrt", "Complex number"),
464 NC_("ANALYSIS_Imsqrt", "The complex number")
467 const TranslateId ANALYSIS_Imsum[] =
469 NC_("ANALYSIS_Imsum", "Returns the sum of complex numbers"),
470 NC_("ANALYSIS_Imsum", "Complex number"),
471 NC_("ANALYSIS_Imsum", "The complex number")
474 const TranslateId ANALYSIS_Imtan[] =
476 NC_("ANALYSIS_Imtan", "Returns the tangent of a complex number"),
477 NC_("ANALYSIS_Imtan", "Complex number"),
478 NC_("ANALYSIS_Imtan", "A complex number")
481 const TranslateId ANALYSIS_Imsec[] =
483 NC_("ANALYSIS_Imsec", "Returns the secant of a complex number"),
484 NC_("ANALYSIS_Imsec", "Complex number"),
485 NC_("ANALYSIS_Imsec", "A complex number")
488 const TranslateId ANALYSIS_Imcsc[] =
490 NC_("ANALYSIS_Imcsc", "Returns the cosecant of a complex number"),
491 NC_("ANALYSIS_Imcsc", "Complex number"),
492 NC_("ANALYSIS_Imcsc", "A complex number")
495 const TranslateId ANALYSIS_Imcot[] =
497 NC_("ANALYSIS_Imcot", "Returns the cotangent of a complex number"),
498 NC_("ANALYSIS_Imcot", "Complex number"),
499 NC_("ANALYSIS_Imcot", "A complex number")
502 const TranslateId ANALYSIS_Imsinh[] =
504 NC_("ANALYSIS_Imsinh", "Returns the hyperbolic sine of a complex number"),
505 NC_("ANALYSIS_Imsinh", "Complex number"),
506 NC_("ANALYSIS_Imsinh", "A complex number")
509 const TranslateId ANALYSIS_Imcosh[] =
511 NC_("ANALYSIS_Imcosh", "Returns the hyperbolic cosine of a complex number"),
512 NC_("ANALYSIS_Imcosh", "Complex number"),
513 NC_("ANALYSIS_Imcosh", "A complex number")
516 const TranslateId ANALYSIS_Imsech[] =
518 NC_("ANALYSIS_Imsech", "Returns the hyperbolic secant of a complex number"),
519 NC_("ANALYSIS_Imsech", "Complex number"),
520 NC_("ANALYSIS_Imsech", "A complex number")
523 const TranslateId ANALYSIS_Imcsch[] =
525 NC_("ANALYSIS_Imcsch", "Returns the hyperbolic cosecant of a complex number"),
526 NC_("ANALYSIS_Imcsch", "Complex number"),
527 NC_("ANALYSIS_Imcsch", "A complex number")
530 const TranslateId ANALYSIS_Complex[] =
532 NC_("ANALYSIS_Complex", "Converts real and imaginary coefficients into a complex number"),
533 NC_("ANALYSIS_Complex", "Real num"),
534 NC_("ANALYSIS_Complex", "The real coefficient"),
535 NC_("ANALYSIS_Complex", "I num"),
536 NC_("ANALYSIS_Complex", "The imaginary coefficient"),
537 NC_("ANALYSIS_Complex", "Suffix"),
538 NC_("ANALYSIS_Complex", "The suffix")
541 const TranslateId ANALYSIS_Convert[] =
543 NC_("ANALYSIS_Convert", "Converts a number from one measurement system to another"),
544 NC_("ANALYSIS_Convert", "Number"),
545 NC_("ANALYSIS_Convert", "The number"),
546 NC_("ANALYSIS_Convert", "From unit"),
547 NC_("ANALYSIS_Convert", "Unit of measure for number"),
548 NC_("ANALYSIS_Convert", "To unit"),
549 NC_("ANALYSIS_Convert", "Unit of measure for the result")
552 const TranslateId ANALYSIS_Amordegrc[] =
554 NC_("ANALYSIS_Amordegrc", "Returns the prorated linear depreciation of an asset for each accounting period"),
555 NC_("ANALYSIS_Amordegrc", "Cost"),
556 NC_("ANALYSIS_Amordegrc", "Cost of the asset"),
557 NC_("ANALYSIS_Amordegrc", "Date purchased"),
558 NC_("ANALYSIS_Amordegrc", "Purchase date of the asset"),
559 NC_("ANALYSIS_Amordegrc", "First period"),
560 NC_("ANALYSIS_Amordegrc", "Date the first period ends"),
561 NC_("ANALYSIS_Amordegrc", "Salvage"),
562 NC_("ANALYSIS_Amordegrc", "Salvage value of an asset at the end of its life"),
563 NC_("ANALYSIS_Amordegrc", "Period"),
564 NC_("ANALYSIS_Amordegrc", "The period"),
565 NC_("ANALYSIS_Amordegrc", "Rate"),
566 NC_("ANALYSIS_Amordegrc", "The rate of depreciation"),
567 NC_("ANALYSIS_Amordegrc", "Basis"),
568 NC_("ANALYSIS_Amordegrc", "The year basis to be used")
571 const TranslateId ANALYSIS_Amorlinc[] =
573 NC_("ANALYSIS_Amorlinc", "Returns the prorated linear depreciation of an asset for each accounting period"),
574 NC_("ANALYSIS_Amorlinc", "Cost"),
575 NC_("ANALYSIS_Amorlinc", "Cost of the asset"),
576 NC_("ANALYSIS_Amorlinc", "Date purchased"),
577 NC_("ANALYSIS_Amorlinc", "Purchase date of the asset"),
578 NC_("ANALYSIS_Amorlinc", "First period"),
579 NC_("ANALYSIS_Amorlinc", "The date the first period ends"),
580 NC_("ANALYSIS_Amorlinc", "Salvage"),
581 NC_("ANALYSIS_Amorlinc", "The salvage value of an asset at the end of its life"),
582 NC_("ANALYSIS_Amorlinc", "Period"),
583 NC_("ANALYSIS_Amorlinc", "The period"),
584 NC_("ANALYSIS_Amorlinc", "Rate"),
585 NC_("ANALYSIS_Amorlinc", "The rate of depreciation"),
586 NC_("ANALYSIS_Amorlinc", "Basis"),
587 NC_("ANALYSIS_Amorlinc", "The year basis to be used")
590 const TranslateId ANALYSIS_Accrint[] =
592 NC_("ANALYSIS_Accrint", "Returns the accrued interest for a security that pays periodic interest"),
593 NC_("ANALYSIS_Accrint", "Issue"),
594 NC_("ANALYSIS_Accrint", "Issue date of the security"),
595 NC_("ANALYSIS_Accrint", "First interest"),
596 NC_("ANALYSIS_Accrint", "First interest date of the security"),
597 NC_("ANALYSIS_Accrint", "Settlement"),
598 NC_("ANALYSIS_Accrint", "The settlement"),
599 NC_("ANALYSIS_Accrint", "Rate"),
600 NC_("ANALYSIS_Accrint", "The rate"),
601 NC_("ANALYSIS_Accrint", "Par"),
602 NC_("ANALYSIS_Accrint", "The par value"),
603 NC_("ANALYSIS_Accrint", "Frequency"),
604 NC_("ANALYSIS_Accrint", "The frequency"),
605 NC_("ANALYSIS_Accrint", "Basis"),
606 NC_("ANALYSIS_Accrint", "The basis")
609 const TranslateId ANALYSIS_Accrintm[] =
611 NC_("ANALYSIS_Accrintm", "Returns the accrued interest for a security that pays interest at maturity"),
612 NC_("ANALYSIS_Accrintm", "Issue"),
613 NC_("ANALYSIS_Accrintm", "The issue date"),
614 NC_("ANALYSIS_Accrintm", "Settlement"),
615 NC_("ANALYSIS_Accrintm", "The settlement"),
616 NC_("ANALYSIS_Accrintm", "Rate"),
617 NC_("ANALYSIS_Accrintm", "The rate"),
618 NC_("ANALYSIS_Accrintm", "Par"),
619 NC_("ANALYSIS_Accrintm", "The par value"),
620 NC_("ANALYSIS_Accrintm", "Basis"),
621 NC_("ANALYSIS_Accrintm", "The basis")
624 const TranslateId ANALYSIS_Received[] =
626 NC_("ANALYSIS_Received", "Returns the amount paid out at maturity for a fully invested security"),
627 NC_("ANALYSIS_Received", "Settlement"),
628 NC_("ANALYSIS_Received", "The settlement"),
629 NC_("ANALYSIS_Received", "Maturity"),
630 NC_("ANALYSIS_Received", "The maturity"),
631 NC_("ANALYSIS_Received", "Investment"),
632 NC_("ANALYSIS_Received", "The investment"),
633 NC_("ANALYSIS_Received", "Discount"),
634 NC_("ANALYSIS_Received", "The discount"),
635 NC_("ANALYSIS_Received", "Basis"),
636 NC_("ANALYSIS_Received", "The basis")
639 const TranslateId ANALYSIS_Disc[] =
641 NC_("ANALYSIS_Disc", "Returns the discount rate for a security"),
642 NC_("ANALYSIS_Disc", "Settlement"),
643 NC_("ANALYSIS_Disc", "The settlement"),
644 NC_("ANALYSIS_Disc", "Maturity"),
645 NC_("ANALYSIS_Disc", "The maturity"),
646 NC_("ANALYSIS_Disc", "Price"),
647 NC_("ANALYSIS_Disc", "The price"),
648 NC_("ANALYSIS_Disc", "Redemption"),
649 NC_("ANALYSIS_Disc", "The redemption value"),
650 NC_("ANALYSIS_Disc", "Basis"),
651 NC_("ANALYSIS_Disc", "The basis")
654 const TranslateId ANALYSIS_Duration[] =
656 NC_("ANALYSIS_Duration", "Returns the annual Macaulay duration of a security with periodic interest payments"),
657 NC_("ANALYSIS_Duration", "Settlement"),
658 NC_("ANALYSIS_Duration", "The settlement"),
659 NC_("ANALYSIS_Duration", "Maturity"),
660 NC_("ANALYSIS_Duration", "The maturity"),
661 NC_("ANALYSIS_Duration", "Coupon"),
662 NC_("ANALYSIS_Duration", "The coupon rate"),
663 NC_("ANALYSIS_Duration", "Yield"),
664 NC_("ANALYSIS_Duration", "The yield"),
665 NC_("ANALYSIS_Duration", "Frequency"),
666 NC_("ANALYSIS_Duration", "The frequency"),
667 NC_("ANALYSIS_Duration", "Basis"),
668 NC_("ANALYSIS_Duration", "The basis")
671 const TranslateId ANALYSIS_Effect[] =
673 NC_("ANALYSIS_Effect", "Returns the effective annual interest rate"),
674 NC_("ANALYSIS_Effect", "Nominal rate"),
675 NC_("ANALYSIS_Effect", "The nominal rate"),
676 NC_("ANALYSIS_Effect", "Npery"),
677 NC_("ANALYSIS_Effect", "The periods")
680 const TranslateId ANALYSIS_Cumprinc[] =
682 NC_("ANALYSIS_Cumprinc", "Returns the cumulative principal on a loan to be paid between two periods"),
683 NC_("ANALYSIS_Cumprinc", "Rate"),
684 NC_("ANALYSIS_Cumprinc", "The rate"),
685 NC_("ANALYSIS_Cumprinc", "Nper"),
686 NC_("ANALYSIS_Cumprinc", "Number of payment periods"),
687 NC_("ANALYSIS_Cumprinc", "Pv"),
688 NC_("ANALYSIS_Cumprinc", "The present value"),
689 NC_("ANALYSIS_Cumprinc", "Start period"),
690 NC_("ANALYSIS_Cumprinc", "The start period"),
691 NC_("ANALYSIS_Cumprinc", "End period"),
692 NC_("ANALYSIS_Cumprinc", "The end period"),
693 NC_("ANALYSIS_Cumprinc", "Type"),
694 NC_("ANALYSIS_Cumprinc", "The type of maturity")
697 const TranslateId ANALYSIS_Cumipmt[] =
699 NC_("ANALYSIS_Cumipmt", "Returns the cumulative interest to be paid between two periods"),
700 NC_("ANALYSIS_Cumipmt", "Rate"),
701 NC_("ANALYSIS_Cumipmt", "The rate"),
702 NC_("ANALYSIS_Cumipmt", "Nper"),
703 NC_("ANALYSIS_Cumipmt", "Number of payment periods"),
704 NC_("ANALYSIS_Cumipmt", "Pv"),
705 NC_("ANALYSIS_Cumipmt", "The present value"),
706 NC_("ANALYSIS_Cumipmt", "Start period"),
707 NC_("ANALYSIS_Cumipmt", "The start period"),
708 NC_("ANALYSIS_Cumipmt", "End period"),
709 NC_("ANALYSIS_Cumipmt", "The end period"),
710 NC_("ANALYSIS_Cumipmt", "Type"),
711 NC_("ANALYSIS_Cumipmt", "The type of maturity")
714 const TranslateId ANALYSIS_Price[] =
716 NC_("ANALYSIS_Price", "Returns the price per 100 currency units face value of a security that pays periodic interest"),
717 NC_("ANALYSIS_Price", "Settlement"),
718 NC_("ANALYSIS_Price", "The settlement"),
719 NC_("ANALYSIS_Price", "Maturity"),
720 NC_("ANALYSIS_Price", "The maturity"),
721 NC_("ANALYSIS_Price", "Rate"),
722 NC_("ANALYSIS_Price", "The rate"),
723 NC_("ANALYSIS_Price", "Yield"),
724 NC_("ANALYSIS_Price", "The yield"),
725 NC_("ANALYSIS_Price", "Redemption"),
726 NC_("ANALYSIS_Price", "The redemption value"),
727 NC_("ANALYSIS_Price", "Frequency"),
728 NC_("ANALYSIS_Price", "The frequency"),
729 NC_("ANALYSIS_Price", "Basis"),
730 NC_("ANALYSIS_Price", "The basis")
733 const TranslateId ANALYSIS_Pricedisc[] =
735 NC_("ANALYSIS_Pricedisc", "Returns the price per 100 currency units face value of a discounted security"),
736 NC_("ANALYSIS_Pricedisc", "Settlement"),
737 NC_("ANALYSIS_Pricedisc", "The settlement"),
738 NC_("ANALYSIS_Pricedisc", "Maturity"),
739 NC_("ANALYSIS_Pricedisc", "The maturity"),
740 NC_("ANALYSIS_Pricedisc", "Discount"),
741 NC_("ANALYSIS_Pricedisc", "The discount"),
742 NC_("ANALYSIS_Pricedisc", "Redemption"),
743 NC_("ANALYSIS_Pricedisc", "The redemption value"),
744 NC_("ANALYSIS_Pricedisc", "Basis"),
745 NC_("ANALYSIS_Pricedisc", "The basis")
748 const TranslateId ANALYSIS_Pricemat[] =
750 NC_("ANALYSIS_Pricemat", "Returns the price per 100 currency units face value of a security that pays interest at maturity"),
751 NC_("ANALYSIS_Pricemat", "Settlement"),
752 NC_("ANALYSIS_Pricemat", "The settlement"),
753 NC_("ANALYSIS_Pricemat", "Maturity"),
754 NC_("ANALYSIS_Pricemat", "The maturity"),
755 NC_("ANALYSIS_Pricemat", "Issue"),
756 NC_("ANALYSIS_Pricemat", "The issue date"),
757 NC_("ANALYSIS_Pricemat", "Rate"),
758 NC_("ANALYSIS_Pricemat", "The rate"),
759 NC_("ANALYSIS_Pricemat", "Yield"),
760 NC_("ANALYSIS_Pricemat", "The yield"),
761 NC_("ANALYSIS_Pricemat", "Basis"),
762 NC_("ANALYSIS_Pricemat", "The basis")
765 const TranslateId ANALYSIS_Mduration[] =
767 NC_("ANALYSIS_Mduration", "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units"),
768 NC_("ANALYSIS_Mduration", "Settlement"),
769 NC_("ANALYSIS_Mduration", "The settlement"),
770 NC_("ANALYSIS_Mduration", "Maturity"),
771 NC_("ANALYSIS_Mduration", "The maturity"),
772 NC_("ANALYSIS_Mduration", "Coupon"),
773 NC_("ANALYSIS_Mduration", "The coupon rate"),
774 NC_("ANALYSIS_Mduration", "Yield"),
775 NC_("ANALYSIS_Mduration", "The yield"),
776 NC_("ANALYSIS_Mduration", "Frequency"),
777 NC_("ANALYSIS_Mduration", "The frequency"),
778 NC_("ANALYSIS_Mduration", "Basis"),
779 NC_("ANALYSIS_Mduration", "The basis")
782 const TranslateId ANALYSIS_Nominal[] =
784 NC_("ANALYSIS_Nominal", "Returns the annual nominal interest rate"),
785 NC_("ANALYSIS_Nominal", "Effective rate"),
786 NC_("ANALYSIS_Nominal", "The effective interest rate"),
787 NC_("ANALYSIS_Nominal", "Npery"),
788 NC_("ANALYSIS_Nominal", "The periods")
791 const TranslateId ANALYSIS_Dollarfr[] =
793 NC_("ANALYSIS_Dollarfr", "Converts a price expressed as a decimal into a price expressed as a fraction"),
794 NC_("ANALYSIS_Dollarfr", "Decimal dollar"),
795 NC_("ANALYSIS_Dollarfr", "The decimal number"),
796 NC_("ANALYSIS_Dollarfr", "Fraction"),
797 NC_("ANALYSIS_Dollarfr", "The divisor")
800 const TranslateId ANALYSIS_Dollarde[] =
802 NC_("ANALYSIS_Dollarde", "Converts a price expressed as a fraction into a price expressed as a decimal"),
803 NC_("ANALYSIS_Dollarde", "Fractional dollar"),
804 NC_("ANALYSIS_Dollarde", "The number as a fraction"),
805 NC_("ANALYSIS_Dollarde", "Fraction"),
806 NC_("ANALYSIS_Dollarde", "The divisor")
809 const TranslateId ANALYSIS_Yield[] =
811 NC_("ANALYSIS_Yield", "Returns the yield on a security that pays periodic interest"),
812 NC_("ANALYSIS_Yield", "Settlement"),
813 NC_("ANALYSIS_Yield", "The settlement"),
814 NC_("ANALYSIS_Yield", "Maturity"),
815 NC_("ANALYSIS_Yield", "The maturity"),
816 NC_("ANALYSIS_Yield", "Rate"),
817 NC_("ANALYSIS_Yield", "The rate"),
818 NC_("ANALYSIS_Yield", "Price"),
819 NC_("ANALYSIS_Yield", "The price"),
820 NC_("ANALYSIS_Yield", "Redemption"),
821 NC_("ANALYSIS_Yield", "The redemption value"),
822 NC_("ANALYSIS_Yield", "Frequency"),
823 NC_("ANALYSIS_Yield", "The frequency"),
824 NC_("ANALYSIS_Yield", "Basis"),
825 NC_("ANALYSIS_Yield", "The basis")
828 const TranslateId ANALYSIS_Yielddisc[] =
830 NC_("ANALYSIS_Yielddisc", "Returns the annual yield for a discounted security"),
831 NC_("ANALYSIS_Yielddisc", "Settlement"),
832 NC_("ANALYSIS_Yielddisc", "The settlement"),
833 NC_("ANALYSIS_Yielddisc", "Maturity"),
834 NC_("ANALYSIS_Yielddisc", "The maturity"),
835 NC_("ANALYSIS_Yielddisc", "Price"),
836 NC_("ANALYSIS_Yielddisc", "The price"),
837 NC_("ANALYSIS_Yielddisc", "Redemption"),
838 NC_("ANALYSIS_Yielddisc", "The redemption value"),
839 NC_("ANALYSIS_Yielddisc", "Basis"),
840 NC_("ANALYSIS_Yielddisc", "The basis")
843 const TranslateId ANALYSIS_Yieldmat[] =
845 NC_("ANALYSIS_Yieldmat", "Returns the annual yield of a security that pays interest at maturity"),
846 NC_("ANALYSIS_Yieldmat", "Settlement"),
847 NC_("ANALYSIS_Yieldmat", "The settlement"),
848 NC_("ANALYSIS_Yieldmat", "Maturity"),
849 NC_("ANALYSIS_Yieldmat", "The maturity"),
850 NC_("ANALYSIS_Yieldmat", "Issue"),
851 NC_("ANALYSIS_Yieldmat", "The issue date"),
852 NC_("ANALYSIS_Yieldmat", "Rate"),
853 NC_("ANALYSIS_Yieldmat", "The rate"),
854 NC_("ANALYSIS_Yieldmat", "Price"),
855 NC_("ANALYSIS_Yieldmat", "The price"),
856 NC_("ANALYSIS_Yieldmat", "Basis"),
857 NC_("ANALYSIS_Yieldmat", "The basis")
860 const TranslateId ANALYSIS_Tbilleq[] =
862 NC_("ANALYSIS_Tbilleq", "Returns the bond-equivalent yield for a treasury bill"),
863 NC_("ANALYSIS_Tbilleq", "Settlement"),
864 NC_("ANALYSIS_Tbilleq", "The settlement"),
865 NC_("ANALYSIS_Tbilleq", "Maturity"),
866 NC_("ANALYSIS_Tbilleq", "The maturity"),
867 NC_("ANALYSIS_Tbilleq", "Discount"),
868 NC_("ANALYSIS_Tbilleq", "The discount rate")
871 const TranslateId ANALYSIS_Tbillprice[] =
873 NC_("ANALYSIS_Tbillprice", "Returns the price of 100 currency units face value for a treasury bill"),
874 NC_("ANALYSIS_Tbillprice", "Settlement"),
875 NC_("ANALYSIS_Tbillprice", "The settlement"),
876 NC_("ANALYSIS_Tbillprice", "Maturity"),
877 NC_("ANALYSIS_Tbillprice", "The maturity"),
878 NC_("ANALYSIS_Tbillprice", "Discount"),
879 NC_("ANALYSIS_Tbillprice", "The discount rate")
882 const TranslateId ANALYSIS_Tbillyield[] =
884 NC_("ANALYSIS_Tbillyield", "Returns the yield for a treasury bill"),
885 NC_("ANALYSIS_Tbillyield", "Settlement"),
886 NC_("ANALYSIS_Tbillyield", "The settlement"),
887 NC_("ANALYSIS_Tbillyield", "Maturity"),
888 NC_("ANALYSIS_Tbillyield", "The maturity"),
889 NC_("ANALYSIS_Tbillyield", "Price"),
890 NC_("ANALYSIS_Tbillyield", "The price")
893 const TranslateId ANALYSIS_Oddfprice[] =
895 NC_("ANALYSIS_Oddfprice", "Returns the price per $100 face value of a security with an odd first period"),
896 NC_("ANALYSIS_Oddfprice", "Settlement"),
897 NC_("ANALYSIS_Oddfprice", "The settlement"),
898 NC_("ANALYSIS_Oddfprice", "Maturity"),
899 NC_("ANALYSIS_Oddfprice", "The maturity"),
900 NC_("ANALYSIS_Oddfprice", "Issue"),
901 NC_("ANALYSIS_Oddfprice", "The issue date"),
902 NC_("ANALYSIS_Oddfprice", "First coupon"),
903 NC_("ANALYSIS_Oddfprice", "The first coupon date"),
904 NC_("ANALYSIS_Oddfprice", "Rate"),
905 NC_("ANALYSIS_Oddfprice", "The rate"),
906 NC_("ANALYSIS_Oddfprice", "Yield"),
907 NC_("ANALYSIS_Oddfprice", "The yield"),
908 NC_("ANALYSIS_Oddfprice", "Redemption"),
909 NC_("ANALYSIS_Oddfprice", "The redemption value"),
910 NC_("ANALYSIS_Oddfprice", "Frequency"),
911 NC_("ANALYSIS_Oddfprice", "The frequency"),
912 NC_("ANALYSIS_Oddfprice", "Basis"),
913 NC_("ANALYSIS_Oddfprice", "The basis")
916 const TranslateId ANALYSIS_Oddfyield[] =
918 NC_("ANALYSIS_Oddfyield", "Returns the yield of a security with an odd first period"),
919 NC_("ANALYSIS_Oddfyield", "Settlement"),
920 NC_("ANALYSIS_Oddfyield", "The settlement"),
921 NC_("ANALYSIS_Oddfyield", "Maturity"),
922 NC_("ANALYSIS_Oddfyield", "The maturity"),
923 NC_("ANALYSIS_Oddfyield", "Issue"),
924 NC_("ANALYSIS_Oddfyield", "The issue date"),
925 NC_("ANALYSIS_Oddfyield", "First coupon"),
926 NC_("ANALYSIS_Oddfyield", "The first coupon date"),
927 NC_("ANALYSIS_Oddfyield", "Rate"),
928 NC_("ANALYSIS_Oddfyield", "The rate"),
929 NC_("ANALYSIS_Oddfyield", "Price"),
930 NC_("ANALYSIS_Oddfyield", "The price"),
931 NC_("ANALYSIS_Oddfyield", "Redemption"),
932 NC_("ANALYSIS_Oddfyield", "The redemption value"),
933 NC_("ANALYSIS_Oddfyield", "Frequency"),
934 NC_("ANALYSIS_Oddfyield", "The frequency"),
935 NC_("ANALYSIS_Oddfyield", "Basis"),
936 NC_("ANALYSIS_Oddfyield", "The basis")
939 const TranslateId ANALYSIS_Oddlprice[] =
941 NC_("ANALYSIS_Oddlprice", "Returns the price per $100 face value of a security with an odd last period"),
942 NC_("ANALYSIS_Oddlprice", "Settlement"),
943 NC_("ANALYSIS_Oddlprice", "The settlement"),
944 NC_("ANALYSIS_Oddlprice", "Maturity"),
945 NC_("ANALYSIS_Oddlprice", "The maturity"),
946 NC_("ANALYSIS_Oddlprice", "Last interest"),
947 NC_("ANALYSIS_Oddlprice", "The last interest date"),
948 NC_("ANALYSIS_Oddlprice", "Rate"),
949 NC_("ANALYSIS_Oddlprice", "The rate"),
950 NC_("ANALYSIS_Oddlprice", "Yield"),
951 NC_("ANALYSIS_Oddlprice", "The yield"),
952 NC_("ANALYSIS_Oddlprice", "Redemption"),
953 NC_("ANALYSIS_Oddlprice", "The redemption value"),
954 NC_("ANALYSIS_Oddlprice", "Frequency"),
955 NC_("ANALYSIS_Oddlprice", "The frequency"),
956 NC_("ANALYSIS_Oddlprice", "Basis"),
957 NC_("ANALYSIS_Oddlprice", "The basis")
960 const TranslateId ANALYSIS_Oddlyield[] =
962 NC_("ANALYSIS_Oddlyield", "Returns the yield of a security with an odd last period"),
963 NC_("ANALYSIS_Oddlyield", "Settlement"),
964 NC_("ANALYSIS_Oddlyield", "The settlement"),
965 NC_("ANALYSIS_Oddlyield", "Maturity"),
966 NC_("ANALYSIS_Oddlyield", "The maturity"),
967 NC_("ANALYSIS_Oddlyield", "Last interest"),
968 NC_("ANALYSIS_Oddlyield", "The last interest date"),
969 NC_("ANALYSIS_Oddlyield", "Rate"),
970 NC_("ANALYSIS_Oddlyield", "The rate"),
971 NC_("ANALYSIS_Oddlyield", "Price"),
972 NC_("ANALYSIS_Oddlyield", "The price"),
973 NC_("ANALYSIS_Oddlyield", "Redemption"),
974 NC_("ANALYSIS_Oddlyield", "The redemption value"),
975 NC_("ANALYSIS_Oddlyield", "Frequency"),
976 NC_("ANALYSIS_Oddlyield", "The frequency"),
977 NC_("ANALYSIS_Oddlyield", "Basis"),
978 NC_("ANALYSIS_Oddlyield", "The basis")
981 const TranslateId ANALYSIS_Xirr[] =
983 NC_("ANALYSIS_Xirr", "Returns the internal rate of return for a non-periodic schedule of payments"),
984 NC_("ANALYSIS_Xirr", "Values"),
985 NC_("ANALYSIS_Xirr", "The values"),
986 NC_("ANALYSIS_Xirr", "Dates"),
987 NC_("ANALYSIS_Xirr", "The dates"),
988 NC_("ANALYSIS_Xirr", "Guess"),
989 NC_("ANALYSIS_Xirr", "The guess")
992 const TranslateId ANALYSIS_Xnpv[] =
994 NC_("ANALYSIS_Xnpv", "Returns the net present value for a non-periodic schedule of payments"),
995 NC_("ANALYSIS_Xnpv", "Rate"),
996 NC_("ANALYSIS_Xnpv", "The rate"),
997 NC_("ANALYSIS_Xnpv", "Values"),
998 NC_("ANALYSIS_Xnpv", "The values"),
999 NC_("ANALYSIS_Xnpv", "Dates"),
1000 NC_("ANALYSIS_Xnpv", "The dates")
1003 const TranslateId ANALYSIS_Intrate[] =
1005 NC_("ANALYSIS_Intrate", "Returns the interest rate for a fully invested security"),
1006 NC_("ANALYSIS_Intrate", "Settlement"),
1007 NC_("ANALYSIS_Intrate", "The settlement"),
1008 NC_("ANALYSIS_Intrate", "Maturity"),
1009 NC_("ANALYSIS_Intrate", "The maturity"),
1010 NC_("ANALYSIS_Intrate", "Investment"),
1011 NC_("ANALYSIS_Intrate", "The investment"),
1012 NC_("ANALYSIS_Intrate", "Redemption"),
1013 NC_("ANALYSIS_Intrate", "The redemption value"),
1014 NC_("ANALYSIS_Intrate", "Basis"),
1015 NC_("ANALYSIS_Intrate", "The basis")
1018 const TranslateId ANALYSIS_Coupncd[] =
1020 NC_("ANALYSIS_Coupncd", "Returns the first coupon date after the settlement date"),
1021 NC_("ANALYSIS_Coupncd", "Settlement"),
1022 NC_("ANALYSIS_Coupncd", "The settlement"),
1023 NC_("ANALYSIS_Coupncd", "Maturity"),
1024 NC_("ANALYSIS_Coupncd", "The maturity"),
1025 NC_("ANALYSIS_Coupncd", "Frequency"),
1026 NC_("ANALYSIS_Coupncd", "The frequency"),
1027 NC_("ANALYSIS_Coupncd", "Basis"),
1028 NC_("ANALYSIS_Coupncd", "The basis")
1031 const TranslateId ANALYSIS_Coupdays[] =
1033 NC_("ANALYSIS_Coupdays", "Returns the number of days in the coupon period containing the settlement date"),
1034 NC_("ANALYSIS_Coupdays", "Settlement"),
1035 NC_("ANALYSIS_Coupdays", "The settlement"),
1036 NC_("ANALYSIS_Coupdays", "Maturity"),
1037 NC_("ANALYSIS_Coupdays", "The maturity"),
1038 NC_("ANALYSIS_Coupdays", "Frequency"),
1039 NC_("ANALYSIS_Coupdays", "The frequency"),
1040 NC_("ANALYSIS_Coupdays", "Basis"),
1041 NC_("ANALYSIS_Coupdays", "The basis")
1044 const TranslateId ANALYSIS_Coupdaysnc[] =
1046 NC_("ANALYSIS_Coupdaysnc", "Returns the number of days from the settlement date to the next coupon date"),
1047 NC_("ANALYSIS_Coupdaysnc", "Settlement"),
1048 NC_("ANALYSIS_Coupdaysnc", "The settlement"),
1049 NC_("ANALYSIS_Coupdaysnc", "Maturity"),
1050 NC_("ANALYSIS_Coupdaysnc", "The maturity"),
1051 NC_("ANALYSIS_Coupdaysnc", "Frequency"),
1052 NC_("ANALYSIS_Coupdaysnc", "The frequency"),
1053 NC_("ANALYSIS_Coupdaysnc", "Basis"),
1054 NC_("ANALYSIS_Coupdaysnc", "The basis")
1057 const TranslateId ANALYSIS_Coupdaybs[] =
1059 NC_("ANALYSIS_Coupdaybs", "Returns the number of days from the beginning of the coupon period to the settlement date"),
1060 NC_("ANALYSIS_Coupdaybs", "Settlement"),
1061 NC_("ANALYSIS_Coupdaybs", "The settlement"),
1062 NC_("ANALYSIS_Coupdaybs", "Maturity"),
1063 NC_("ANALYSIS_Coupdaybs", "The maturity"),
1064 NC_("ANALYSIS_Coupdaybs", "Frequency"),
1065 NC_("ANALYSIS_Coupdaybs", "The frequency"),
1066 NC_("ANALYSIS_Coupdaybs", "Basis"),
1067 NC_("ANALYSIS_Coupdaybs", "The basis")
1070 const TranslateId ANALYSIS_Couppcd[] =
1072 NC_("ANALYSIS_Couppcd", "Returns the last coupon date preceding the settlement date"),
1073 NC_("ANALYSIS_Couppcd", "Settlement"),
1074 NC_("ANALYSIS_Couppcd", "The settlement"),
1075 NC_("ANALYSIS_Couppcd", "Maturity"),
1076 NC_("ANALYSIS_Couppcd", "The maturity"),
1077 NC_("ANALYSIS_Couppcd", "Frequency"),
1078 NC_("ANALYSIS_Couppcd", "The frequency"),
1079 NC_("ANALYSIS_Couppcd", "Basis"),
1080 NC_("ANALYSIS_Couppcd", "The basis")
1083 const TranslateId ANALYSIS_Coupnum[] =
1085 NC_("ANALYSIS_Coupnum", "Returns the number of coupons payable between the settlement and maturity dates"),
1086 NC_("ANALYSIS_Coupnum", "Settlement"),
1087 NC_("ANALYSIS_Coupnum", "The settlement"),
1088 NC_("ANALYSIS_Coupnum", "Maturity"),
1089 NC_("ANALYSIS_Coupnum", "The maturity"),
1090 NC_("ANALYSIS_Coupnum", "Frequency"),
1091 NC_("ANALYSIS_Coupnum", "The frequency"),
1092 NC_("ANALYSIS_Coupnum", "Basis"),
1093 NC_("ANALYSIS_Coupnum", "The basis")
1096 const TranslateId ANALYSIS_Fvschedule[] =
1098 NC_("ANALYSIS_Fvschedule", "Returns the future value of the initial principal after a series of compound interest rates are applied"),
1099 NC_("ANALYSIS_Fvschedule", "Principal"),
1100 NC_("ANALYSIS_Fvschedule", "The principal"),
1101 NC_("ANALYSIS_Fvschedule", "Schedule"),
1102 NC_("ANALYSIS_Fvschedule", "The schedule")
1105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */