-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy path_automated_translation.json
More file actions
4530 lines (4530 loc) · 126 KB
/
_automated_translation.json
File metadata and controls
4530 lines (4530 loc) · 126 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
{
"_meta": {
"purpose": "Complete context tracking for all translatable strings",
"format": "Each key has: context (where/how it's used), file (where in code), page (UI location), component (UI element), meaning (what it means to users), notes (translation notes), status",
"status_values": {
"pending": "Context not yet verified - needs research",
"verified": "Context researched and documented",
"skip": "Should not be translated (brand names, technical terms, or intentionally English)"
},
"last_updated": "2026-05-17",
"total_keys": 456
},
"keys": {
" and all its records, wallets and recurrent patterns?": {
"key": " and all its records, wallets and recurrent patterns?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"%s Wallets": {
"key": "%s Wallets",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"%s selected": {
"key": "%s selected",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"1 ${_selectedCurrency ?? '[currency]'} =": {
"key": "1 ${_selectedCurrency ?? '[currency]'} =",
"context": "Currency conversion ratio input label",
"file": "lib/settings/add-currency-page.dart:201",
"page": "Settings > Add Custom Currency",
"component": "TextFormField label",
"meaning": "Input field for entering conversion ratio (e.g., '1 EUR = [amount] USD')",
"notes": "Universal/technical term - keep in English across all locales",
"status": "skip"
},
"Add Currency": {
"key": "Add Currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add Custom Currency": {
"key": "Add Custom Currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add a new category": {
"key": "Add a new category",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add a new record": {
"key": "Add a new record",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add a note": {
"key": "Add a note",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add currency": {
"key": "Add currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add expense": {
"key": "Add expense",
"context": "Quick action shortcut label for adding a new expense record directly from the device home screen",
"file": "lib/main.dart",
"page": "Home screen quick action (platform-level)",
"component": "ShortcutItem localizedTitle",
"meaning": "A quick action button on the device home screen that opens the app to add a new expense",
"notes": "Short text for a home screen quick action icon. Keep concise.",
"status": "verified"
},
"Add income": {
"key": "Add income",
"context": "Quick action shortcut label for adding a new income record directly from the device home screen",
"file": "lib/main.dart",
"page": "Home screen quick action (platform-level)",
"component": "ShortcutItem localizedTitle",
"meaning": "A quick action button on the device home screen that opens the app to add a new income",
"notes": "Short text for a home screen quick action icon. Keep concise.",
"status": "verified"
},
"Add recurrent expenses": {
"key": "Add recurrent expenses",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add selected tags (%s)": {
"key": "Add selected tags (%s)",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add space between symbol and amount": {
"key": "Add space between symbol and amount",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add tags": {
"key": "Add tags",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add time": {
"key": "Add time",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add wallet": {
"key": "Add wallet",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Add your missing currency": {
"key": "Add your missing currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Additional Settings": {
"key": "Additional Settings",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All": {
"key": "All",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All accounts": {
"key": "All accounts",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All categories": {
"key": "All categories",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All records": {
"key": "All records",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All tags": {
"key": "All tags",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"All the data has been deleted": {
"key": "All the data has been deleted",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Already predefined for app start": {
"key": "Already predefined for app start",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Already predefined for new records": {
"key": "Already predefined for new records",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Amount": {
"key": "Amount",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Amount (Ascending)": {
"key": "Amount (Ascending)",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Amount (Descending)": {
"key": "Amount (Descending)",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Amount input keyboard type": {
"key": "Amount input keyboard type",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Amount, Category, and Date/Time columns are required. No records will be imported without them.": {
"context": "Warning banner on CSV mapping screen when required columns are not mapped",
"file": "lib/settings/csv_import/csv_mapping_screen.dart:654",
"page": "Settings > Import from CSV > Map Columns",
"component": "Warning banner",
"meaning": "Amount, Category, and Date/Time are the three minimum required columns for import",
"notes": "Keep technical terms Amount, Category, Date/Time consistent with field labels",
"status": "verified"
},
"App protected by PIN or biometric check": {
"key": "App protected by PIN or biometric check",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Appearance": {
"key": "Appearance",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Apply": {
"key": "Apply",
"context": "Action button to apply changes",
"file": "lib/wallets/wallets-tab-page.dart, lib/categories/categories-tab-page-*.dart",
"page": "Sort dialogs (Wallets, Categories)",
"component": "Button",
"meaning": "Confirm and apply sorting preference change",
"notes": "User clicks Apply to save their sort choice, not apply immediately",
"status": "verified"
},
"Apply Filters": {
"key": "Apply Filters",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Archive": {
"key": "Archive",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Archived": {
"key": "Archived",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Archived Categories": {
"key": "Archived Categories",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Archiving the category you will NOT remove the associated records": {
"key": "Archiving the category you will NOT remove the associated records",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Are you sure you want to delete %s record(s)?": {
"key": "Are you sure you want to delete %s record(s)?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Are you sure you want to delete these %s tags?": {
"key": "Are you sure you want to delete these %s tags?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Are you sure you want to delete this tag?": {
"key": "Are you sure you want to delete this tag?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Assign %s to all wallets that have no currency set?": {
"key": "Assign %s to all wallets that have no currency set?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Assign Currency": {
"key": "Assign Currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Authenticate to access the app": {
"key": "Authenticate to access the app",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Auto decimal input": {
"key": "Auto decimal input",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Automatic backup retention": {
"key": "Automatic backup retention",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Available Tags": {
"key": "Available Tags",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Available on Oinkoin Pro": {
"key": "Available on Oinkoin Pro",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Average": {
"key": "Average",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Average of %s": {
"key": "Average of %s",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Average of %s a day": {
"key": "Average of %s a day",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Average of %s a month": {
"key": "Average of %s a month",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Average of %s a year": {
"key": "Average of %s a year",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Backup": {
"key": "Backup",
"context": "Settings menu item for backup functionality",
"file": "lib/settings/settings-page.dart:267",
"page": "Settings",
"component": "Menu item title",
"meaning": "Access backup and restore features",
"notes": "Menu option for data backup/restore",
"status": "verified"
},
"Backup encryption": {
"key": "Backup encryption",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Backup/Restore the application data": {
"key": "Backup/Restore the application data",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Balance": {
"key": "Balance",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"CSV Preview": {
"context": "Section header showing a preview of parsed CSV data before mapping",
"file": "lib/settings/csv_import/csv_import_page.dart",
"page": "Settings > Import from CSV",
"component": "Card section header",
"meaning": "Preview of CSV file contents (first few rows in a table)",
"notes": "CSV is a technical term — keep as-is in most languages",
"status": "verified"
},
"Can't decrypt without a password": {
"key": "Can't decrypt without a password",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Cancel": {
"key": "Cancel",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Cannot remove %s: there are wallets using this currency.": {
"key": "Cannot remove %s: there are wallets using this currency.",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Cannot remove the main currency. Change it first.": {
"key": "Cannot remove the main currency. Change it first.",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Categories": {
"key": "Categories",
"context": "Navigation tab and page label",
"file": "lib/shell.dart:256, lib/categories/categories-tab-page-edit.dart:31",
"page": "Multiple (Navigation, Categories page)",
"component": "Tab label, page title",
"meaning": "Expense/income categories list",
"notes": "Main navigation tab and page title",
"status": "verified"
},
"Categories vs Tags": {
"key": "Categories vs Tags",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Category name": {
"key": "Category name",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Change": {
"key": "Change",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Change Currency": {
"key": "Change Currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Changing the currency does not convert existing record amounts. Are you sure?": {
"key": "Changing the currency does not convert existing record amounts. Are you sure?",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Choose a color": {
"key": "Choose a color",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Choose the main currency": {
"key": "Choose the main currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Choose wallet": {
"key": "Choose wallet",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Clear All Filters": {
"key": "Clear All Filters",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!": {
"key": "Clicking the button below you can send us a feedback email. Your feedback is very appreciated and will help us to grow!",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Clipboard is empty or does not contain valid CSV": {
"context": "Error shown when user taps 'Paste from Clipboard' but clipboard is empty or unparseable",
"file": "lib/settings/csv_import/csv_import_page.dart",
"page": "Settings > Import from CSV",
"component": "Error message in container",
"meaning": "No usable CSV content found in system clipboard",
"notes": "Keep CSV as-is in translations",
"status": "verified"
},
"Code (e.g., MYC)": {
"key": "Code (e.g., MYC)",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Color": {
"key": "Color",
"context": "Color picker section label",
"file": "lib/components/icon_color_picker_section.dart:442",
"page": "Customization",
"component": "Expansion tile title",
"meaning": "Select color for category/wallet/tag",
"notes": "Label for color selection UI",
"status": "verified"
},
"Colorize income and expenses": {
"key": "Colorize income and expenses",
"context": "Toggle label in Settings > Customization > Appearance section",
"file": "lib/settings/customization-page.dart",
"page": "Settings > Customization",
"component": "SwitchCustomizationItem title",
"meaning": "Enable/disable coloring of income amounts in green and expense amounts in red throughout the app",
"notes": "Keep translation concise; refers to financial transaction types, not literal colors in the text",
"status": "verified"
},
"Colors": {
"key": "Colors",
"context": "Settings menu item for color customization",
"file": "lib/settings/customization-page.dart:340",
"page": "Settings > Customization",
"component": "Menu item title",
"meaning": "Manage custom colors for categories/wallets",
"notes": "Customization settings section",
"status": "verified"
},
"Continue": {
"context": "Button label to proceed from mapping screen to import summary",
"file": "lib/settings/csv_import/csv_mapping_screen.dart",
"page": "Settings > Import from CSV > Map Columns",
"component": "FilledButton",
"meaning": "Proceed to next step in the import flow",
"notes": "Common navigation term — use standard mobile app convention",
"status": "verified"
},
"Continue to Mapping": {
"context": "Button label to proceed from CSV preview to column mapping screen",
"file": "lib/settings/csv_import/csv_import_page.dart",
"page": "Settings > Import from CSV",
"component": "FilledButton",
"meaning": "Proceed to map CSV columns to Oinkoin fields",
"notes": "Clear action label",
"status": "verified"
},
"Conversion Rates": {
"key": "Conversion Rates",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Conversion Ratio": {
"key": "Conversion Ratio",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Could not parse CSV": {
"context": "Error message when CSV file content cannot be parsed",
"file": "lib/settings/csv_import/csv_import_page.dart",
"page": "Settings > Import from CSV",
"component": "Error message",
"meaning": "CSV content is malformed or uses unsupported format",
"notes": "Generic error — keep CSV as-is",
"status": "verified"
},
"Create backup and change settings": {
"key": "Create backup and change settings",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Create wallets": {
"context": "Premium feature - ability to create and manage multiple wallets",
"file": "lib/premium/splash-screen.dart:210",
"page": "Premium/Upgrade Screen",
"component": "Feature list bullet point",
"meaning": "Users can create new wallet accounts to organize finances",
"notes": "Part of premium feature promotion",
"status": "verified"
},
"Critical action": {
"key": "Critical action",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currencies": {
"key": "Currencies",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency": {
"key": "Currency",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency Breakdown": {
"key": "Currency Breakdown",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency Code": {
"key": "Currency Code",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency Name": {
"key": "Currency Name",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency symbol position": {
"key": "Currency symbol position",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Currency symbol spacing": {
"key": "Currency symbol spacing",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Custom order": {
"key": "Custom order",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Custom starting day of the month": {
"key": "Custom starting day of the month",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"Customization": {
"key": "Customization",
"context": null,
"file": null,
"page": null,
"component": null,
"meaning": null,
"notes": null,
"status": "pending"
},
"DOWNLOAD IT NOW!": {
"key": "DOWNLOAD IT NOW!",
"context": null,
"file": null,