-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodDesc.xml
More file actions
1061 lines (1003 loc) · 73.3 KB
/
Copy pathmodDesc.xml
File metadata and controls
1061 lines (1003 loc) · 73.3 KB
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
<?xml version="1.0" encoding="utf-8"?>
<modDesc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
descVersion="104"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/NMC-TBone/xml-schema/main/modDesc.xsd">
<author>TisonK</author>
<version>1.1.5.54</version>
<title>
<en>Tax Mod</en>
<de>Steuern-Mod</de>
<fr>Mod De Taxes</fr>
<es>Mod De Impuestos</es>
<it>Mod Di Tasse</it>
<pl>Mod Podatkowy</pl>
</title>
<description>
<en><![CDATA[
Adds realistic tax system to your farm.
Features:
� Daily tax deductions based on farm balance
� Monthly tax returns (percentage of taxes paid)
� Three tax rate levels: Low (1%), Medium (2%), High (3%)
� Configurable minimum balance threshold
� Tax history and statistics tracking
� Professional in-game notifications
� Fully configurable via console commands
� Multiplayer compatible
� Settings saved per savegame
� Type 'tax' in console for commands
]]></en>
<de><![CDATA[
F�gt ein realistisches Steuersystem zu Ihrer Farm hinzu.
Funktionen:
� T�gliche Steuerabz�ge basierend auf dem Farmguthaben
� Monatliche Steuerr�ckzahlungen (Prozentsatz der gezahlten Steuern)
� Drei Steuersatzstufen: Niedrig (1%), Mittel (2%), Hoch (3%)
� Konfigurierbare Mindestguthabenschwelle
� Steuerverlauf und Statistikverfolgung
� Professionelle In-Game-Benachrichtigungen
� Vollst�ndig �ber Konsolenbefehle konfigurierbar
� Multiplayer-kompatibel
� Einstellungen pro Spielstand gespeichert
� Geben Sie 'tax' in der Konsole f�r Befehle ein
]]></de>
<fr><![CDATA[
Ajoute un syst�me de taxes r�aliste � votre ferme.
Fonctionnalit�s :
� D�ductions fiscales quotidiennes bas�es sur le solde de la ferme
� Remboursements d'imp�ts mensuels (pourcentage des taxes pay�es)
� Trois niveaux de taux d'imposition : Faible (1%), Moyen (2%), �lev� (3%)
� Seuil de solde minimum configurable
� Suivi de l'historique et des statistiques fiscales
� Notifications professionnelles en jeu
� Enti�rement configurable via des commandes console
� Compatible multijoueur
� Param�tres enregistr�s par partie
� Tapez 'tax' dans la console pour les commandes
]]></fr>
<es><![CDATA[
A�ade un sistema de impuestos realista a tu granja.
Caracter�sticas:
� Deducciones fiscales diarias basadas en el saldo de la granja
� Devoluciones de impuestos mensuales (porcentaje de impuestos pagados)
� Tres niveles de tasa impositiva: Baja (1%), Media (2%), Alta (3%)
� Umbral de saldo m�nimo configurable
� Seguimiento de historial y estad�sticas fiscales
� Notificaciones profesionales en el juego
� Totalmente configurable mediante comandos de consola
� Compatible con multijugador
� Configuraciones guardadas por partida
� Escribe 'tax' en la consola para comandos
]]></es>
<it><![CDATA[
Aggiunge un sistema fiscale realistico alla tua fattoria.
Caratteristiche:
� Detrazioni fiscali giornaliere basate sul saldo della fattoria
� Restituzioni fiscali mensili (percentuale delle tasse pagate)
� Tre livelli di aliquota fiscale: Bassa (1%), Media (2%), Alta (3%)
� Soglia di saldo minimo configurabile
� Monitoraggio della cronologia e delle statistiche fiscali
� Notifiche professionali in gioco
� Completamente configurabile tramite comandi console
� Compatibile con il multiplayer
� Impostazioni salvate per partita
� Digita 'tax' nella console per i comandi
]]></it>
<pl><![CDATA[
Dodaje realistyczny system podatkowy do Twojej farmy.
Funkcje:
� Codzienne odliczenia podatkowe na podstawie salda farmy
� Miesieczne zwroty podatk�w (procent zaplaconych podatk�w)
� Trzy poziomy stawek podatkowych: Niski (1%), Sredni (2%), Wysoki (3%)
� Konfigurowalny pr�g minimalnego salda
� Sledzenie historii i statystyk podatkowych
� Profesjonalne powiadomienia w grze
� W pelni konfigurowalne za pomoca komend konsoli
� Zgodny z trybem wieloosobowym
� Ustawienia zapisywane per zapis gry
� Wpisz 'tax' w konsoli dla komend
]]></pl>
</description>
<category>gameplay</category>
<iconFilename>icon_FS25_TaxMod.dds</iconFilename>
<multiplayer supported="true"/>
<extraSourceFiles>
<sourceFile filename="main.lua"/>
<sourceFile filename="src/settings/UIHelper.lua"/>
<sourceFile filename="src/settings/SettingsUI.lua"/>
<sourceFile filename="src/ui/TaxHUD.lua"/>
</extraSourceFiles>
<l10n>
<!-- SCS-011 irrigation expense ledger labels (companion expense lines) -->
<text name="tm_irrigation_operations">
<en><![CDATA[Irrigation Operations]]></en>
</text>
<text name="tm_irrigation_assets">
<en><![CDATA[Irrigation Assets]]></en>
</text>
<!-- Section Header -->
<text name="tm_section">
<en><![CDATA[Tax Mod]]></en>
<de><![CDATA[Steuer-Mod]]></de>
<fr><![CDATA[Mod de Taxes]]></fr>
<es><![CDATA[Mod de Impuestos]]></es>
<it><![CDATA[Mod Fiscale]]></it>
<pl><![CDATA[Mod Podatkowy]]></pl>
<uk><![CDATA[??? ?????????????]]></uk>
<cz>[EN] <![CDATA[Tax Mod]]></cz>
<br>[EN] <![CDATA[Tax Mod]]></br>
<ru>[EN] <![CDATA[Tax Mod]]></ru>
<da><![CDATA[Skattebaseret Mod]]></da>
</text>
<!-- Enable -->
<text name="tm_enabled_short">
<en><![CDATA[Enable Tax Mod]]></en>
<de><![CDATA[Steuer-Mod aktivieren]]></de>
<fr><![CDATA[Activer le Mod de Taxes]]></fr>
<es><![CDATA[Activar Mod de Impuestos]]></es>
<it><![CDATA[Attiva Mod Fiscale]]></it>
<pl><![CDATA[Wlacz Mod Podatkowy]]></pl>
<uk><![CDATA[????????? ??? ?????????????]]></uk>
<cz>[EN] <![CDATA[Enable Tax Mod]]></cz>
<br>[EN] <![CDATA[Enable Tax Mod]]></br>
<ru>[EN] <![CDATA[Enable Tax Mod]]></ru>
<da><![CDATA[Aktiver Skattebaseret Mod]]></da>
</text>
<text name="tm_enabled_long">
<en><![CDATA[Enable or disable daily tax deductions and monthly returns]]></en>
<de><![CDATA[T�gliche Steuerabz�ge und monatliche R�ckerstattungen ein-/ausschalten]]></de>
<fr><![CDATA[Activer ou d�sactiver les d�ductions fiscales quotidiennes et les remboursements mensuels]]></fr>
<es><![CDATA[Activar o desactivar las deducciones fiscales diarias y las devoluciones mensuales]]></es>
<it><![CDATA[Attiva o disattiva le detrazioni fiscali giornaliere e i rimborsi mensili]]></it>
<pl><![CDATA[Wlacz lub wylacz codzienne odliczenia podatkowe i miesieczne zwroty]]></pl>
<uk><![CDATA[????????? ??? ???????? ??????? ???????????? ?? ????????? ?????????? ????????]]></uk>
<cz>[EN] <![CDATA[Enable or disable daily tax deductions and monthly returns]]></cz>
<br>[EN] <![CDATA[Enable or disable daily tax deductions and monthly returns]]></br>
<ru>[EN] <![CDATA[Enable or disable daily tax deductions and monthly returns]]></ru>
<da><![CDATA[Aktiv�r eller deaktiver daglige skattefradrag og m�nedlige skatterefusioner]]></da>
</text>
<!-- Tax Rate -->
<text name="tm_taxrate_short">
<en><![CDATA[Tax Rate]]></en>
<de><![CDATA[Steuersatz]]></de>
<fr><![CDATA[Taux d'imposition]]></fr>
<es><![CDATA[Tasa impositiva]]></es>
<it><![CDATA[Aliquota fiscale]]></it>
<pl><![CDATA[Stawka podatkowa]]></pl>
<uk><![CDATA[?????? ???????]]></uk>
<cz>[EN] <![CDATA[Tax Rate]]></cz>
<br>[EN] <![CDATA[Tax Rate]]></br>
<ru>[EN] <![CDATA[Tax Rate]]></ru>
<da><![CDATA[Skattesats]]></da>
</text>
<text name="tm_taxrate_long">
<en><![CDATA[Daily tax rate applied to your farm balance: Low=1%, Medium=2%, High=3%]]></en>
<de><![CDATA[T�glicher Steuersatz auf Ihr Farmguthaben: Niedrig=1%, Mittel=2%, Hoch=3%]]></de>
<fr><![CDATA[Taux d'imposition quotidien appliqu� � votre solde: Faible=1%, Moyen=2%, �lev�=3%]]></fr>
<es><![CDATA[Tasa impositiva diaria sobre el saldo de tu granja: Baja=1%, Media=2%, Alta=3%]]></es>
<it><![CDATA[Aliquota fiscale giornaliera sul saldo della fattoria: Bassa=1%, Media=2%, Alta=3%]]></it>
<pl><![CDATA[Dzienna stawka podatkowa od salda farmy: Niska=1%, Srednia=2%, Wysoka=3%]]></pl>
<uk><![CDATA[??????? ?????? ??????? ??? ??????? ?????: ??????=1%, ???????=2%, ??????=3%]]></uk>
<cz>[EN] <![CDATA[Daily tax rate applied to your farm balance: Low=1%, Medium=2%, High=3%]]></cz>
<br>[EN] <![CDATA[Daily tax rate applied to your farm balance: Low=1%, Medium=2%, High=3%]]></br>
<ru>[EN] <![CDATA[Daily tax rate applied to your farm balance: Low=1%, Medium=2%, High=3%]]></ru>
<da><![CDATA[Daglig skattesats anvendt p� din g�rds saldo: Lav=1 %, Mellem=2 %, H�j=3 %]]></da>
</text>
<text name="tm_taxrate_1"><en><![CDATA[Low (1%)]]></en><de><![CDATA[Niedrig (1%)]]></de><fr><![CDATA[Faible (1%)]]></fr><es><![CDATA[Baja (1%)]]></es><it><![CDATA[Bassa (1%)]]></it><pl><![CDATA[Niska (1%)]]></pl><uk><![CDATA[?????? (1%)]]></uk>
<cz>[EN] <![CDATA[Low (1%)]]></cz>
<br>[EN] <![CDATA[Low (1%)]]></br>
<ru>[EN] <![CDATA[Low (1%)]]></ru>
<da><![CDATA[Lav (1 %)]]></da>
</text>
<text name="tm_taxrate_2"><en><![CDATA[Medium (2%)]]></en><de><![CDATA[Mittel (2%)]]></de><fr><![CDATA[Moyen (2%)]]></fr><es><![CDATA[Media (2%)]]></es><it><![CDATA[Media (2%)]]></it><pl><![CDATA[Srednia (2%)]]></pl><uk><![CDATA[??????? (2%)]]></uk>
<cz>[EN] <![CDATA[Medium (2%)]]></cz>
<br>[EN] <![CDATA[Medium (2%)]]></br>
<ru>[EN] <![CDATA[Medium (2%)]]></ru>
<da><![CDATA[Mellem (2 %)]]></da>
</text>
<text name="tm_taxrate_3"><en><![CDATA[High (3%)]]></en><de><![CDATA[Hoch (3%)]]></de><fr><![CDATA[�lev� (3%)]]></fr><es><![CDATA[Alta (3%)]]></es><it><![CDATA[Alta (3%)]]></it><pl><![CDATA[Wysoka (3%)]]></pl><uk><![CDATA[?????? (3%)]]></uk>
<cz>[EN] <![CDATA[High (3%)]]></cz>
<br>[EN] <![CDATA[High (3%)]]></br>
<ru>[EN] <![CDATA[High (3%)]]></ru>
<da><![CDATA[H�j (3 %)]]></da>
</text>
<!-- Annual Tax Rate -->
<text name="tm_annualrate_short">
<en><![CDATA[Annual Tax Rate]]></en>
<de><![CDATA[J�hrlicher Steuersatz]]></de>
<fr><![CDATA[Taux d'imposition annuel]]></fr>
<es><![CDATA[Tasa impositiva anual]]></es>
<it><![CDATA[Aliquota fiscale annuale]]></it>
<pl><![CDATA[Roczna stawka podatkowa]]></pl>
<uk><![CDATA[????? ?????? ???????]]></uk>
<cz>[EN] <![CDATA[Annual Tax Rate]]></cz>
<br>[EN] <![CDATA[Annual Tax Rate]]></br>
<ru>[EN] <![CDATA[Annual Tax Rate]]></ru>
<da><![CDATA[�rlig skattesats]]></da>
</text>
<text name="tm_annualrate_long">
<en><![CDATA[Percentage of accumulated taxes paid each March: Low=2%, Medium=5%, High=10%]]></en>
<de><![CDATA[Prozentsatz der angesammelten Steuern, der jeden M�rz gezahlt wird: Niedrig=2%, Mittel=5%, Hoch=10%]]></de>
<fr><![CDATA[Pourcentage des taxes accumul�es pay�es chaque mars: Faible=2%, Moyen=5%, �lev�=10%]]></fr>
<es><![CDATA[Porcentaje de impuestos acumulados pagados cada marzo: Baja=2%, Media=5%, Alta=10%]]></es>
<it><![CDATA[Percentuale delle tasse accumulate pagate ogni marzo: Bassa=2%, Media=5%, Alta=10%]]></it>
<pl><![CDATA[Procent zgromadzonych podatk�w placonych kazdego marca: Niski=2%, Sredni=5%, Wysoki=10%]]></pl>
<uk><![CDATA[???????? ??????????? ????????, ?? ??????????? ??????? ???????: ???????=2%, ????????=5%, ???????=10%]]></uk>
<cz>[EN] <![CDATA[Percentage of accumulated taxes paid each March: Low=2%, Medium=5%, High=10%]]></cz>
<br>[EN] <![CDATA[Percentage of accumulated taxes paid each March: Low=2%, Medium=5%, High=10%]]></br>
<ru>[EN] <![CDATA[Percentage of accumulated taxes paid each March: Low=2%, Medium=5%, High=10%]]></ru>
<da><![CDATA[Procentdel af de akkumulerede skatter, der udbetales hver marts: Lav=2 %, Mellem=5 %, H�j=10 %]]></da>
</text>
<text name="tm_annualrate_1"><en><![CDATA[Low (2%)]]></en><de><![CDATA[Niedrig (2%)]]></de><fr><![CDATA[Faible (2%)]]></fr><es><![CDATA[Baja (2%)]]></es><it><![CDATA[Bassa (2%)]]></it><pl><![CDATA[Niski (2%)]]></pl><uk><![CDATA[??????? (2%)]]></uk>
<cz>[EN] <![CDATA[Low (2%)]]></cz>
<br>[EN] <![CDATA[Low (2%)]]></br>
<ru>[EN] <![CDATA[Low (2%)]]></ru>
<da><![CDATA[Lav (2 %)]]></da>
</text>
<text name="tm_annualrate_2"><en><![CDATA[Medium (5%)]]></en><de><![CDATA[Mittel (5%)]]></de><fr><![CDATA[Moyen (5%)]]></fr><es><![CDATA[Media (5%)]]></es><it><![CDATA[Media (5%)]]></it><pl><![CDATA[Sredni (5%)]]></pl><uk><![CDATA[???????? (5%)]]></uk>
<cz>[EN] <![CDATA[Medium (5%)]]></cz>
<br>[EN] <![CDATA[Medium (5%)]]></br>
<ru>[EN] <![CDATA[Medium (5%)]]></ru>
<da><![CDATA[Mellem (5 %)]]></da>
</text>
<text name="tm_annualrate_3"><en><![CDATA[High (10%)]]></en><de><![CDATA[Hoch (10%)]]></de><fr><![CDATA[�lev� (10%)]]></fr><es><![CDATA[Alta (10%)]]></es><it><![CDATA[Alta (10%)]]></it><pl><![CDATA[Wysoki (10%)]]></pl><uk><![CDATA[??????? (10%)]]></uk>
<cz>[EN] <![CDATA[High (10%)]]></cz>
<br>[EN] <![CDATA[High (10%)]]></br>
<ru>[EN] <![CDATA[High (10%)]]></ru>
<da><![CDATA[H�j (10 %)]]></da>
</text>
<!-- Return Percentage (kept for save compatibility) -->
<text name="tm_return_short">
<en><![CDATA[Tax Return %]]></en>
<de><![CDATA[Steuerr�ckerstattung %]]></de>
<fr><![CDATA[Remboursement fiscal %]]></fr>
<es><![CDATA[% Devoluci�n de impuestos]]></es>
<it><![CDATA[% Rimborso fiscale]]></it>
<pl><![CDATA[% Zwrotu podatku]]></pl>
<uk><![CDATA[% ?????????? ???????]]></uk>
<cz>[EN] <![CDATA[Tax Return %]]></cz>
<br>[EN] <![CDATA[Tax Return %]]></br>
<ru>[EN] <![CDATA[Tax Return %]]></ru>
<da><![CDATA[Skatterefusion %]]></da>
</text>
<text name="tm_return_long">
<en><![CDATA[Percentage of monthly taxes returned at the start of each new month: Low=10%, Medium=20%, High=30%]]></en>
<de><![CDATA[Prozentsatz der monatlichen Steuern, der zur�ckerstattet wird: Niedrig=10%, Mittel=20%, Hoch=30%]]></de>
<fr><![CDATA[Pourcentage des taxes mensuelles rembours�es: Faible=10%, Moyen=20%, �lev�=30%]]></fr>
<es><![CDATA[Porcentaje de impuestos mensuales devueltos: Baja=10%, Media=20%, Alta=30%]]></es>
<it><![CDATA[Percentuale delle tasse mensili rimborsate: Bassa=10%, Media=20%, Alta=30%]]></it>
<pl><![CDATA[Procent miesiecznych podatk�w zwracanych: Niski=10%, Sredni=20%, Wysoki=30%]]></pl>
<uk><![CDATA[???????? ???????? ????????, ?? ???????????? ?? ??????? ??????: ???????=10%, ????????=20%, ???????=30%]]></uk>
<cz>[EN] <![CDATA[Percentage of monthly taxes returned at the start of each new month: Low=10%, Medium=20%, High=30%]]></cz>
<br>[EN] <![CDATA[Percentage of monthly taxes returned at the start of each new month: Low=10%, Medium=20%, High=30%]]></br>
<ru>[EN] <![CDATA[Percentage of monthly taxes returned at the start of each new month: Low=10%, Medium=20%, High=30%]]></ru>
<da><![CDATA[Procentdel af de m�nedlige skatter, der tilbagebetales ved starten af hver ny m�ned: Lav=10 %, Mellem=20 %, H�j=30 %]]></da>
</text>
<text name="tm_return_1"><en><![CDATA[Low (10%)]]></en><de><![CDATA[Niedrig (10%)]]></de><fr><![CDATA[Faible (10%)]]></fr><es><![CDATA[Baja (10%)]]></es><it><![CDATA[Bassa (10%)]]></it><pl><![CDATA[Niski (10%)]]></pl><uk><![CDATA[??????? (10%)]]></uk>
<cz>[EN] <![CDATA[Low (10%)]]></cz>
<br>[EN] <![CDATA[Low (10%)]]></br>
<ru>[EN] <![CDATA[Low (10%)]]></ru>
<da><![CDATA[Lav (10 %)]]></da>
</text>
<text name="tm_return_2"><en><![CDATA[Medium (20%)]]></en><de><![CDATA[Mittel (20%)]]></de><fr><![CDATA[Moyen (20%)]]></fr><es><![CDATA[Media (20%)]]></es><it><![CDATA[Media (20%)]]></it><pl><![CDATA[Sredni (20%)]]></pl><uk><![CDATA[???????? (20%)]]></uk>
<cz>[EN] <![CDATA[Medium (20%)]]></cz>
<br>[EN] <![CDATA[Medium (20%)]]></br>
<ru>[EN] <![CDATA[Medium (20%)]]></ru>
<da><![CDATA[Mellem (20 %)]]></da>
</text>
<text name="tm_return_3"><en><![CDATA[High (30%)]]></en><de><![CDATA[Hoch (30%)]]></de><fr><![CDATA[�lev� (30%)]]></fr><es><![CDATA[Alta (30%)]]></es><it><![CDATA[Alta (30%)]]></it><pl><![CDATA[Wysoki (30%)]]></pl><uk><![CDATA[??????? (30%)]]></uk>
<cz>[EN] <![CDATA[High (30%)]]></cz>
<br>[EN] <![CDATA[High (30%)]]></br>
<ru>[EN] <![CDATA[High (30%)]]></ru>
<da><![CDATA[H�j (30 %)]]></da>
</text>
<!-- Notifications -->
<text name="tm_notifications_short">
<en><![CDATA[Notifications]]></en>
<de><![CDATA[Benachrichtigungen]]></de>
<fr><![CDATA[Notifications]]></fr>
<es><![CDATA[Notificaciones]]></es>
<it><![CDATA[Notifiche]]></it>
<pl><![CDATA[Powiadomienia]]></pl>
<uk><![CDATA[??????????]]></uk>
<cz>[EN] <![CDATA[Notifications]]></cz>
<br>[EN] <![CDATA[Notifications]]></br>
<ru>[EN] <![CDATA[Notifications]]></ru>
<da><![CDATA[Notifikationer]]></da>
</text>
<text name="tm_notifications_long">
<en><![CDATA[Show in-game notifications when taxes are deducted or returns are paid]]></en>
<de><![CDATA[In-Game-Benachrichtigungen anzeigen, wenn Steuern abgezogen oder R�ckerstattungen gezahlt werden]]></de>
<fr><![CDATA[Afficher les notifications en jeu lors des d�ductions fiscales ou des remboursements]]></fr>
<es><![CDATA[Mostrar notificaciones en el juego cuando se deducen impuestos o se pagan devoluciones]]></es>
<it><![CDATA[Mostra notifiche in gioco quando vengono detratte le tasse o pagati i rimborsi]]></it>
<pl><![CDATA[Pokazuj powiadomienia w grze gdy podatki sa odliczane lub zwracane]]></pl>
<uk><![CDATA[?????????? ?????? ?????????? ??? ???????????? ???????? ??? ?????????? ??????]]></uk>
<cz>[EN] <![CDATA[Show in-game notifications when taxes are deducted or returns are paid]]></cz>
<br>[EN] <![CDATA[Show in-game notifications when taxes are deducted or returns are paid]]></br>
<ru>[EN] <![CDATA[Show in-game notifications when taxes are deducted or returns are paid]]></ru>
<da><![CDATA[Vis notifikationer i spillet, n�r skatter fratr�kkes eller refusioner udbetales]]></da>
</text>
<!-- Show HUD -->
<text name="tm_show_hud_short">
<en><![CDATA[Show Tax HUD]]></en>
<de><![CDATA[Steuer-HUD anzeigen]]></de>
<fr><![CDATA[Afficher le HUD fiscal]]></fr>
<es><![CDATA[Mostrar HUD de impuestos]]></es>
<it><![CDATA[Mostra HUD fiscale]]></it>
<pl><![CDATA[Pokaz HUD podatkowy]]></pl>
<uk><![CDATA[???????? HUD ????????]]></uk>
<cz>[EN] <![CDATA[Show Tax HUD]]></cz>
<br>[EN] <![CDATA[Show Tax HUD]]></br>
<ru>[EN] <![CDATA[Show Tax HUD]]></ru>
<da><![CDATA[Vis skatte-HUD]]></da>
</text>
<text name="tm_show_hud_long">
<en><![CDATA[Show the Tax HUD overlay with current rate, statistics and recent activity (toggle with T key)]]></en>
<de><![CDATA[Tax-HUD mit aktuellem Steuersatz, Statistiken und letzten Aktivit�ten anzeigen (mit T umschalten)]]></de>
<fr><![CDATA[Afficher l'HUD fiscal avec le taux actuel, les statistiques et l'activit� r�cente (basculer avec T)]]></fr>
<es><![CDATA[Mostrar el HUD fiscal con la tasa actual, estad�sticas y actividad reciente (alternar con T)]]></es>
<it><![CDATA[Mostra l'HUD fiscale con aliquota corrente, statistiche e attivit� recente (attiva/disattiva con T)]]></it>
<pl><![CDATA[Pokaz HUD podatkowy z biezaca stawka, statystykami i ostatnia aktywnoscia (przelacz klawiszem T)]]></pl>
<uk><![CDATA[???????? HUD ???????? ? ???????? ???????, ??????????? ?? ??????????? ?????????? (?????????? ???????? T)]]></uk>
<cz>[EN] <![CDATA[Show the Tax HUD overlay with current rate, statistics and recent activity (toggle with T key)]]></cz>
<br>[EN] <![CDATA[Show the Tax HUD overlay with current rate, statistics and recent activity (toggle with T key)]]></br>
<ru>[EN] <![CDATA[Show the Tax HUD overlay with current rate, statistics and recent activity (toggle with T key)]]></ru>
<da><![CDATA[Vis skatte-HUD-overlayet med aktuel sats, statistik og seneste aktivitet (sl� til/fra med T-tasten)]]></da>
</text>
<!-- HUD toggle key binding display name -->
<text name="input_TM_TOGGLE_HUD">
<en><![CDATA[Toggle Tax HUD]]></en>
<de><![CDATA[Steuer-HUD umschalten]]></de>
<fr><![CDATA[Basculer l'HUD fiscal]]></fr>
<es><![CDATA[Alternar HUD de impuestos]]></es>
<it><![CDATA[Attiva/disattiva HUD fiscale]]></it>
<pl><![CDATA[Przelacz HUD podatkowy]]></pl>
<uk><![CDATA[?????????? HUD ????????]]></uk>
<cz>[EN] <![CDATA[Toggle Tax HUD]]></cz>
<br>[EN] <![CDATA[Toggle Tax HUD]]></br>
<ru>[EN] <![CDATA[Toggle Tax HUD]]></ru>
<da><![CDATA[Sl� skatte-HUD til/fra]]></da>
</text>
<text name="input_TM_HUD_DRAG">
<en>Tax HUD Edit Mode</en>
<de>Steuer-HUD-Bearbeitungsmodus</de>
<fr>[EN] Tax HUD Edit Mode</fr>
<es>[EN] Tax HUD Edit Mode</es>
<it>[EN] Tax HUD Edit Mode</it>
<pl>[EN] Tax HUD Edit Mode</pl>
<uk>[EN] Tax HUD Edit Mode</uk>
<cz>[EN] Tax HUD Edit Mode</cz>
<br>[EN] Tax HUD Edit Mode</br>
<ru>[EN] Tax HUD Edit Mode</ru>
<da>Skat HUD-redigeringstilstand</da>
</text>
<!-- Esc RF PDA framework keys (26-lang; EN real + [EN] stubs) -->
<text name="rf_pda_side_info_tax">
<en><![CDATA[This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></en>
<de><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></de>
<fr><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></fr>
<pl><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></pl>
<es><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></es>
<it><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></it>
<cz><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></cz>
<br><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></br>
<uk><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></uk>
<ru><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></ru>
<da><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></da>
<ct><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></ct>
<ea><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></ea>
<fc><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></fc>
<fi><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></fi>
<hu><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></hu>
<id><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></id>
<jp><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></jp>
<kr><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></kr>
<nl><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></nl>
<no><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></no>
<pt><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></pt>
<ro><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></ro>
<sv><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></sv>
<tr><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></tr>
<vi><![CDATA[[EN] This pause page is your tax posture glance. See whether tax is on, how much has built up this year, what March might cost, and roughly what share of your current balance that is. Countdown tells you whether you are heading toward an advisory or a payment month. Companion ledger totals are bookkeeping other mods record here; they are not a full expense browser and Esc does not move that money. Daily rate and March rate are different settings. Settings changes them; this page only shows the consequence. Min balance is why some days add nothing to the bill. Esc never pays tax from this page. Open the Tax HUD or Settings if you want the same story elsewhere.]]></vi>
</text>
<text name="tax_rf_pda_module_title">
<en><![CDATA[Tax]]></en>
<de><![CDATA[[EN] Tax]]></de>
<fr><![CDATA[[EN] Tax]]></fr>
<pl><![CDATA[[EN] Tax]]></pl>
<es><![CDATA[[EN] Tax]]></es>
<it><![CDATA[[EN] Tax]]></it>
<cz><![CDATA[[EN] Tax]]></cz>
<br><![CDATA[[EN] Tax]]></br>
<uk><![CDATA[[EN] Tax]]></uk>
<ru><![CDATA[[EN] Tax]]></ru>
<da><![CDATA[[EN] Tax]]></da>
<ct><![CDATA[[EN] Tax]]></ct>
<ea><![CDATA[[EN] Tax]]></ea>
<fc><![CDATA[[EN] Tax]]></fc>
<fi><![CDATA[[EN] Tax]]></fi>
<hu><![CDATA[[EN] Tax]]></hu>
<id><![CDATA[[EN] Tax]]></id>
<jp><![CDATA[[EN] Tax]]></jp>
<kr><![CDATA[[EN] Tax]]></kr>
<nl><![CDATA[[EN] Tax]]></nl>
<no><![CDATA[[EN] Tax]]></no>
<pt><![CDATA[[EN] Tax]]></pt>
<ro><![CDATA[[EN] Tax]]></ro>
<sv><![CDATA[[EN] Tax]]></sv>
<tr><![CDATA[[EN] Tax]]></tr>
<vi><![CDATA[[EN] Tax]]></vi>
</text>
<text name="tax_rf_pda_waiting">
<en><![CDATA[Tax manager not ready]]></en>
<de><![CDATA[[EN] Tax manager not ready]]></de>
<fr><![CDATA[[EN] Tax manager not ready]]></fr>
<pl><![CDATA[[EN] Tax manager not ready]]></pl>
<es><![CDATA[[EN] Tax manager not ready]]></es>
<it><![CDATA[[EN] Tax manager not ready]]></it>
<cz><![CDATA[[EN] Tax manager not ready]]></cz>
<br><![CDATA[[EN] Tax manager not ready]]></br>
<uk><![CDATA[[EN] Tax manager not ready]]></uk>
<ru><![CDATA[[EN] Tax manager not ready]]></ru>
<da><![CDATA[[EN] Tax manager not ready]]></da>
<ct><![CDATA[[EN] Tax manager not ready]]></ct>
<ea><![CDATA[[EN] Tax manager not ready]]></ea>
<fc><![CDATA[[EN] Tax manager not ready]]></fc>
<fi><![CDATA[[EN] Tax manager not ready]]></fi>
<hu><![CDATA[[EN] Tax manager not ready]]></hu>
<id><![CDATA[[EN] Tax manager not ready]]></id>
<jp><![CDATA[[EN] Tax manager not ready]]></jp>
<kr><![CDATA[[EN] Tax manager not ready]]></kr>
<nl><![CDATA[[EN] Tax manager not ready]]></nl>
<no><![CDATA[[EN] Tax manager not ready]]></no>
<pt><![CDATA[[EN] Tax manager not ready]]></pt>
<ro><![CDATA[[EN] Tax manager not ready]]></ro>
<sv><![CDATA[[EN] Tax manager not ready]]></sv>
<tr><![CDATA[[EN] Tax manager not ready]]></tr>
<vi><![CDATA[[EN] Tax manager not ready]]></vi>
</text>
<text name="tax_rf_pda_on">
<en><![CDATA[On]]></en>
<de><![CDATA[[EN] On]]></de>
<fr><![CDATA[[EN] On]]></fr>
<pl><![CDATA[[EN] On]]></pl>
<es><![CDATA[[EN] On]]></es>
<it><![CDATA[[EN] On]]></it>
<cz><![CDATA[[EN] On]]></cz>
<br><![CDATA[[EN] On]]></br>
<uk><![CDATA[[EN] On]]></uk>
<ru><![CDATA[[EN] On]]></ru>
<da><![CDATA[[EN] On]]></da>
<ct><![CDATA[[EN] On]]></ct>
<ea><![CDATA[[EN] On]]></ea>
<fc><![CDATA[[EN] On]]></fc>
<fi><![CDATA[[EN] On]]></fi>
<hu><![CDATA[[EN] On]]></hu>
<id><![CDATA[[EN] On]]></id>
<jp><![CDATA[[EN] On]]></jp>
<kr><![CDATA[[EN] On]]></kr>
<nl><![CDATA[[EN] On]]></nl>
<no><![CDATA[[EN] On]]></no>
<pt><![CDATA[[EN] On]]></pt>
<ro><![CDATA[[EN] On]]></ro>
<sv><![CDATA[[EN] On]]></sv>
<tr><![CDATA[[EN] On]]></tr>
<vi><![CDATA[[EN] On]]></vi>
</text>
<text name="tax_rf_pda_off">
<en><![CDATA[Off]]></en>
<de><![CDATA[[EN] Off]]></de>
<fr><![CDATA[[EN] Off]]></fr>
<pl><![CDATA[[EN] Off]]></pl>
<es><![CDATA[[EN] Off]]></es>
<it><![CDATA[[EN] Off]]></it>
<cz><![CDATA[[EN] Off]]></cz>
<br><![CDATA[[EN] Off]]></br>
<uk><![CDATA[[EN] Off]]></uk>
<ru><![CDATA[[EN] Off]]></ru>
<da><![CDATA[[EN] Off]]></da>
<ct><![CDATA[[EN] Off]]></ct>
<ea><![CDATA[[EN] Off]]></ea>
<fc><![CDATA[[EN] Off]]></fc>
<fi><![CDATA[[EN] Off]]></fi>
<hu><![CDATA[[EN] Off]]></hu>
<id><![CDATA[[EN] Off]]></id>
<jp><![CDATA[[EN] Off]]></jp>
<kr><![CDATA[[EN] Off]]></kr>
<nl><![CDATA[[EN] Off]]></nl>
<no><![CDATA[[EN] Off]]></no>
<pt><![CDATA[[EN] Off]]></pt>
<ro><![CDATA[[EN] Off]]></ro>
<sv><![CDATA[[EN] Off]]></sv>
<tr><![CDATA[[EN] Off]]></tr>
<vi><![CDATA[[EN] Off]]></vi>
</text>
<text name="tax_rf_pda_lbl_enabled">
<en><![CDATA[Tax]]></en>
<de><![CDATA[[EN] Tax]]></de>
<fr><![CDATA[[EN] Tax]]></fr>
<pl><![CDATA[[EN] Tax]]></pl>
<es><![CDATA[[EN] Tax]]></es>
<it><![CDATA[[EN] Tax]]></it>
<cz><![CDATA[[EN] Tax]]></cz>
<br><![CDATA[[EN] Tax]]></br>
<uk><![CDATA[[EN] Tax]]></uk>
<ru><![CDATA[[EN] Tax]]></ru>
<da><![CDATA[[EN] Tax]]></da>
<ct><![CDATA[[EN] Tax]]></ct>
<ea><![CDATA[[EN] Tax]]></ea>
<fc><![CDATA[[EN] Tax]]></fc>
<fi><![CDATA[[EN] Tax]]></fi>
<hu><![CDATA[[EN] Tax]]></hu>
<id><![CDATA[[EN] Tax]]></id>
<jp><![CDATA[[EN] Tax]]></jp>
<kr><![CDATA[[EN] Tax]]></kr>
<nl><![CDATA[[EN] Tax]]></nl>
<no><![CDATA[[EN] Tax]]></no>
<pt><![CDATA[[EN] Tax]]></pt>
<ro><![CDATA[[EN] Tax]]></ro>
<sv><![CDATA[[EN] Tax]]></sv>
<tr><![CDATA[[EN] Tax]]></tr>
<vi><![CDATA[[EN] Tax]]></vi>
</text>
<text name="tax_rf_pda_lbl_accum">
<en><![CDATA[Accumulated bill]]></en>
<de><![CDATA[[EN] Accumulated bill]]></de>
<fr><![CDATA[[EN] Accumulated bill]]></fr>
<pl><![CDATA[[EN] Accumulated bill]]></pl>
<es><![CDATA[[EN] Accumulated bill]]></es>
<it><![CDATA[[EN] Accumulated bill]]></it>
<cz><![CDATA[[EN] Accumulated bill]]></cz>
<br><![CDATA[[EN] Accumulated bill]]></br>
<uk><![CDATA[[EN] Accumulated bill]]></uk>
<ru><![CDATA[[EN] Accumulated bill]]></ru>
<da><![CDATA[[EN] Accumulated bill]]></da>
<ct><![CDATA[[EN] Accumulated bill]]></ct>
<ea><![CDATA[[EN] Accumulated bill]]></ea>
<fc><![CDATA[[EN] Accumulated bill]]></fc>
<fi><![CDATA[[EN] Accumulated bill]]></fi>
<hu><![CDATA[[EN] Accumulated bill]]></hu>
<id><![CDATA[[EN] Accumulated bill]]></id>
<jp><![CDATA[[EN] Accumulated bill]]></jp>
<kr><![CDATA[[EN] Accumulated bill]]></kr>
<nl><![CDATA[[EN] Accumulated bill]]></nl>
<no><![CDATA[[EN] Accumulated bill]]></no>
<pt><![CDATA[[EN] Accumulated bill]]></pt>
<ro><![CDATA[[EN] Accumulated bill]]></ro>
<sv><![CDATA[[EN] Accumulated bill]]></sv>
<tr><![CDATA[[EN] Accumulated bill]]></tr>
<vi><![CDATA[[EN] Accumulated bill]]></vi>
</text>
<text name="tax_rf_pda_lbl_projected">
<en><![CDATA[Projected March payment]]></en>
<de><![CDATA[[EN] Projected March payment]]></de>
<fr><![CDATA[[EN] Projected March payment]]></fr>
<pl><![CDATA[[EN] Projected March payment]]></pl>
<es><![CDATA[[EN] Projected March payment]]></es>
<it><![CDATA[[EN] Projected March payment]]></it>
<cz><![CDATA[[EN] Projected March payment]]></cz>
<br><![CDATA[[EN] Projected March payment]]></br>
<uk><![CDATA[[EN] Projected March payment]]></uk>
<ru><![CDATA[[EN] Projected March payment]]></ru>
<da><![CDATA[[EN] Projected March payment]]></da>
<ct><![CDATA[[EN] Projected March payment]]></ct>
<ea><![CDATA[[EN] Projected March payment]]></ea>
<fc><![CDATA[[EN] Projected March payment]]></fc>
<fi><![CDATA[[EN] Projected March payment]]></fi>
<hu><![CDATA[[EN] Projected March payment]]></hu>
<id><![CDATA[[EN] Projected March payment]]></id>
<jp><![CDATA[[EN] Projected March payment]]></jp>
<kr><![CDATA[[EN] Projected March payment]]></kr>
<nl><![CDATA[[EN] Projected March payment]]></nl>
<no><![CDATA[[EN] Projected March payment]]></no>
<pt><![CDATA[[EN] Projected March payment]]></pt>
<ro><![CDATA[[EN] Projected March payment]]></ro>
<sv><![CDATA[[EN] Projected March payment]]></sv>
<tr><![CDATA[[EN] Projected March payment]]></tr>
<vi><![CDATA[[EN] Projected March payment]]></vi>
</text>
<text name="tax_rf_pda_lbl_pct">
<en><![CDATA[Percent of balance]]></en>
<de><![CDATA[[EN] Percent of balance]]></de>
<fr><![CDATA[[EN] Percent of balance]]></fr>
<pl><![CDATA[[EN] Percent of balance]]></pl>
<es><![CDATA[[EN] Percent of balance]]></es>
<it><![CDATA[[EN] Percent of balance]]></it>
<cz><![CDATA[[EN] Percent of balance]]></cz>
<br><![CDATA[[EN] Percent of balance]]></br>
<uk><![CDATA[[EN] Percent of balance]]></uk>
<ru><![CDATA[[EN] Percent of balance]]></ru>
<da><![CDATA[[EN] Percent of balance]]></da>
<ct><![CDATA[[EN] Percent of balance]]></ct>
<ea><![CDATA[[EN] Percent of balance]]></ea>
<fc><![CDATA[[EN] Percent of balance]]></fc>
<fi><![CDATA[[EN] Percent of balance]]></fi>
<hu><![CDATA[[EN] Percent of balance]]></hu>
<id><![CDATA[[EN] Percent of balance]]></id>
<jp><![CDATA[[EN] Percent of balance]]></jp>
<kr><![CDATA[[EN] Percent of balance]]></kr>
<nl><![CDATA[[EN] Percent of balance]]></nl>
<no><![CDATA[[EN] Percent of balance]]></no>
<pt><![CDATA[[EN] Percent of balance]]></pt>
<ro><![CDATA[[EN] Percent of balance]]></ro>
<sv><![CDATA[[EN] Percent of balance]]></sv>
<tr><![CDATA[[EN] Percent of balance]]></tr>
<vi><![CDATA[[EN] Percent of balance]]></vi>
</text>
<text name="tax_rf_pda_next_month">
<en><![CDATA[Next month!]]></en>
<de><![CDATA[[EN] Next month!]]></de>
<fr><![CDATA[[EN] Next month!]]></fr>
<pl><![CDATA[[EN] Next month!]]></pl>
<es><![CDATA[[EN] Next month!]]></es>
<it><![CDATA[[EN] Next month!]]></it>
<cz><![CDATA[[EN] Next month!]]></cz>
<br><![CDATA[[EN] Next month!]]></br>
<uk><![CDATA[[EN] Next month!]]></uk>
<ru><![CDATA[[EN] Next month!]]></ru>
<da><![CDATA[[EN] Next month!]]></da>
<ct><![CDATA[[EN] Next month!]]></ct>
<ea><![CDATA[[EN] Next month!]]></ea>
<fc><![CDATA[[EN] Next month!]]></fc>
<fi><![CDATA[[EN] Next month!]]></fi>
<hu><![CDATA[[EN] Next month!]]></hu>
<id><![CDATA[[EN] Next month!]]></id>
<jp><![CDATA[[EN] Next month!]]></jp>
<kr><![CDATA[[EN] Next month!]]></kr>
<nl><![CDATA[[EN] Next month!]]></nl>
<no><![CDATA[[EN] Next month!]]></no>
<pt><![CDATA[[EN] Next month!]]></pt>
<ro><![CDATA[[EN] Next month!]]></ro>
<sv><![CDATA[[EN] Next month!]]></sv>
<tr><![CDATA[[EN] Next month!]]></tr>
<vi><![CDATA[[EN] Next month!]]></vi>
</text>
<text name="tax_rf_pda_next_pay">
<en><![CDATA[Next: Tax payment]]></en>
<de><![CDATA[[EN] Next: Tax payment]]></de>
<fr><![CDATA[[EN] Next: Tax payment]]></fr>
<pl><![CDATA[[EN] Next: Tax payment]]></pl>
<es><![CDATA[[EN] Next: Tax payment]]></es>
<it><![CDATA[[EN] Next: Tax payment]]></it>
<cz><![CDATA[[EN] Next: Tax payment]]></cz>
<br><![CDATA[[EN] Next: Tax payment]]></br>
<uk><![CDATA[[EN] Next: Tax payment]]></uk>
<ru><![CDATA[[EN] Next: Tax payment]]></ru>
<da><![CDATA[[EN] Next: Tax payment]]></da>
<ct><![CDATA[[EN] Next: Tax payment]]></ct>
<ea><![CDATA[[EN] Next: Tax payment]]></ea>
<fc><![CDATA[[EN] Next: Tax payment]]></fc>
<fi><![CDATA[[EN] Next: Tax payment]]></fi>
<hu><![CDATA[[EN] Next: Tax payment]]></hu>
<id><![CDATA[[EN] Next: Tax payment]]></id>
<jp><![CDATA[[EN] Next: Tax payment]]></jp>
<kr><![CDATA[[EN] Next: Tax payment]]></kr>
<nl><![CDATA[[EN] Next: Tax payment]]></nl>
<no><![CDATA[[EN] Next: Tax payment]]></no>
<pt><![CDATA[[EN] Next: Tax payment]]></pt>
<ro><![CDATA[[EN] Next: Tax payment]]></ro>
<sv><![CDATA[[EN] Next: Tax payment]]></sv>
<tr><![CDATA[[EN] Next: Tax payment]]></tr>
<vi><![CDATA[[EN] Next: Tax payment]]></vi>
</text>
<text name="tax_rf_pda_next_adv">
<en><![CDATA[Next: Advisory]]></en>
<de><![CDATA[[EN] Next: Advisory]]></de>
<fr><![CDATA[[EN] Next: Advisory]]></fr>
<pl><![CDATA[[EN] Next: Advisory]]></pl>
<es><![CDATA[[EN] Next: Advisory]]></es>
<it><![CDATA[[EN] Next: Advisory]]></it>
<cz><![CDATA[[EN] Next: Advisory]]></cz>
<br><![CDATA[[EN] Next: Advisory]]></br>
<uk><![CDATA[[EN] Next: Advisory]]></uk>
<ru><![CDATA[[EN] Next: Advisory]]></ru>
<da><![CDATA[[EN] Next: Advisory]]></da>
<ct><![CDATA[[EN] Next: Advisory]]></ct>
<ea><![CDATA[[EN] Next: Advisory]]></ea>
<fc><![CDATA[[EN] Next: Advisory]]></fc>
<fi><![CDATA[[EN] Next: Advisory]]></fi>
<hu><![CDATA[[EN] Next: Advisory]]></hu>
<id><![CDATA[[EN] Next: Advisory]]></id>
<jp><![CDATA[[EN] Next: Advisory]]></jp>
<kr><![CDATA[[EN] Next: Advisory]]></kr>
<nl><![CDATA[[EN] Next: Advisory]]></nl>
<no><![CDATA[[EN] Next: Advisory]]></no>
<pt><![CDATA[[EN] Next: Advisory]]></pt>
<ro><![CDATA[[EN] Next: Advisory]]></ro>
<sv><![CDATA[[EN] Next: Advisory]]></sv>
<tr><![CDATA[[EN] Next: Advisory]]></tr>
<vi><![CDATA[[EN] Next: Advisory]]></vi>
</text>
<text name="tax_rf_pda_lbl_paid">
<en><![CDATA[Lifetime paid]]></en>
<de><![CDATA[[EN] Lifetime paid]]></de>
<fr><![CDATA[[EN] Lifetime paid]]></fr>
<pl><![CDATA[[EN] Lifetime paid]]></pl>
<es><![CDATA[[EN] Lifetime paid]]></es>
<it><![CDATA[[EN] Lifetime paid]]></it>
<cz><![CDATA[[EN] Lifetime paid]]></cz>
<br><![CDATA[[EN] Lifetime paid]]></br>
<uk><![CDATA[[EN] Lifetime paid]]></uk>
<ru><![CDATA[[EN] Lifetime paid]]></ru>
<da><![CDATA[[EN] Lifetime paid]]></da>
<ct><![CDATA[[EN] Lifetime paid]]></ct>
<ea><![CDATA[[EN] Lifetime paid]]></ea>
<fc><![CDATA[[EN] Lifetime paid]]></fc>
<fi><![CDATA[[EN] Lifetime paid]]></fi>
<hu><![CDATA[[EN] Lifetime paid]]></hu>
<id><![CDATA[[EN] Lifetime paid]]></id>
<jp><![CDATA[[EN] Lifetime paid]]></jp>
<kr><![CDATA[[EN] Lifetime paid]]></kr>
<nl><![CDATA[[EN] Lifetime paid]]></nl>
<no><![CDATA[[EN] Lifetime paid]]></no>
<pt><![CDATA[[EN] Lifetime paid]]></pt>
<ro><![CDATA[[EN] Lifetime paid]]></ro>
<sv><![CDATA[[EN] Lifetime paid]]></sv>
<tr><![CDATA[[EN] Lifetime paid]]></tr>
<vi><![CDATA[[EN] Lifetime paid]]></vi>
</text>
<text name="tax_rf_pda_blurb">
<en><![CDATA[Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></en>
<de><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></de>
<fr><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></fr>
<pl><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></pl>
<es><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></es>
<it><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></it>
<cz><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></cz>
<br><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></br>
<uk><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></uk>
<ru><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></ru>
<da><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></da>
<ct><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></ct>
<ea><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></ea>
<fc><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></fc>
<fi><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></fi>
<hu><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></hu>
<id><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></id>
<jp><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></jp>
<kr><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></kr>
<nl><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></nl>
<no><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></no>
<pt><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></pt>
<ro><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></ro>
<sv><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></sv>
<tr><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></tr>
<vi><![CDATA[[EN] Tax posture glance: on/off, bill, March, balance share, countdown, lifetime paid, ledger summary.]]></vi>
</text>
<text name="tax_rf_pda_hint_rates">
<en><![CDATA[Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></en>
<de><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></de>
<fr><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></fr>
<pl><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></pl>
<es><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></es>
<it><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></it>
<cz><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></cz>
<br><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></br>
<uk><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></uk>
<ru><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></ru>
<da><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></da>
<ct><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></ct>
<ea><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></ea>
<fc><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></fc>
<fi><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></fi>
<hu><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></hu>
<id><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></id>
<jp><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></jp>
<kr><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></kr>
<nl><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></nl>
<no><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></no>
<pt><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></pt>
<ro><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></ro>
<sv><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></sv>
<tr><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></tr>
<vi><![CDATA[[EN] Daily rate: %s (%.0f%%) · March rate: %.0f%% · Min balance: %s]]></vi>
</text>
<text name="tax_rf_pda_lbl_min_balance">
<en><![CDATA[Min balance]]></en>
<de><![CDATA[[EN] Min balance]]></de>
<fr><![CDATA[[EN] Min balance]]></fr>
<pl><![CDATA[[EN] Min balance]]></pl>
<es><![CDATA[[EN] Min balance]]></es>
<it><![CDATA[[EN] Min balance]]></it>
<cz><![CDATA[[EN] Min balance]]></cz>
<br><![CDATA[[EN] Min balance]]></br>
<uk><![CDATA[[EN] Min balance]]></uk>
<ru><![CDATA[[EN] Min balance]]></ru>
<da><![CDATA[[EN] Min balance]]></da>
<ct><![CDATA[[EN] Min balance]]></ct>
<ea><![CDATA[[EN] Min balance]]></ea>
<fc><![CDATA[[EN] Min balance]]></fc>
<fi><![CDATA[[EN] Min balance]]></fi>
<hu><![CDATA[[EN] Min balance]]></hu>
<id><![CDATA[[EN] Min balance]]></id>
<jp><![CDATA[[EN] Min balance]]></jp>
<kr><![CDATA[[EN] Min balance]]></kr>
<nl><![CDATA[[EN] Min balance]]></nl>
<no><![CDATA[[EN] Min balance]]></no>
<pt><![CDATA[[EN] Min balance]]></pt>
<ro><![CDATA[[EN] Min balance]]></ro>
<sv><![CDATA[[EN] Min balance]]></sv>
<tr><![CDATA[[EN] Min balance]]></tr>
<vi><![CDATA[[EN] Min balance]]></vi>
</text>
<text name="tax_rf_pda_lbl_annual_rate">
<en><![CDATA[March rate]]></en>
<de><![CDATA[[EN] March rate]]></de>
<fr><![CDATA[[EN] March rate]]></fr>
<pl><![CDATA[[EN] March rate]]></pl>
<es><![CDATA[[EN] March rate]]></es>
<it><![CDATA[[EN] March rate]]></it>
<cz><![CDATA[[EN] March rate]]></cz>
<br><![CDATA[[EN] March rate]]></br>
<uk><![CDATA[[EN] March rate]]></uk>
<ru><![CDATA[[EN] March rate]]></ru>
<da><![CDATA[[EN] March rate]]></da>
<ct><![CDATA[[EN] March rate]]></ct>
<ea><![CDATA[[EN] March rate]]></ea>
<fc><![CDATA[[EN] March rate]]></fc>
<fi><![CDATA[[EN] March rate]]></fi>
<hu><![CDATA[[EN] March rate]]></hu>
<id><![CDATA[[EN] March rate]]></id>
<jp><![CDATA[[EN] March rate]]></jp>
<kr><![CDATA[[EN] March rate]]></kr>
<nl><![CDATA[[EN] March rate]]></nl>
<no><![CDATA[[EN] March rate]]></no>
<pt><![CDATA[[EN] March rate]]></pt>
<ro><![CDATA[[EN] March rate]]></ro>
<sv><![CDATA[[EN] March rate]]></sv>
<tr><![CDATA[[EN] March rate]]></tr>
<vi><![CDATA[[EN] March rate]]></vi>
</text>
<text name="tax_rf_pda_lbl_daily_rate">
<en><![CDATA[Daily rate]]></en>
<de><![CDATA[[EN] Daily rate]]></de>
<fr><![CDATA[[EN] Daily rate]]></fr>
<pl><![CDATA[[EN] Daily rate]]></pl>
<es><![CDATA[[EN] Daily rate]]></es>
<it><![CDATA[[EN] Daily rate]]></it>
<cz><![CDATA[[EN] Daily rate]]></cz>
<br><![CDATA[[EN] Daily rate]]></br>
<uk><![CDATA[[EN] Daily rate]]></uk>
<ru><![CDATA[[EN] Daily rate]]></ru>
<da><![CDATA[[EN] Daily rate]]></da>
<ct><![CDATA[[EN] Daily rate]]></ct>
<ea><![CDATA[[EN] Daily rate]]></ea>
<fc><![CDATA[[EN] Daily rate]]></fc>
<fi><![CDATA[[EN] Daily rate]]></fi>
<hu><![CDATA[[EN] Daily rate]]></hu>
<id><![CDATA[[EN] Daily rate]]></id>
<jp><![CDATA[[EN] Daily rate]]></jp>
<kr><![CDATA[[EN] Daily rate]]></kr>
<nl><![CDATA[[EN] Daily rate]]></nl>
<no><![CDATA[[EN] Daily rate]]></no>
<pt><![CDATA[[EN] Daily rate]]></pt>
<ro><![CDATA[[EN] Daily rate]]></ro>
<sv><![CDATA[[EN] Daily rate]]></sv>
<tr><![CDATA[[EN] Daily rate]]></tr>
<vi><![CDATA[[EN] Daily rate]]></vi>
</text>
<text name="tax_rf_pda_lbl_days">
<en><![CDATA[Days taxed]]></en>
<de><![CDATA[[EN] Days taxed]]></de>
<fr><![CDATA[[EN] Days taxed]]></fr>
<pl><![CDATA[[EN] Days taxed]]></pl>
<es><![CDATA[[EN] Days taxed]]></es>
<it><![CDATA[[EN] Days taxed]]></it>
<cz><![CDATA[[EN] Days taxed]]></cz>
<br><![CDATA[[EN] Days taxed]]></br>
<uk><![CDATA[[EN] Days taxed]]></uk>
<ru><![CDATA[[EN] Days taxed]]></ru>
<da><![CDATA[[EN] Days taxed]]></da>
<ct><![CDATA[[EN] Days taxed]]></ct>
<ea><![CDATA[[EN] Days taxed]]></ea>
<fc><![CDATA[[EN] Days taxed]]></fc>
<fi><![CDATA[[EN] Days taxed]]></fi>
<hu><![CDATA[[EN] Days taxed]]></hu>
<id><![CDATA[[EN] Days taxed]]></id>
<jp><![CDATA[[EN] Days taxed]]></jp>
<kr><![CDATA[[EN] Days taxed]]></kr>
<nl><![CDATA[[EN] Days taxed]]></nl>
<no><![CDATA[[EN] Days taxed]]></no>
<pt><![CDATA[[EN] Days taxed]]></pt>
<ro><![CDATA[[EN] Days taxed]]></ro>
<sv><![CDATA[[EN] Days taxed]]></sv>
<tr><![CDATA[[EN] Days taxed]]></tr>
<vi><![CDATA[[EN] Days taxed]]></vi>
</text>
<text name="tax_rf_pda_ledger_pair">
<en><![CDATA[+{credit} / -{debit}]]></en>
<de><![CDATA[[EN] +{credit} / -{debit}]]></de>
<fr><![CDATA[[EN] +{credit} / -{debit}]]></fr>
<pl><![CDATA[[EN] +{credit} / -{debit}]]></pl>
<es><![CDATA[[EN] +{credit} / -{debit}]]></es>
<it><![CDATA[[EN] +{credit} / -{debit}]]></it>
<cz><![CDATA[[EN] +{credit} / -{debit}]]></cz>
<br><![CDATA[[EN] +{credit} / -{debit}]]></br>
<uk><![CDATA[[EN] +{credit} / -{debit}]]></uk>
<ru><![CDATA[[EN] +{credit} / -{debit}]]></ru>
<da><![CDATA[[EN] +{credit} / -{debit}]]></da>
<ct><![CDATA[[EN] +{credit} / -{debit}]]></ct>
<ea><![CDATA[[EN] +{credit} / -{debit}]]></ea>
<fc><![CDATA[[EN] +{credit} / -{debit}]]></fc>
<fi><![CDATA[[EN] +{credit} / -{debit}]]></fi>
<hu><![CDATA[[EN] +{credit} / -{debit}]]></hu>
<id><![CDATA[[EN] +{credit} / -{debit}]]></id>
<jp><![CDATA[[EN] +{credit} / -{debit}]]></jp>
<kr><![CDATA[[EN] +{credit} / -{debit}]]></kr>
<nl><![CDATA[[EN] +{credit} / -{debit}]]></nl>
<no><![CDATA[[EN] +{credit} / -{debit}]]></no>
<pt><![CDATA[[EN] +{credit} / -{debit}]]></pt>
<ro><![CDATA[[EN] +{credit} / -{debit}]]></ro>
<sv><![CDATA[[EN] +{credit} / -{debit}]]></sv>
<tr><![CDATA[[EN] +{credit} / -{debit}]]></tr>
<vi><![CDATA[[EN] +{credit} / -{debit}]]></vi>
</text>
<text name="tax_rf_pda_ledger_none">
<en><![CDATA[none yet]]></en>
<de><![CDATA[[EN] none yet]]></de>
<fr><![CDATA[[EN] none yet]]></fr>
<pl><![CDATA[[EN] none yet]]></pl>
<es><![CDATA[[EN] none yet]]></es>
<it><![CDATA[[EN] none yet]]></it>
<cz><![CDATA[[EN] none yet]]></cz>
<br><![CDATA[[EN] none yet]]></br>
<uk><![CDATA[[EN] none yet]]></uk>