-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cafe-calc.pot
2431 lines (1950 loc) · 53 KB
/
cafe-calc.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR CAFE Desktop Environment team
# This file is distributed under the same license as the cafe-calc package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: cafe-calc 1.24.0\n"
"Report-Msgid-Bugs-To: http://cafe-desktop.org\n"
"POT-Creation-Date: 2020-08-17 12:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. Accessible name for the factorize button
#: src/buttons-advanced.ui:27 src/buttons-programming.ui:1905
msgid "Factorize"
msgstr ""
#. Label on the solve button (clicking this solves the displayed calculation)
#: src/buttons-advanced.ui:270 src/buttons-basic.ui:213
#: src/buttons-financial.ui:2100 src/buttons-programming.ui:2048
msgid "="
msgstr ""
#: src/buttons-advanced.ui:288 src/buttons-basic.ui:262
#: src/buttons-financial.ui:2149 src/buttons-programming.ui:2066
msgid "Clear"
msgstr ""
#. Accessible name for the scientific exponent button
#: src/buttons-advanced.ui:321
msgid "Scientific Exponent"
msgstr ""
#. The label on the memory button
#: src/buttons-advanced.ui:390 src/buttons-financial.ui:1867
#: src/buttons-programming.ui:2319
msgid "x"
msgstr ""
#. Accessible name for the memory button
#. Accessible name for the memory value button
#. Tooltip for the memory button
#: src/buttons-advanced.ui:417 src/buttons-financial.ui:1894
#: src/math-buttons.c:236
msgid "Memory"
msgstr ""
#. Accessible name for the exponentiation (x to the power of y) button
#: src/buttons-advanced.ui:503 src/buttons-basic.ui:339
#: src/buttons-financial.ui:2331 src/buttons-programming.ui:2644
msgid "Exponent"
msgstr ""
#: src/buttons-advanced.ui:529 src/buttons-basic.ui:294
#: src/buttons-financial.ui:2357
msgid "Undo"
msgstr ""
#: src/buttons-advanced.ui:663
msgid "asin"
msgstr ""
#: src/buttons-advanced.ui:677
msgid "atan"
msgstr ""
#: src/buttons-advanced.ui:705
msgid "acos"
msgstr ""
#. Accessible name for the store value button
#: src/buttons-advanced.ui:764 src/buttons-programming.ui:2343
msgid "Store"
msgstr ""
#. Accessible name for the inverse button
#: src/buttons-advanced.ui:791 src/buttons-programming.ui:2618
msgid "Inverse"
msgstr ""
#. Accessible name for the factorial button
#: src/buttons-advanced.ui:817 src/buttons-programming.ui:2591
msgid "Factorial"
msgstr ""
#. Accessible name for the absolute value button
#: src/buttons-advanced.ui:844 src/buttons-programming.ui:1947
msgid "Absolute Value"
msgstr ""
#. Accessible name for the superscript mode button
#: src/buttons-advanced.ui:885 src/buttons-programming.ui:2279
msgid "Superscript"
msgstr ""
#. Accessible name for the subscript mode button
#: src/buttons-advanced.ui:911 src/buttons-programming.ui:2715
msgid "Subscript"
msgstr ""
#: src/buttons-advanced.ui:966
msgid "const"
msgstr ""
#. Title of Compounding Term dialog
#. Tooltip for the compounding term button
#: src/buttons-financial.ui:8 src/math-buttons.c:260
msgid "Compounding Term"
msgstr ""
#: src/buttons-financial.ui:28 src/buttons-financial.ui:211
#: src/buttons-financial.ui:394 src/buttons-financial.ui:577
#: src/buttons-financial.ui:730 src/buttons-financial.ui:914
#: src/buttons-financial.ui:1098 src/buttons-financial.ui:1282
#: src/buttons-financial.ui:1466 src/buttons-financial.ui:1679
#: src/buttons-programming.ui:29
msgid "_Cancel"
msgstr ""
#. Compounding Term Dialog: Calculate button
#. Double-Declining Depreciation Dialog: Calculate button
#. Future Value Dialog: Calculate button
#. Gross Profit Margin Dialog: Calculate button
#. Periodic Payment Dialog: Calculate button
#. Present Value Dialog: Calculate button
#. Periodic Interest Rate Dialog: Calculate button
#. Straight-Line Depreciation Dialog: Calculate button
#. Sum-of-the-Years'-Digits Depreciation Dialog: Calculate result button
#. Payment Period Dialog: Button to calculate result
#: src/buttons-financial.ui:43 src/buttons-financial.ui:226
#: src/buttons-financial.ui:409 src/buttons-financial.ui:592
#: src/buttons-financial.ui:745 src/buttons-financial.ui:929
#: src/buttons-financial.ui:1113 src/buttons-financial.ui:1297
#: src/buttons-financial.ui:1481 src/buttons-financial.ui:1694
msgid "C_alculate"
msgstr ""
#. Compounding Term Dialog: Description of calculation
#: src/buttons-financial.ui:122
msgid ""
"Calculates the number of compounding periods necessary to increase an "
"investment of present value to a future value, at a fixed interest rate per "
"compounding period."
msgstr ""
#. Compounding Term Dialog: Label before periodic interest rate input
#. Future Value Dialog: Label before periodic interest rate input
#. Periodic Payment Dialog: Label before periodic interest rate input
#. Present Value Dialog: Label before periodic interest rate input
#. Payment Period Dialog: Label before periodic interest rate input
#: src/buttons-financial.ui:136 src/buttons-financial.ui:486
#: src/buttons-financial.ui:853 src/buttons-financial.ui:1037
#: src/buttons-financial.ui:1799
msgid "Periodic Interest _Rate:"
msgstr ""
#. Compounding Term Dialog: Label before future value input
#. Periodic Interest Rate Dialog: Label before future value input
#: src/buttons-financial.ui:150 src/buttons-financial.ui:1235
msgid "_Future Value:"
msgstr ""
#. Compounding Term Dialog: Label before present value input
#. Periodic Interest Rate Dialog: Label before present value input
#: src/buttons-financial.ui:164 src/buttons-financial.ui:1207
msgid "Present _Value:"
msgstr ""
#. Title of Double-Declining Depreciation dialog
#: src/buttons-financial.ui:191
msgid "Double-Declining Depreciation"
msgstr ""
#. Double-Declining Depreciation Dialog: Description of calculation
#: src/buttons-financial.ui:260
msgid ""
"Calculates the depreciation allowance on an asset for a specified period of "
"time, using the double-declining balance method."
msgstr ""
#. Double-Declining Depreciation Dialog: Label before life input
#. Straight-Line Depreciation Dialog: Label before life input
#. Sum-of-the-Years'-Digits Depreciation Dialog: Label before life input
#: src/buttons-financial.ui:319 src/buttons-financial.ui:1388
#: src/buttons-financial.ui:1527
msgid "_Life:"
msgstr ""
#. Double-Declining Depreciation Dialog: Label before period input
#. Sum-of-the-Years'-Digits Depreciation Dialog: Label before period input
#: src/buttons-financial.ui:333 src/buttons-financial.ui:1513
msgid "_Period:"
msgstr ""
#. Double-Declining Depreciation Dialog: Label before cost input
#. Gross Profit Margin Dialog: Label before cost input
#: src/buttons-financial.ui:347 src/buttons-financial.ui:670
msgid "C_ost:"
msgstr ""
#. Title of Future Value dialog
#. Tooltip for the future value button
#: src/buttons-financial.ui:374 src/math-buttons.c:266
msgid "Future Value"
msgstr ""
#. Future Value Dialog: Label before number of periods input
#. Present Value Dialog: Label before number of periods input
#: src/buttons-financial.ui:500 src/buttons-financial.ui:1023
msgid "_Number of Periods:"
msgstr ""
#. Future Value Dialog: Description of calculation
#: src/buttons-financial.ui:516
msgid ""
"Calculates the future value of an investment based on a series of equal "
"payments at a periodic interest rate over the number of payment periods in "
"the term."
msgstr ""
#. Future Value Dialog: Label before periodic payment input
#. Present Value Dialog: Label before periodic payment input
#. Payment Period Dialog: Label before periodic payment input
#: src/buttons-financial.ui:530 src/buttons-financial.ui:1051
#: src/buttons-financial.ui:1771
msgid "_Periodic Payment:"
msgstr ""
#. Title of Gross Profit Margin dialog
#. Tooltip for the gross profit margin button
#: src/buttons-financial.ui:557 src/math-buttons.c:287
msgid "Gross Profit Margin"
msgstr ""
#. Gross Profit Margin Dialog: Description of calculation
#: src/buttons-financial.ui:626
msgid ""
"Calculates the resale price of a product, based on the product cost and the "
"wanted gross profit margin."
msgstr ""
#. Gross Profit Margin Dialog: Label before margin input
#: src/buttons-financial.ui:684
msgid "_Margin:"
msgstr ""
#. Title of Periodic Payment dialog
#. Tooltip for the periodic payment button
#: src/buttons-financial.ui:710 src/math-buttons.c:284
msgid "Periodic Payment"
msgstr ""
#. Periodic Payment Dialog: Description of calculation
#: src/buttons-financial.ui:779
msgid ""
"Calculates the amount of the periodic payment of a loan, where payments are "
"made at the end of each payment period. "
msgstr ""
#. Periodic Payment Dialog: Label before term input
#. Periodic Interest Rate Dialog: Label before term input
#: src/buttons-financial.ui:839 src/buttons-financial.ui:1221
msgid "_Term:"
msgstr ""
#. Periodic Payment Dialog: Label before principal input
#: src/buttons-financial.ui:867
msgid "_Principal:"
msgstr ""
#. Title of Present Value dialog
#. Tooltip for the present value button
#: src/buttons-financial.ui:894 src/math-buttons.c:281
msgid "Present Value"
msgstr ""
#. Present Value Dialog: Description of calculation
#: src/buttons-financial.ui:963
msgid ""
"Calculates the present value of an investment based on a series of equal "
"payments discounted at a periodic interest rate over the number of payment "
"periods in the term. "
msgstr ""
#. Title of Periodic Interest Rate dialog
#. Tooltip for the periodic interest rate button
#: src/buttons-financial.ui:1078 src/math-buttons.c:278
msgid "Periodic Interest Rate"
msgstr ""
#. Periodic Interest Rate Dialog: Description of calculation
#: src/buttons-financial.ui:1147
msgid ""
"Calculates the periodic interest necessary to increase an investment to a "
"future value, over the number of compounding periods. "
msgstr ""
#. Title of Straight-Line Depreciation dialog
#: src/buttons-financial.ui:1262
msgid "Straight-Line Depreciation"
msgstr ""
#. Straight-Line Depreciation Dialog: Label before cost input
#. Sum-of-the-Years'-Digits Depreciation Dialog: Label before cost input
#: src/buttons-financial.ui:1329 src/buttons-financial.ui:1555
msgid "_Cost:"
msgstr ""
#. Straight-Line Depreciation Dialog: Label before salvage input
#. Sum-of-the-Years'-Digits Depreciation Dialog: Label before salvage input
#: src/buttons-financial.ui:1402 src/buttons-financial.ui:1541
msgid "_Salvage:"
msgstr ""
#. Straight-Line Depreciation Dialog: Description of calculation
#: src/buttons-financial.ui:1418
msgid ""
"Calculates the straight-line depreciation of an asset for one period. The "
"straight-line method of depreciation divides the depreciable cost evenly "
"over the useful life of an asset. The useful life is the number of periods, "
"typically years, over which an asset is depreciated. "
msgstr ""
#. Title of Sum-of-the-Years'-Digits Depreciation dialog
#: src/buttons-financial.ui:1446
msgid "Sum-of-the-Years'-Digits Depreciation"
msgstr ""
#. Sum-of-the-Years'-Digits Depreciation Dialog: Description of calculation
#: src/buttons-financial.ui:1631
msgid ""
"Calculates the depreciation allowance on an asset for a specified period of "
"time, using the Sum-of-the-Years'-Digits method. This method of depreciation "
"accelerates the rate of depreciation, so that more depreciation expense "
"occurs in earlier periods than in later ones. The useful life is the number "
"of periods, typically years, over which an asset is depreciated. "
msgstr ""
#. Title of Payment Period dialog
#: src/buttons-financial.ui:1659
msgid "Payment Period"
msgstr ""
#. Payment Period Dialog: Label before future value input
#: src/buttons-financial.ui:1785
msgid "Future _Value:"
msgstr ""
#. Payment Period Dialog: Description of calculation
#: src/buttons-financial.ui:1815
msgid ""
"Calculates the number of payment periods that are necessary during the term "
"of an ordinary annuity, to accumulate a future value, at a periodic interest "
"rate."
msgstr ""
#. Calculates the number of compounding periods necessary to increase an investment of present value pv to a future value of fv, at a fixed interest rate of int per compounding period. See also: http://en.wikipedia.org/wiki/Compound_interest
#: src/buttons-financial.ui:2166
msgid "Ctrm"
msgstr ""
#. Calculates the depreciation allowance on an asset for a specified period of time, using the double-declining balance method. See also: http://en.wikipedia.org/wiki/Depreciation
#: src/buttons-financial.ui:2181
msgid "Ddb"
msgstr ""
#. Calculates the future value of an investment based on a series of equal payments, each of amount pmt, at a periodic interest rate of int, over the number of payment periods in the term. See also: http://en.wikipedia.org/wiki/Future_value
#: src/buttons-financial.ui:2196
msgid "Fv"
msgstr ""
#. Calculates the number of payment periods that are necessary during the term of an ordinary annuity, to accumulate a future value of fv, at a periodic interest rate of int. Each payment is equal to amount pmt. See also: http://en.wikipedia.org/wiki/Annuity_(finance_theory)
#: src/buttons-financial.ui:2211
msgid "Term"
msgstr ""
#. Calculates the depreciation allowance on an asset for a specified period of time, using the Sum-Of-The-Years'-Digits method. This method of depreciation accelerates the rate of depreciation, so that more depreciation expense occurs in earlier periods than in later ones. The depreciable cost is cost - salvage. The useful life is the number of periods, typically years, over which an asset is depreciated. See also: http://en.wikipedia.org/wiki/Depreciation
#: src/buttons-financial.ui:2226
msgid "Syd"
msgstr ""
#. Calculates the straight-line depreciation of an asset for one period. The depreciable cost is cost - salvage. The straight-line method of depreciation divides the depreciable cost evenly over the useful life of an asset. The useful life is the number of periods, typically years, over which an asset is depreciated. See also: http://en.wikipedia.org/wiki/Depreciation
#: src/buttons-financial.ui:2241
msgid "Sln"
msgstr ""
#. Calculates the periodic interest necessary to increase an investment of present value pv to a future value of fv, over the number of compounding periods in term. See also: http://en.wikipedia.org/wiki/Interest
#: src/buttons-financial.ui:2256
msgid "Rate"
msgstr ""
#. Calculates the present value of an investment based on a series of equal payments, each of amount pmt, discounted at a periodic interest rate of int, over the number of payment periods in the term. See also: http://en.wikipedia.org/wiki/Present_value
#: src/buttons-financial.ui:2271
msgid "Pv"
msgstr ""
#. Calculates the amount of the periodic payment of a loan, where payments are made at the end of each payment period. See also: http://en.wikipedia.org/wiki/Amortization_schedule
#: src/buttons-financial.ui:2286
msgid "Pmt"
msgstr ""
#. Calculates the resale price of a product, based on the product cost and the wanted gross profit margin. See also: http://en.wikipedia.org/wiki/Gross_profit_margin
#: src/buttons-financial.ui:2301
msgid "Gpm"
msgstr ""
#. Title of insert character code dialog
#. Tooltip for the insert character code button
#: src/buttons-programming.ui:8 src/math-buttons.c:239
msgid "Insert Character Code"
msgstr ""
#. Insert ASCII dialog: Button to insert selected character
#: src/buttons-programming.ui:44
msgid "_Insert"
msgstr ""
#. Insert ASCII dialog: Label before character entry
#: src/buttons-programming.ui:74
msgid "Ch_aracter:"
msgstr ""
#. Accessible name for the shift left button
#: src/buttons-programming.ui:2482
msgid "Shift Left"
msgstr ""
#. Accessible name for the shift right button
#: src/buttons-programming.ui:2531
msgid "Shift Right"
msgstr ""
#. Accessible name for the insert character button
#: src/buttons-programming.ui:2550
msgid "Insert Character"
msgstr ""
#. Word size combo: 8 bits
#: src/preferences.ui:40
msgid "8-bit"
msgstr ""
#. Word size combo: 16 bits
#: src/preferences.ui:44
msgid "16-bit"
msgstr ""
#. Word size combo: 32 bits
#: src/preferences.ui:48
msgid "32-bit"
msgstr ""
#. Word size combo: 64 bits
#: src/preferences.ui:52
msgid "64-bit"
msgstr ""
#. Title of preferences dialog
#: src/preferences.ui:60 src/math-preferences.c:239
msgid "Preferences"
msgstr ""
#: src/preferences.ui:80
msgid "_Close"
msgstr ""
#. Preferences dialog: Label for angle unit combo box
#: src/preferences.ui:112
msgid "_Angle units:"
msgstr ""
#. Preferences dialog: Label for display format combo box
#: src/preferences.ui:126
msgid "Number _Format:"
msgstr ""
#. Preferences dialog: label for word size combo box
#: src/preferences.ui:176
msgid "Word _size:"
msgstr ""
#. Preferences dialog: label for show trailing zeroes check button
#: src/preferences.ui:199
msgid "Show trailing _zeroes"
msgstr ""
#. Preferences dialog: label for show thousands separator check button
#: src/preferences.ui:215
msgid "Show _thousands separators"
msgstr ""
#: data/cafe-calc.appdata.xml.in:7
msgid "CAFE Calc"
msgstr ""
#: data/cafe-calc.appdata.xml.in:8
msgid "CAFE Desktop calculator"
msgstr ""
#: data/cafe-calc.appdata.xml.in:10
msgid ""
"CAFE Calc is a powerful graphical calculator with financial, logical and "
"scientific modes. It uses a multiple precision package to do its arithmetic "
"to give a high degree of accuracy."
msgstr ""
#: data/cafe-calc.appdata.xml.in:15
msgid ""
"CAFE Calc is a fork of GNOME Calc and part of the CAFE Desktop Environment. "
"If you would like to know more about CAFE and CAFE Calc, please visit the "
"project's home page."
msgstr ""
#: data/cafe-calc.desktop.in:3 src/math-window.c:282
msgid "CAFE Calculator"
msgstr ""
#. Title of main window
#: data/cafe-calc.desktop.in:4 src/math-window.c:590
msgid "Calculator"
msgstr ""
#: data/cafe-calc.desktop.in:5
msgid "Perform arithmetic, scientific or financial calculations"
msgstr ""
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/cafe-calc.desktop.in:13
msgid "calculator;CAFE;scientific;arithmetic;financial;calculations;"
msgstr ""
#: data/org.cafe.calc.gschema.xml:25
msgid "Accuracy value"
msgstr ""
#: data/org.cafe.calc.gschema.xml:26
msgid "The number of digits displayed after the numeric point"
msgstr ""
#: data/org.cafe.calc.gschema.xml:31
msgid "Word size"
msgstr ""
#: data/org.cafe.calc.gschema.xml:32
msgid "The size of the words used in bitwise operations"
msgstr ""
#: data/org.cafe.calc.gschema.xml:37
msgid "Numeric Base"
msgstr ""
#: data/org.cafe.calc.gschema.xml:38
msgid "The numeric base"
msgstr ""
#: data/org.cafe.calc.gschema.xml:42
msgid "Show Thousands Separators"
msgstr ""
#: data/org.cafe.calc.gschema.xml:43
msgid "Indicates whether thousands separators are shown in large numbers."
msgstr ""
#: data/org.cafe.calc.gschema.xml:47
msgid "Show Trailing Zeroes"
msgstr ""
#: data/org.cafe.calc.gschema.xml:48
msgid ""
"Indicates whether any trailing zeroes after the numeric point should be "
"shown in the display value."
msgstr ""
#: data/org.cafe.calc.gschema.xml:52
msgid "Number format"
msgstr ""
#: data/org.cafe.calc.gschema.xml:53
msgid "The format to display numbers in"
msgstr ""
#: data/org.cafe.calc.gschema.xml:57
msgid "Angle units"
msgstr ""
#: data/org.cafe.calc.gschema.xml:58
msgid "The angle units to use"
msgstr ""
#: data/org.cafe.calc.gschema.xml:62
msgid "Button mode"
msgstr ""
#: data/org.cafe.calc.gschema.xml:63
msgid "The button mode"
msgstr ""
#: data/org.cafe.calc.gschema.xml:67
msgid "Source currency"
msgstr ""
#: data/org.cafe.calc.gschema.xml:68
msgid "Currency of the current calculation"
msgstr ""
#: data/org.cafe.calc.gschema.xml:72
msgid "Target currency"
msgstr ""
#: data/org.cafe.calc.gschema.xml:73
msgid "Currency to convert the current calculation into"
msgstr ""
#: data/org.cafe.calc.gschema.xml:77
msgid "Source units"
msgstr ""
#: data/org.cafe.calc.gschema.xml:78
msgid "Units of the current calculation"
msgstr ""
#: data/org.cafe.calc.gschema.xml:82
msgid "Target units"
msgstr ""
#: data/org.cafe.calc.gschema.xml:83
msgid "Units to convert the current calculation into"
msgstr ""
#: src/currency-manager.c:30
msgid "UAE Dirham"
msgstr ""
#: src/currency-manager.c:31
msgid "Australian Dollar"
msgstr ""
#: src/currency-manager.c:32
msgid "Bulgarian Lev"
msgstr ""
#: src/currency-manager.c:33
msgid "Bahraini Dinar"
msgstr ""
#: src/currency-manager.c:34
msgid "Brunei Dollar"
msgstr ""
#: src/currency-manager.c:35
msgid "Brazilian Real"
msgstr ""
#: src/currency-manager.c:36
msgid "Botswana Pula"
msgstr ""
#: src/currency-manager.c:37
msgid "Canadian Dollar"
msgstr ""
#: src/currency-manager.c:38
msgid "CFA Franc"
msgstr ""
#: src/currency-manager.c:39
msgid "Swiss Franc"
msgstr ""
#: src/currency-manager.c:40
msgid "Chilean Peso"
msgstr ""
#: src/currency-manager.c:41
msgid "Chinese Yuan"
msgstr ""
#: src/currency-manager.c:42
msgid "Colombian Peso"
msgstr ""
#: src/currency-manager.c:43
msgid "Czech Koruna"
msgstr ""
#: src/currency-manager.c:44
msgid "Danish Krone"
msgstr ""
#: src/currency-manager.c:45
msgid "Algerian Dinar"
msgstr ""
#: src/currency-manager.c:46
msgid "Estonian Kroon"
msgstr ""
#: src/currency-manager.c:47
msgid "Euro"
msgstr ""
#: src/currency-manager.c:48
msgid "Pound Sterling"
msgstr ""
#: src/currency-manager.c:49
msgid "Hong Kong Dollar"
msgstr ""
#: src/currency-manager.c:50
msgid "Croatian Kuna"
msgstr ""
#: src/currency-manager.c:51
msgid "Hungarian Forint"
msgstr ""
#: src/currency-manager.c:52
msgid "Indonesian Rupiah"
msgstr ""
#: src/currency-manager.c:53
msgid "Israeli New Shekel"
msgstr ""
#: src/currency-manager.c:54
msgid "Indian Rupee"
msgstr ""
#: src/currency-manager.c:55
msgid "Iranian Rial"
msgstr ""
#: src/currency-manager.c:56
msgid "Icelandic Krona"
msgstr ""
#: src/currency-manager.c:57
msgid "Japanese Yen"
msgstr ""
#: src/currency-manager.c:58
msgid "South Korean Won"
msgstr ""
#: src/currency-manager.c:59
msgid "Kuwaiti Dinar"
msgstr ""
#: src/currency-manager.c:60
msgid "Kazakhstani Tenge"
msgstr ""
#: src/currency-manager.c:61
msgid "Sri Lankan Rupee"
msgstr ""
#: src/currency-manager.c:62
msgid "Lithuanian Litas"
msgstr ""
#: src/currency-manager.c:63
msgid "Latvian Lats"
msgstr ""
#: src/currency-manager.c:64
msgid "Libyan Dinar"
msgstr ""
#: src/currency-manager.c:65
msgid "Mauritian Rupee"
msgstr ""
#: src/currency-manager.c:66
msgid "Mexican Peso"
msgstr ""
#: src/currency-manager.c:67
msgid "Malaysian Ringgit"
msgstr ""
#: src/currency-manager.c:68
msgid "Norwegian Krone"
msgstr ""
#: src/currency-manager.c:69
msgid "Nepalese Rupee"
msgstr ""
#: src/currency-manager.c:70
msgid "New Zealand Dollar"
msgstr ""
#: src/currency-manager.c:71
msgid "Omani Rial"
msgstr ""
#: src/currency-manager.c:72
msgid "Peruvian Nuevo Sol"
msgstr ""
#: src/currency-manager.c:73
msgid "Philippine Peso"
msgstr ""
#: src/currency-manager.c:74
msgid "Pakistani Rupee"
msgstr ""
#: src/currency-manager.c:75
msgid "Polish Zloty"
msgstr ""
#: src/currency-manager.c:76
msgid "Qatari Riyal"
msgstr ""
#: src/currency-manager.c:77
msgid "New Romanian Leu"
msgstr ""
#: src/currency-manager.c:78
msgid "Russian Rouble"
msgstr ""
#: src/currency-manager.c:79
msgid "Saudi Riyal"
msgstr ""
#: src/currency-manager.c:80
msgid "Swedish Krona"
msgstr ""
#: src/currency-manager.c:81
msgid "Singapore Dollar"
msgstr ""
#: src/currency-manager.c:82
msgid "Thai Baht"
msgstr ""
#: src/currency-manager.c:83
msgid "Tunisian Dinar"
msgstr ""
#: src/currency-manager.c:84
msgid "New Turkish Lira"
msgstr ""
#: src/currency-manager.c:85
msgid "T&T Dollar (TTD)"
msgstr ""
#: src/currency-manager.c:86
msgid "US Dollar"
msgstr ""
#: src/currency-manager.c:87
msgid "Uruguayan Peso"
msgstr ""
#: src/currency-manager.c:88
msgid "Venezuelan Bolívar"
msgstr ""
#: src/currency-manager.c:89
msgid "South African Rand"
msgstr ""
#: src/financial.c:70
msgid "Error: the number of periods must be positive"
msgstr ""
#. Description on how to use cafe-calc displayed on command-line
#: src/cafe-calc.c:79
#, c-format
msgid ""
"Usage:\n"
" %s — Perform mathematical calculations"
msgstr ""
#. Description on cafe-calc command-line help options displayed on command-line
#: src/cafe-calc.c:87
#, c-format
msgid ""
"Help Options:\n"
" -v, --version Show release version\n"
" -h, -?, --help Show help options\n"
" --help-all Show all help options\n"
" --help-ctk Show CTK+ options"
msgstr ""
#. Description on cafe-calc command-line CTK+ options displayed on command-line
#: src/cafe-calc.c:98
#, c-format
msgid ""
"CTK+ Options:\n"
" --class=CLASS Program class as used by the window "
"manager\n"
" --name=NAME Program name as used by the window "
"manager\n"
" --screen=SCREEN X screen to use\n"
" --sync Make X calls synchronous\n"
" --ctk-module=MODULES Load additional CTK+ modules\n"
" --g-fatal-warnings Make all warnings fatal"
msgstr ""
#. Description on cafe-calc application options displayed on command-line
#: src/cafe-calc.c:112
#, c-format
msgid ""
"Application Options:\n"
" -s, --solve <equation> Solve the given equation"
msgstr ""
#. Error printed to stderr when user uses --solve argument without an equation
#: src/cafe-calc.c:160
#, c-format
msgid "Argument --solve requires an equation to solve"
msgstr ""
#. Error printed to stderr when user provides an unknown command-line argument
#: src/cafe-calc.c:171
#, c-format
msgid "Unknown argument '%s'"
msgstr ""
#. Tooltip for the Pi button
#: src/math-buttons.c:96
msgid "Pi [Ctrl+P]"
msgstr ""
#. Tooltip for the Euler's Number button
#: src/math-buttons.c:99
msgid "Euler’s Number"
msgstr ""
#. Tooltip for the subscript button
#: src/math-buttons.c:104
msgid "Subscript mode [Alt]"
msgstr ""
#. Tooltip for the superscript button
#: src/math-buttons.c:107
msgid "Superscript mode [Ctrl]"
msgstr ""
#. Tooltip for the scientific exponent button
#: src/math-buttons.c:110
msgid "Scientific exponent [Ctrl+E]"
msgstr ""
#. Tooltip for the add button
#: src/math-buttons.c:113
msgid "Add [+]"
msgstr ""
#. Tooltip for the subtract button
#: src/math-buttons.c:116
msgid "Subtract [-]"
msgstr ""
#. Tooltip for the multiply button
#: src/math-buttons.c:119
msgid "Multiply [*]"
msgstr ""
#. Tooltip for the divide button
#: src/math-buttons.c:122
msgid "Divide [/]"
msgstr ""
#. Tooltip for the modulus divide button
#: src/math-buttons.c:125
msgid "Modulus divide"
msgstr ""
#. Tooltip for the additional functions button
#: src/math-buttons.c:128
msgid "Additional Functions"
msgstr ""
#. Tooltip for the additional constant button
#: src/math-buttons.c:131
msgid "Additional constants"
msgstr ""
#. Tooltip for the exponent button
#: src/math-buttons.c:134
msgid "Exponent [^ or **]"
msgstr ""
#. Tooltip for the square button