-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.pot
1279 lines (1007 loc) · 32.2 KB
/
bot.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Translations template for PROJECT.
# Copyright (C) 2024 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-12-12 18:50-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.16.0\n"
#: src/korone/filters/admin.py:68
msgid "I am missing the following permissions: {permissions}"
msgstr ""
#: src/korone/filters/admin.py:80
msgid "You must be an administrator to use this."
msgstr ""
#: src/korone/filters/admin.py:82
msgid "I need to be an administrator to perform this action."
msgstr ""
#: src/korone/filters/chat.py:42
msgid "This command is designed to be used in PM, not in groups!"
msgstr ""
#: src/korone/filters/chat.py:52
msgid "This command is designed to be used in groups, not in PM!"
msgstr ""
#: src/korone/modules/afk/handlers/check.py:29
msgid "Oh, you're back! I've removed your afk status."
msgstr ""
#: src/korone/modules/afk/handlers/check.py:64
msgid "{user} is afk!"
msgstr ""
#: src/korone/modules/afk/handlers/check.py:67
msgid ""
"\n"
"Reason: {reason}"
msgstr ""
#: src/korone/modules/afk/handlers/check.py:91
msgid "🎧 Listening to: {track_artist} — {track_name}"
msgstr ""
#: src/korone/modules/afk/handlers/set.py:20
msgid "You are already AFK."
msgstr ""
#: src/korone/modules/afk/handlers/set.py:24
msgid "The maximum length of the AFK message is 64 characters."
msgstr ""
#: src/korone/modules/afk/handlers/set.py:30
msgid "Your AFK status has been updated!"
msgstr ""
#: src/korone/modules/afk/handlers/set.py:33
msgid "You are now AFK."
msgstr ""
#: src/korone/modules/disabling/handlers/disableable.py:18
msgid "No commands can be disabled."
msgstr ""
#: src/korone/modules/disabling/handlers/disableable.py:21
msgid "The following commands can be disabled:\n"
msgstr ""
#: src/korone/modules/disabling/handlers/disabled.py:19
msgid "No commands are disabled in this chat."
msgstr ""
#: src/korone/modules/disabling/handlers/disabled.py:24
msgid "The following commands are disabled in this chat:\n"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:30
msgid ""
"You need to specify a command to {action}. Use <code>/{action} "
"<commandname></code>."
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:33
#: src/korone/modules/disabling/handlers/toggle.py:41
msgid "enable"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:33
#: src/korone/modules/disabling/handlers/toggle.py:41
msgid "disable"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:39
msgid ""
"Unknown command to {action}:\n"
"- <code>{command}</code>\n"
"Check the /disableable!"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:50
msgid "This command is already {action}."
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:51
#: src/korone/modules/disabling/handlers/toggle.py:58
msgid "enabled"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:51
#: src/korone/modules/disabling/handlers/toggle.py:58
msgid "disabled"
msgstr ""
#: src/korone/modules/disabling/handlers/toggle.py:58
msgid "Command {action}."
msgstr ""
#: src/korone/modules/errors/handlers/catcher.py:83
msgid "An unexpected error occurred while processing this update! :/"
msgstr ""
#: src/korone/modules/errors/handlers/catcher.py:85
msgid ""
"\n"
"Reference ID: {id}"
msgstr ""
#: src/korone/modules/errors/handlers/catcher.py:90
msgid "🐞 Report This Error"
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:20
msgid "✅ Confirm Deletion"
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:24
#: src/korone/modules/languages/handlers/select.py:38
msgid "❌ Cancel"
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:30
msgid ""
"⚠️ Are you sure you want to delete all filters? This action cannot be "
"undone."
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:53
msgid "There are no filters to delete."
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:57
msgid "All filters have been deleted."
msgstr ""
#: src/korone/modules/filters/handlers/delall.py:61
msgid "Deletion of all filters has been canceled."
msgstr ""
#: src/korone/modules/filters/handlers/delete.py:19
msgid ""
"You need to provide the name of the filter to delete. Example: "
"<code>/delfilter filtername</code>"
msgstr ""
#: src/korone/modules/filters/handlers/delete.py:33
msgid "Filter '<code>{filter_name}</code>' has been deleted."
msgstr ""
#: src/korone/modules/filters/handlers/delete.py:40
msgid "Filter '<code>{filter_name}</code>' does not exist."
msgstr ""
#: src/korone/modules/filters/handlers/info.py:22
msgid ""
"You need to provide the name of the filter. Example: <code>/filterinfo "
"filtername</code>"
msgstr ""
#: src/korone/modules/filters/handlers/info.py:33
msgid "Filter '{name}' not found."
msgstr ""
#: src/korone/modules/filters/handlers/info.py:48
msgid ""
"<b>Filter Info</b>:\n"
"<b>Names</b>: {names}\n"
"<b>Content Type</b>: <code>{content_type}</code>\n"
"<b>Created Date</b>: <i>{created_date}</i>\n"
"<b>Creator</b>: {creator}\n"
"<b>Edited Date</b>: <i>{edited_date}</i>\n"
"<b>Editor</b>: {editor}"
msgstr ""
#: src/korone/modules/filters/handlers/list.py:17
msgid "No filters found for this chat."
msgstr ""
#: src/korone/modules/filters/handlers/list.py:23
msgid ""
"List of filters in {chatname}:\n"
"{filter_list}"
msgstr ""
#: src/korone/modules/filters/handlers/list.py:24
#: src/korone/modules/filters/handlers/save.py:72
#: src/korone/modules/filters/utils/text.py:41
msgid "private chat"
msgstr ""
#: src/korone/modules/filters/handlers/save.py:21
msgid ""
"You need to provide arguments to save a filter. Example: <code>/filter "
"filtername</code>"
msgstr ""
#: src/korone/modules/filters/handlers/save.py:31
msgid "Invalid filter format. Check <code>/help</code> for more information."
msgstr ""
#: src/korone/modules/filters/handlers/save.py:38
msgid ""
"You need to provide the filter content. Check <code>/help</code> for more"
" information."
msgstr ""
#: src/korone/modules/filters/handlers/save.py:70
msgid ""
"Saved {count} filters in {chat}:\n"
"{filters}"
msgstr ""
#: src/korone/modules/filters/utils/parse_filter.py:54
msgid ""
"Please check the Filters documentation for the list of the allowed "
"content types."
msgstr ""
#: src/korone/modules/filters/utils/parse_filter.py:66
msgid "The text of the replied message is empty."
msgstr ""
#: src/korone/modules/filters/utils/parse_filter.py:104
msgid "The maximum length of the filter is {length} characters."
msgstr ""
#: src/korone/modules/gsm_arena/handlers/search.py:20
msgid ""
"You should provide a device name to search. Example: <code>/device Galaxy"
" S24</code>."
msgstr ""
#: src/korone/modules/gsm_arena/handlers/search.py:31
msgid "No devices found."
msgstr ""
#: src/korone/modules/gsm_arena/handlers/search.py:40
#: src/korone/modules/minecraft/handlers/modrinth.py:46
msgid "Search results for: <b>{query}</b>"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:83
msgid "Status"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:84
msgid "Network"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:85
msgid "Weight"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:86
msgid "Display"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:87
msgid "Chipset"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:88
msgid "Memory"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:89
msgid "Rear Camera"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:90
msgid "Front Camera"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:91
msgid "3.5mm jack"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:92
msgid "USB"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:93
msgid "Sensors"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:94
msgid "Battery"
msgstr ""
#: src/korone/modules/gsm_arena/utils/scraper.py:95
msgid "Charging"
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:22
msgid "Something went wrong."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:44
msgid "Language changed to {new_lang}."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:49
msgid ""
"\n"
"This is the bot's native language.\n"
"If you find any errors, please file an issue in the GitHub Repository."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:56
msgid ""
"\n"
"The language is {percent}% translated."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:68
msgid ""
"\n"
"In case you find any errors, please file an issue in the GitHub "
"Repository."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:72
msgid ""
"\n"
"Please help us translate this language by completing it on our "
"translations platform."
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:91
msgid "🐞 Open GitHub"
msgstr ""
#: src/korone/modules/languages/handlers/apply.py:92
msgid "🌍 Open Translations"
msgstr ""
#: src/korone/modules/languages/handlers/cancel.py:22
msgid ""
"Changing language was canceled, you can change language again by using "
"/language command."
msgstr ""
#: src/korone/modules/languages/handlers/info.py:41
msgid "<b>Chat language:</b> {language}\n"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:44
msgid "This is the bot's native language. So it is 100% translated."
msgstr ""
#: src/korone/modules/languages/handlers/info.py:46
msgid ""
"\n"
"<b>Language Information:</b>\n"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:47
msgid "Translated strings: <code>{translated}</code>\n"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:50
msgid "Untranslated strings: <code>{untranslated}</code>\n"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:53
msgid "Strings requiring review: <code>{fuzzy}</code>\n"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:60
msgid "👤 Change your language"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:62
msgid "🌍 Change group language"
msgstr ""
#: src/korone/modules/languages/handlers/info.py:74
#: src/korone/modules/languages/handlers/select.py:45
#: src/korone/modules/pm_menu/handlers/about.py:55
#: src/korone/modules/pm_menu/handlers/help.py:34
msgid "⬅️ Back"
msgstr ""
#: src/korone/modules/languages/handlers/select.py:49
msgid "Please select the language you want to use for the chat."
msgstr ""
#: src/korone/modules/lastfm/handlers/album.py:36
#: src/korone/modules/lastfm/handlers/artist.py:36
#: src/korone/modules/lastfm/handlers/now.py:36
msgid "No recent tracks found for your LastFM account."
msgstr ""
#: src/korone/modules/lastfm/handlers/collage.py:49
msgid "No top albums found for your LastFM account."
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:23
msgid "Reply to a message to get the compatibility!"
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:49
msgid "No top artists found for your LastFM account."
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:58
msgid "You can't get the compatibility with yourself!"
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:62
msgid "Bots won't have music taste!"
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:76
#: src/korone/modules/lastfm/utils/commons.py:17
msgid ""
"You need to set your LastFM username first! Example: <code>/setlfm "
"username</code>."
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:84
msgid ""
"The user you replied to doesn't have a LastFM account linked! Hint them "
"to set it using <code>/setlfm username</code>."
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:118
msgid "No common artists in {period}"
msgstr ""
#: src/korone/modules/lastfm/handlers/compat.py:119
msgid ""
"{user1} and {user2} listen to {mutual}...\n"
"\n"
"Compatibility score is {score}%, based on {period}"
msgstr ""
#: src/korone/modules/lastfm/handlers/recent.py:32
msgid "No recent tracks found."
msgstr ""
#: src/korone/modules/lastfm/handlers/recent.py:44
msgid "{user} is listening to:\n"
msgstr ""
#: src/korone/modules/lastfm/handlers/recent.py:47
msgid ""
"\n"
"Last 5 plays:"
msgstr ""
#: src/korone/modules/lastfm/handlers/recent.py:50
msgid "{user} was listening to:\n"
msgstr ""
#: src/korone/modules/lastfm/handlers/set.py:21
msgid ""
"You need to provide your LastFM username! Example: <code>/setlfm "
"username</code>."
msgstr ""
#: src/korone/modules/lastfm/handlers/set.py:26
msgid "LastFM username must not contain spaces or special characters!"
msgstr ""
#: src/korone/modules/lastfm/handlers/set.py:30
msgid "LastFM username set successfully!"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:37
msgid "Invalid entry type! Use one of the following: artist, track, album"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:55
msgid "No top items found."
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:61
msgid ""
"{user}'s top 5 {entry} for {period}:\n"
"\n"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:63
msgid "artists"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:65
msgid "tracks"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:67
msgid "albums"
msgstr ""
#: src/korone/modules/lastfm/handlers/top.py:76
msgid " -> {scrobbles} plays\n"
msgstr ""
#: src/korone/modules/lastfm/handlers/user.py:35
msgid ""
"User: <b>{user}</b>\n"
"\n"
"Total scrobbles: <code>{playcount}</code>\n"
"Tracks scrobbled: <code>{track_count}</code>\n"
"Artists scrobbled: <code>{artist_count}</code>\n"
"Albums scrobbled: <code>{album_count}</code>\n"
"\n"
"Registered: <i>{registered}</i>"
msgstr ""
#: src/korone/modules/lastfm/utils/commons.py:28
msgid "Your LastFM username was not found! Try setting it again."
msgstr ""
#: src/korone/modules/lastfm/utils/commons.py:31
msgid ""
"An error occurred while fetching your LastFM data!\n"
"<blockquote>{error}</blockquote>"
msgstr ""
#: src/korone/modules/lastfm/utils/commons.py:47
msgid "{user}'s is listening to:\n"
msgstr ""
#: src/korone/modules/lastfm/utils/commons.py:49
msgid "{user}'s was listening to:\n"
msgstr ""
#: src/korone/modules/lastfm/utils/commons.py:53
msgid " ∙ <code>{playcount} plays</code>"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:29
msgid ", {days} day(s) ago"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:33
msgid ", {hours} hour(s) ago"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:37
msgid ", {minutes} minute(s) ago"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:37
msgid ", Just now"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:66
msgid "1 week"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:68
msgid "1 month"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:70
msgid "3 months"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:72
msgid "6 months"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:74
msgid "1 year"
msgstr ""
#: src/korone/modules/lastfm/utils/formatters.py:75
msgid "All time"
msgstr ""
#: src/korone/modules/medias/handlers/bluesky.py:65
msgid "Open in BueSky"
msgstr ""
#: src/korone/modules/medias/handlers/bluesky.py:72
msgid "Open in BlueSky"
msgstr ""
#: src/korone/modules/medias/handlers/instagram.py:66
#: src/korone/modules/medias/handlers/instagram.py:73
msgid "Open in Instagram"
msgstr ""
#: src/korone/modules/medias/handlers/threads.py:65
#: src/korone/modules/medias/handlers/threads.py:72
msgid "Open in Threads"
msgstr ""
#: src/korone/modules/medias/handlers/tiktok.py:150
#: src/korone/modules/medias/handlers/tiktok.py:212
msgid "Open in TikTok"
msgstr ""
#: src/korone/modules/medias/handlers/twitter.py:53
#: src/korone/modules/medias/handlers/twitter.py:167
msgid "Open in Twitter"
msgstr ""
#: src/korone/modules/medias/handlers/twitter.py:75
msgid ""
"\n"
"<b>Sent from:</b> <i>{source}</i>"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:39
msgid "Invalid YouTube URL!"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:61
msgid "No YouTube URL found in the replied message."
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:64
msgid ""
"You need to provide a URL or reply to a message that contains a URL. "
"Example: <code>/ytdl https://www.youtube.com/watch?v=dQw4w9WgXcQ</code>"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:76
msgid "Failed to extract video info!"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:81
msgid "<b>Title:</b> {title}\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:82
msgid "<b>Uploader:</b> {uploader}\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:88
msgid "<b>Duration:</b> {hours}h {minutes}m {seconds}s\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:93
msgid "<b>Duration:</b> {minutes}m {seconds}s\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:97
msgid "<b>Duration:</b> {seconds}s\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:101
msgid "<b>Views:</b> {view_count}\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:104
msgid "<b>Likes:</b> Unknown\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:107
msgid "<b>Likes:</b> {like_count}\n"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:115
msgid "Download video"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:119
msgid "Download audio"
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:148
msgid "Downloading..."
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:154
msgid "Uploading..."
msgstr ""
#: src/korone/modules/medias/handlers/youtube.py:169
#: src/korone/modules/medias/handlers/youtube.py:184
msgid "Failed to download the media."
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:31
msgid ""
"You need to provide a search query. Example: <code>/modrinth "
"sodium</code>."
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:37
msgid "No projects found."
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:108
msgid "Open in Modrinth"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:109
msgid "Details"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:122
msgid "Downloads: {downloads}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:123
msgid "Followers: {followers}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:124
msgid "Published: {published}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:125
msgid "Updated: {updated}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:126
msgid "Categories: {categories}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:141
msgid "<b>Platforms</b>: {platforms}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:142
msgid "<b>Supported environments</b>: {environments}\n"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:147
msgid "<b>Latest version</b>: {version}"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:163
msgid "Mod"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:164
msgid "Modpack"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:165
msgid "Resource pack"
msgstr ""
#: src/korone/modules/minecraft/handlers/modrinth.py:166
msgid "Shader pack"
msgstr ""
#: src/korone/modules/minecraft/handlers/servers.py:27
msgid ""
"You need to provide a server address. Example: <code>/mcserver "
"mc.hypixel.net</code>."
msgstr ""
#: src/korone/modules/minecraft/handlers/servers.py:38
msgid ""
"Invalid server address. Please provide a valid IP address or hostname, "
"optionally with a port. Example: <code>/mcserver mc.hypixel.net</code> or"
" <code>/mcserver mc.hypixel.net:25565</code>."
msgstr ""
#: src/korone/modules/minecraft/handlers/servers.py:50
msgid ""
"This Minecraft server is currently offline or is not a valid Minecraft "
"server. Please check the address and try again."
msgstr ""
#: src/korone/modules/minecraft/handlers/servers.py:57
msgid ""
"<b>Server Status for {address}</b>:\n"
"<b>Players</b>: {player_count}\n"
"<b>Version:</b> {version}\n"
"<b>MOTD</b>: <pre>{motd}</pre>\n"
msgstr ""
#: src/korone/modules/piston/handlers/langs.py:17
msgid "Failed to fetch the available languages."
msgstr ""
#: src/korone/modules/piston/handlers/langs.py:20
msgid "<b>Supported languages</b>:\n"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:24
msgid ""
"You need to provide a command to run. Example: <code>/piston python "
"print('Hello, World!')</code>"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:34
msgid "Sorry, I couldn't fetch the available languages. Please try again later."
msgstr ""
#: src/korone/modules/piston/handlers/run.py:41
msgid ""
"Invalid language. Use <code>/pistonlangs</code> to see the available "
"languages. Then use it like this: <code>/piston python print('Hello, "
"World!')</code>"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:53
msgid ""
"You need to provide a valid language and code. Example: <code>/piston "
"python print('Hello, World!')</code>"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:63
msgid "An error occurred while running the code."
msgstr ""
#: src/korone/modules/piston/handlers/run.py:66
msgid ""
"<b>Code</b>:\n"
"<pre language='{lang}'>{code}</pre>\n"
"\n"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:71
msgid ""
"<b>Output</b>:\n"
"<pre language='bash'>{output}</pre>\n"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:76
msgid ""
"<b>Compiler Output</b>:\n"
"<pre language='bash'>{output}</pre>"
msgstr ""
#: src/korone/modules/piston/handlers/run.py:84
msgid ""
"The result exceeds the 4096 character limit of Telegram. Please refine "
"your code."
msgstr ""
#: src/korone/modules/pm_menu/handlers/about.py:28
msgid ""
"Korone is a comprehensive and cutting-edge Telegram bot that offers a "
"wide range of features to enhance your Telegram experience. Designed to "
"be versatile, adaptable, and highly efficient, it leverages the power of "
"{python} and is built on the {hydrogram} framework, utilizing the "
"{mtproto}.\n"
"\n"
"This open source project is licensed under the {license} license, with "
"the source code available on GitHub.\n"
"\n"
"Version: <code>{version}</code>"
msgstr ""
#: src/korone/modules/pm_menu/handlers/about.py:46
msgid "📦 GitHub"
msgstr ""
#: src/korone/modules/pm_menu/handlers/about.py:47
msgid "📚 Channel"
msgstr ""
#: src/korone/modules/pm_menu/handlers/about.py:48
msgid "🔒 Privacy Policy"
msgstr ""
#: src/korone/modules/pm_menu/handlers/help.py:23
msgid ""
"You can get help by reading the documentation, where you'll get an "
"overview of the bot and how to use it to its full potential. Click the "
"button below to start reading."
msgstr ""
#: src/korone/modules/pm_menu/handlers/help.py:28
msgid "Documentation"
msgstr ""
#: src/korone/modules/pm_menu/handlers/privacy.py:15
msgid ""
"The privacy policy is available for review in the documentation. Click "
"the button below to start reading."
msgstr ""
#: src/korone/modules/pm_menu/handlers/privacy.py:21
msgid "Privacy Policy"
msgstr ""
#: src/korone/modules/pm_menu/handlers/start.py:26
msgid ""
"Hi, I'm Korone! An all-in-one bot. I can help you with lots of things. "
"Just click on the buttons below to get started."
msgstr ""
#: src/korone/modules/pm_menu/handlers/start.py:35
msgid "ℹ️ About"
msgstr ""
#: src/korone/modules/pm_menu/handlers/start.py:37
msgid "{flag} Language"
msgstr ""
#: src/korone/modules/pm_menu/handlers/start.py:42
msgid "👮♂️ Help"
msgstr ""
#: src/korone/modules/pm_menu/handlers/start.py:49
msgid "Hi, I'm Korone!"
msgstr ""
#: src/korone/modules/regex/utils.py:43
msgid "Invalid command: {command}"
msgstr ""
#: src/korone/modules/regex/utils.py:49
msgid "Pattern is too long. Please use shorter patterns."
msgstr ""
#: src/korone/modules/regex/utils.py:54
msgid "Unknown flag: {flag}"
msgstr ""
#: src/korone/modules/regex/handlers/sed.py:31
msgid "Invalid command data."
msgstr ""
#: src/korone/modules/regex/handlers/sed.py:41
msgid "Regex error: {e}"
msgstr ""
#: src/korone/modules/regex/handlers/sed.py:45
msgid "No message to apply the substitution."
msgstr ""
#: src/korone/modules/regex/handlers/sed.py:49
msgid "Your regex didn't change anything from the original message."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:42
msgid "You need to reply to an image, video, or sticker."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:45
msgid "Processing..."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:50
msgid "Invalid media type. Please reply to an image, video, or sticker."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:60
msgid "Error downloading media."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:71
msgid "Error processing media."
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:100
msgid "View pack"
msgstr ""
#: src/korone/modules/stickers/handlers/kang.py:103
msgid ""
"Sticker <b>successfully</b> added to pack\n"
"Emoji: {sticker_emoji}"
msgstr ""
#: src/korone/modules/stickers/utils/medias.py:66
msgid "Failed to get video information."
msgstr ""
#: src/korone/modules/stickers/utils/medias.py:72
msgid "Error parsing video information: {error}"
msgstr ""
#: src/korone/modules/stickers/utils/medias.py:79
msgid ""