e62rs 1.5.0

An in-terminal E621/926 browser.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
//! ui menus
pub mod blacklist;
pub mod download;
pub mod explore;
pub mod reorganize;
pub mod search;
pub mod view;

#[derive(Default)]
/// stats for translation progress on a language
pub struct TranslationStats {
    /// the number of labels translated for a language
    pub labels_translated: usize,
    /// the number of descriptions translated for a language
    pub descriptions_translated: usize,
    /// the total number of variants
    pub total_variants: usize,
}

crate::menu! {
    /// Interact with a local post in the explorer
    pub LocalPostInteractionMenu {
        filterable: true,

        /// Make a QR to the posts E621 URL
        MakeQR => {
            label: {
                english => "Make QR",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Make a QR code based on the post ID",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// View the posts image in your terminal
        ViewInTerminal => {
            label: {
                english => "View in terminal",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Display the post image in your terminal via SIXEL",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// Open the post in your terminal
        OpenInBrowser => {
            label: {
                english => "Open in browser",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Open the post in e621 on your browser",
                japanese => "",
                spanish => ""
            },

            online: false
        },

        /// Show the post in your file manager
        OpenFileLocation => {
            label: {
                english => "Open file location",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Reveal in your file manager",
                japanese => "",
                spanish => ""
            },

            online: false
        },

        /// Print the full post metadata to your terminal
        ShowFullMetadata => {
            label: {
                english => "Show the full post metadata",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Print full metadata as formatted JSON",
                japanese => "",
                spanish => ""
            },

            online: false
        },

        /// Go back
        Back => {
            label: {
                english => "Go back to the download list",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Return to the post downloads list",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// Reorganization conflict resolution menu
    pub ConflictMenu {
        filterable: true,

        /// Skip existing files
        Skip => {
            label: {
                english => "Skip existing",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Don't reorganize a file if its destination exists",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// Overwrite existing files
        Overwrite => {
            label: {
                english => "Overwrite existing",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Overwrite the destination path when reorganizing",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// Auto-rename duplicates
        AutoRename => {
            label: {
                english => "Auto-rename duplicates",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Rename duplicate files when reorganizing",
                japanese => "",
                spanish => ""
            },
            online: false
        },
    }
}

crate::menu! {
    /// Configuration menu
    pub ConfigMenu {
        filterable: true,

        /// Edit the current configuration file
        Edit => {
            label: {
                english => "Edit",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Edit your config file",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// Reload the config file
        Reload => {
            label: {
                english => "Reload",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Reload your config file",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// Go back
        Back => {
            label: {
                english => "Go back to main menu",
                japanese => "",
                spanish => "Volver al menú principal"
            },
            desc: {
                english => "Return to the main menu",
                japanese => "",
                spanish => "Volver al menú principal"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Post interaction menu
    pub InteractionMenu {  filterable: true,
        /// Open the post in a browser
        OpenInBrowser => {
            label: {
                english => "Open in browser",
                japanese => "",
                spanish => "Abrir en el navegador"
            },
            desc: {
                english => "Open the post in your browser at the e621 website",
                japanese => "e621のウェでブサイトで",
                spanish => "Abre la publicación en tu navegador en e621 welfare q"
            },
            online: true
        },
        /// Download the post
        Download => {
            label: {
                english => "Download",
                japanese => "",
                spanish => "Descargar"
            },
            desc: {
                english => "Download the post to your downloads folder",
                japanese => "",
                spanish => "Descarga la publicación en tu carpeta de descargas"
            },
            online: true
        },
        /// Make a QR code of the post
        MakeQr => {
            label: {
                english => "Make QR code",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Make a QR code that you can scan to go to the post at e621",
                japanese => "",
                spanish => ""
            },
            online: true
        },
        /// View the post in your terminal
        View => {
            label: {
                english => "View in terminal",
                japanese => "",
                spanish => "Ver en terminal"
            },
            desc: {
                english => "Display the post image in your terminal via SIXEL",
                japanese => "",
                spanish => "Muestra la imagen de la publicación en tu terminal mediante SIXEL"
            },
            online: true
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to search",
                japanese => "",
                spanish => "Volver a la búsqueda"
            },
            desc: {
                english => "Go back to the search menu",
                japanese => "",
                spanish => "Volver al menú de búsqueda"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Pool interaction menu
    pub PoolInteractionMenu { filterable: true,
        /// View posts from this pool
        ViewPosts => {
            label: {
                english => "View posts from this pool",
                japanese => "",
                spanish => "Ver publicaciones de este grupo"
            },
            desc: {
                english => "Browse and interact with all posts contained in this pool",
                japanese => "",
                spanish => "Explora e interactúa con todas las publicaciones contenidas en este grupo"
            },
            online: true
        },
        /// Download all posts from this pool
        Download => {
            label: {
                english => "Download all posts from this pool",
                japanese => "",
                spanish => "Descargar todas las publicaciones de este grupo"
            },
            desc: {
                english => "Download all posts from this pool to your downloads folder",
                japanese => "",
                spanish => "Descarga todas las publicaciones de este grupo a tu carpeta de descargas"
            },
            online: true
        },
        /// Download pool to dedicated pools folder
        DownloadToPoolsFolder => {
            label: {
                english => "Download to pools dir",
                japanese => "",
                spanish => "Descargar al directorio de grupos"
            },
            desc: {
                english => "Download the entire pool to your dedicated pools folder with metadata",
                japanese => "",
                spanish => "Descargar todo el grupo a tu directorio de grupos dedicado con metadatos"
            },
            online: true
        },
        /// Create BBF file from pool
        CreateBBF => {
            label: {
                english => "Create BBF file from pool",
                japanese => "",
                spanish => "Crear archivo BBF del grupo"
            },
            desc: {
                english => "Download and package pool into Bound Book Format (.bbf) file",
                japanese => "",
                spanish => "Descargar y empaquetar grupo en formato Bound Book (.bbf)"
            },
            online: true
        },
        /// Open the pool in e621
        OpenInBrowser => {
            label: {
                english => "Open pool page in browser",
                japanese => "",
                spanish => "Abrir la página del grupo en el navegador"
            },
            desc: {
                english => "Open the pool page in your browser at the e621 website",
                japanese => "",
                spanish => "Abre la página del grupo en tu navegador en el sitio web e621"
            },
            online: true
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to pool search",
                japanese => "",
                spanish => "Volver a la búsqueda por grupos"
            },
            desc: {
                english => "Return to the pool search menu",
                japanese => "",
                spanish => "Volver al menú de búsqueda de grupos"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Batch post interaction
    pub BatchAction {
        filterable: true,

        /// Download all selected
        DownloadAll => {
            label: {
                english => "Download all selected posts",
                japanese => "",
                spanish => "Descargar todos las publicaciones seleccionadas"
            },
            desc: {
                english => "Download all currently selected posts to your downloads folder",
                japanese => "",
                spanish => "Descarga todas las publicaciones seleccionadas actualmente a tu carpeta de descargas"
            },
            online: true
        },
        /// Open all selected in browser
        Browser => {
            label: {
                english => "Open all selected posts in browser",
                japanese => "",
                spanish => "Abrir todas las publicaciones seleccionadas en el navegador"
            },
            desc: {
                english => "Open all selected posts in your default web browser",
                japanese => "",
                spanish => "Abre todas las publicaciones seleccionadas en tu navegador web predeterminado"
            },
            online: true
        },
        /// Download and open all selected posts
        DlAndOpen => {
            label: {
                english => "Download + open all selected posts",
                japanese => "",
                spanish => "Descargar y abrir todas las publicaciones seleccionadas"
            },
            desc: {
                english => "Download all selected posts and then open them in your browser",
                japanese => "",
                spanish => "Descarga todas las publicaciones seleccionadas y luego ábrelas en tu navegador"
            },
            online: true
        },
        /// View all posts in terminal
        ViewAll => {
            label: {
                english => "View all post images in terminal",
                japanese => "",
                spanish => "Ver todas las imágenes en terminal"
            },
            desc: {
                english => "Display all selected post images in your terminal via SIXEL",
                japanese => "",
                spanish => "Muestra todos las imágenes de publicaciones seleccionadas en tu terminal mediante SIXEL"
            },
            online: true
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to search",
                japanese => "",
                spanish => "Volver a la búsqueda"
            },
            desc: {
                english => "Return to the search results menu",
                japanese => "",
                spanish => "Volver al menú de resultados de búsqueda"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Advanced pool search
    pub AdvPoolSearch {
        filterable: true,

        /// Search pools by name
        ByName => {
            label: {
                english => "Search by name",
                japanese => "",
                spanish => "Buscar por nombre"
            },
            desc: {
                english => "Search for pools by their name or title",
                japanese => "",
                spanish => "Busca grupos por su nombre o título"
            },
            online: true
        },
        /// Search pools by description
        ByDesc => {
            label: {
                english => "Search by description",
                japanese => "",
                spanish => "Buscar por descripción"
            },
            desc: {
                english => "Search for pools by keywords in their description",
                japanese => "",
                spanish => "Busca grupos por palabras clave en su descripción"
            },
            online: true
        },
        /// Search pools by creator
        ByCreator => {
            label: {
                english => "Search by creator",
                japanese => "",
                spanish => "Busca por creador"
            },
            desc: {
                english => "Search for pools by the username of their creator",
                japanese => "",
                spanish => "Busca grupos por el nombre de usuario de su creador"
            },
            online: true
        },
        /// Browse the latest pools
        BrowseLatest => {
            label: {
                english => "Browse latest pools",
                japanese => "",
                spanish => "Explorar grupos recientes"
            },
            desc: {
                english => "Browse the most recently created or updated pools",
                japanese => "",
                spanish => "Explora los grupos creados o actualizados más recientemente"
            },
            online: true
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to main menu",
                japanese => "",
                spanish => "Volver al menú principal"
            },
            desc: {
                english => "Return to the main menu",
                japanese => "",
                spanish => "Volver al menú principal"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Blacklist manager
    pub BlacklistManager {
        filterable: true,

        /// Show current blacklist
        ShowCurrent => {
            label: {
                english => "Show current blacklist",
                japanese => "",
                spanish => "Mostrar lista negra actual"
            },
            desc: {
                english => "Display all tags currently in your blacklist",
                japanese => "",
                spanish => "Muestra todas las etiquetas que se encuentran actualmente en tu lista negra"
            },
            online: false
        },
        /// Add a tag to the blacklist
        AddTag => {
            label: {
                english => "Add tag to blacklist",
                japanese => "",
                spanish => "Agregar etiqueta a la lista negra"
            },
            desc: {
                english => "Add a new tag to your blacklist to filter unwanted content",
                japanese => "",
                spanish => "Agrega una nueva e"
            },
            online: false
        },
        /// Remove a tag from the blacklist
        RemoveTag => {
            label: {
                english => "Remove tag from blacklist",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Remove a tag from your blacklist",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Clear the blacklist
        Clear => {
            label: {
                english => "Clear entire blacklist",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Remove all tags from your blacklist",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Import tags into the blacklist from a search
        ImportFromSearch => {
            label: {
                english => "Import tags from search",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Import multiple tags from a search query into your blacklist",
                japanese => "",
                spanish => ""
            },
            online: true
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to main menu",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Return to the main menu",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// The main menu
    pub MainMenu {
        filterable: true,

        /// Search posts/pools
        Search => {
            label: {
                english => "Search",
                japanese => "",
                spanish => "Buscar"
            },
            desc: {
                english => "Search for posts or pools by tags and filters",
                japanese => "",
                spanish => "Busca publicaciones o encuestas mediante etiquetas y filtros"
            },
            online: true
        },
        /// View the latest posts
        ViewLatest => {
            label: {
                english => "View the latest posts",
                japanese => "",
                spanish => "Ver las últimas publicaciones"
            },
            desc: {
                english => "Browse the most recently uploaded posts on e621",
                japanese => "",
                spanish => "Explora las publicaciones subidas más recientemente en e621"
            },
            online: true
        },
        /// Explore downloads
        ExploreDownloads => {
            label: {
                english => "View downloaded posts",
                japanese => "",
                spanish => "Ver publicaciones descargadas"
            },
            desc: {
                english => "Browse, search, and manage your downloaded posts",
                japanese => "",
                spanish => "Explora, busca y gestiona tus publicaciones descargadas"
            },
            online: false
        },
        /// Open your downloads in your browser
        OpenInBrowser => {
            label: {
                english => "View downloads in your browser",
                japanese => "",
                spanish => "Ver las descargas en tu navegador"
            },
            desc: {
                english => "Open your local downloads folder in your default web browser",
                japanese => "",
                spanish => "Abre tus descargas como una galería en tu navegador predeterminado"
            },
            online: false
        },
        /// Manage your blacklist
        ManageBlacklist => {
            label: {
                english => "Manage your blacklist",
                japanese => "",
                spanish => "Gestiona tu lista negra"
            },
            desc: {
                english => "Add, remove, or view tags in your blacklist",
                japanese => "",
                spanish => "Agregue, elimine o vea las etiquetas en su lista negra"
            },
            online: false
        },
        /// Reorganize downloads
        Reorganize => {
            label: {
                english => "Reorganize downloads",
                japanese => "",
                spanish => "Reorganizar descargas"
            },
            desc: {
                english => "Reorganize and sort your downloaded files by various criteria",
                japanese => "",
                spanish => "Reorganiza y clasifica tus archivos descargados según diversos criterios"
            },
            online: false
        },
        /// Update currently downloaded files based on already downloaded artists
        UpdateDownloads => {
            label: {
                english => "Update downloaded artists",
                japanese => "",
                spanish => "Actualizar artistas descargadas"
            },
            desc: {
                english => "Check for and download new posts from artists you've already downloaded",
                japanese => "",
                spanish => "Busca y descarga nuevas publicaciones de los artistas cuyas obras ya has descargado"
            },
            online: true
        },
        /// Manage the configuration file
        ManageConfig => {
            label: {
                english => "Manage config",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Manage your current configuration",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Exit
        Exit => {
            label: {
                english => "Exit e62rs",
                japanese => "",
                spanish => "Salir de e62rs"
            },
            desc: {
                english => "Exit the app",
                japanese => "",
                spanish => "Salir de la aplicación"
            },
            online: false
        }
    }
}

crate::menu! {
    /// Search type
    pub SearchMenu {
        filterable: true,

        /// Search posts
        Posts => {
            label: {
                english => "Posts",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Search for individual posts by tags and filters",
                japanese => "",
                spanish => ""
            },
            online: true
        },
        /// Search pools
        Pools => {
            label: {
                english => "Pools",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Search for collections of related posts organized into pools",
                japanese => "",
                spanish => ""
            },
            online: true
        },
        /// Go back to the main menu
        Back => {
            label: {
                english => "Go back",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Go back to the main menu",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// Pool search mode
    pub PoolSearchModeMenu {
        filterable: true,

        /// Simple search
        Simple => {
            label: {
                english => "Simple search",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Quick and easy pool search with basic filters",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Advanced search
        Advanced => {
            label: {
                english => "Advanced search",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Advanced pool search with detailed filtering options",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// Downloads explorer menu
    pub ExplorerMenu {
        filterable: true,

        /// Browse posts
        Browse => {
            label: {
                english => "Browse downloaded posts",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "View and interact with your downloaded posts",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Search for posts
        Search => {
            label: {
                english => "Search by tags, ID, uploader, or desc",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Search your downloaded posts using various criteria",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Filter posts by rating
        FilterByRating => {
            label: {
                english => "Filter by rating",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Filter posts by their content rating (safe, questionable, explicit)",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort posts
        SortBy => {
            label: {
                english => "Sort posts",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort your downloaded posts by date, score, favorites, or ID",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// View statistics
        ViewStatistics => {
            label: {
                english => "View statistics",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "View detailed statistics about your downloaded collection",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Clear all filters
        ClearFilters => {
            label: {
                english => "Clear all filters",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Remove all active filters and sorting options",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Watch selected posts in a slideshow
        Slideshow => {
            label: {
                english => "Watch a slideshow",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "View your posts in an automated slideshow",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Go back
        Back => {
            label: {
                english => "Go back to main menu",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Return to the main menu",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// Explorer sorting options
    pub ExplorerSortBy {
        filterable: true,

        /// Sort by date (newest)
        DateNewest => {
            label: {
                english => "Sort by date (newest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts with the most recent uploads first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by date (oldest)
        DateOldest => {
            label: {
                english => "Sort by date (oldest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts with the oldest uploads first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by score (highest)
        ScoreHighest => {
            label: {
                english => "Sort by score (highest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts by their score with highest rated first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by score (lowest)
        ScoreLowest => {
            label: {
                english => "Sort by score (lowest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts by their score with lowest rated first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by favorites (highest)
        FavoritesHighest => {
            label: {
                english => "Sort by favs (highest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts by favorite count with most favorited first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by favorites (lowest)
        FavoritesLowest => {
            label: {
                english => "Sort by favs (lowest first)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts by favorite count with least favorited first",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by id (ascending)
        IDAscending => {
            label: {
                english => "Sort by ID (ascending)",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Sort posts by their ID in ascending order (oldest to newest)",
                japanese => "",
                spanish => ""
            },
            online: false
        },
        /// Sort by id (descending)
        IDDescending => {
            label: {
                english => "Sort by ID (descending)",
                japanese => "",
                spanish => "Ordenar por ID (descendente)"
            },
            desc: {
                english => "Sort posts by their ID in descending order (newest to oldest)",
                japanese => "",
                spanish => ""
            },
            online: false
        }
    }
}

crate::menu! {
    /// the rating to filter for in the explorer
    pub ExplorerFilterBy { filterable: true,
        /// all ratings
        AllRatings => {
            label: {
                english => "All ratings",
                japanese => "",
                spanish => "Todas las calificaciones"
            },
            desc: {
                english => "Display posts of all ratings",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// safe posts
        Safe => {
            label: {
                english => "Safe posts",
                japanese => "",
                spanish => "Publicaciones seguras"
            },
            desc: {
                english => "Display posts with the 'safe' rating",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// questionable posts
        Questionable => {
            label: {
                english => "Questionable posts",
                japanese => "Publicaciones cuestionables",
                spanish => ""
            },
            desc: {
                english => "Display posts with the `questionable` rating",
                japanese => "",
                spanish => ""
            },
            online: false
        },

        /// explicit posts
        Explicit => {
            label: {
                english => "Explicit posts",
                japanese => "",
                spanish => ""
            },
            desc: {
                english => "Display posts with the 'explicit' rating",
                japanese => "",
                spanish => "Publicaciones explicítas"
            },
            online: false
        },
    }
}

/// calculates and prints the total
/// localization progress across all menus
pub fn calculate_localization_progress() {
    let mut translated_labels_en = 0;
    let mut translated_labels_es = 0;
    let mut translated_labels_ja = 0;
    let mut translated_descs_es = 0;
    let mut translated_descs_en = 0;
    let mut translated_descs_ja = 0;

    let menu_stats = vec![
        InteractionMenu::translation_stats(),
        PoolInteractionMenu::translation_stats(),
        BatchAction::translation_stats(),
        AdvPoolSearch::translation_stats(),
        BlacklistManager::translation_stats(),
        MainMenu::translation_stats(),
        SearchMenu::translation_stats(),
        PoolSearchModeMenu::translation_stats(),
        ExplorerMenu::translation_stats(),
        ExplorerSortBy::translation_stats(),
        ExplorerFilterBy::translation_stats(),
    ];

    for stat in menu_stats {
        if let Some(en) = stat.get("english") {
            translated_descs_en += en.descriptions_translated;
            translated_labels_en += en.labels_translated;
        }

        if let Some(es) = stat.get("spanish") {
            translated_labels_es += es.labels_translated;
            translated_descs_es += es.descriptions_translated;
        }

        if let Some(ja) = stat.get("japanese") {
            translated_labels_ja += ja.labels_translated;
            translated_descs_ja += ja.descriptions_translated;
        }
    }

    let print_stat =
        |lang: &str, labels: usize, descs: usize, total_labels: usize, total_descs: usize| {
            let label_pct = (labels as f64 / total_labels as f64) * 100.0;
            let desc_pct = (descs as f64 / total_descs as f64) * 100.0;

            println!(
                "- [{}] **{}**",
                if label_pct == 100.0 && desc_pct == 100.0 {
                    "x"
                } else if label_pct == 100.0 || desc_pct == 100.0 {
                    "-"
                } else {
                    " "
                },
                lang.to_uppercase()
            );

            println!(
                "- [{}] Labels: {}/{} ({:.2}%)",
                if label_pct == 100.0 { "x" } else { " " },
                labels,
                total_labels,
                label_pct
            );
            println!(
                "- [{}] Descriptions: {}/{} ({:.2}%)",
                if desc_pct == 100.0 { "x" } else { " " },
                descs,
                total_descs,
                desc_pct
            );
            println!();
        };

    print_stat(
        "English",
        translated_labels_en,
        translated_descs_en,
        translated_labels_en,
        translated_descs_en,
    );

    print_stat(
        "Spanish",
        translated_labels_es,
        translated_descs_es,
        translated_labels_en,
        translated_descs_en,
    );
    print_stat(
        "Japanese",
        translated_labels_ja,
        translated_descs_ja,
        translated_labels_en,
        translated_descs_en,
    );
}