-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtranslations.json
More file actions
1118 lines (1118 loc) · 85.5 KB
/
Copy pathtranslations.json
File metadata and controls
1118 lines (1118 loc) · 85.5 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
{
"fr": {
"General": "Général", "Network": "Réseau", "Appearance": "Apparence", "File Name": "Nom du Fichier", "Segments": "Segments", "Mode": "Mode",
"Settings": "Paramètres", "Download Finished": "Téléchargement Terminé", "Auto-detected": "Auto-détecté", "Cancel": "Annuler",
"New Download": "Nouveau Téléchargement", "Active": "Activé", "Paused": "En pause", "Total": "Totale", "Add To Queue" : "Mettre en File D’attente",
"Open File": "Ouvrir le Fichier", "Open Folder" : "Ouvrir le Dossier", "Copy Download Link" : "Copier le lien", "Download Now": "Télécharger Maintenant",
"Pause Download": "Mettre en pause", "Resume Download": "Reprendre le Téléchargement", "Retry Download" : "Relancer le Téléchargement",
"Delete File" : "Supprimer ce Fichier", "Name": "Nom", "Size": "Taille", "Date Added": "Date d’ajout", "Speed": "Vitesse", "All": "Tous", "Status": "Statut",
"Select All": "Sélectionner Tout", "Compressed": "Archives", "Programs": "Programmes", "Videos": "Vidéos", "Music": "Musique", "Pictures":"Images", "Documents": "Documents",
"Finished": "Terminé", "Unfinished": "Non Terminés", "Search in the List": "Rechercher Dans la Liste", "Start on Boot": "Exécuter au Démarrage", "or any yt_dlp supported Link": "ou tout lien supporté par yt_dlp",
"Do you want to delete":"Voulez-vous Supprimer", "items": "éléments", "item": "élément", "Confirm": "Confirmer", " Delete Associated Files?": " Supprimer les Fichiers Associés?",
"Paused at": "En pause à", "UNKNOWN": "INCONNU",
"Default Download Directory": "Dossier de téléchargement par défaut",
"Language (Requires Restart)": "Langue (redémarrage requis)",
"Download Engine (Backend)": "Moteur de téléchargement (backend)",
"User Agent": "Agent utilisateur",
"Default Segments (Connections)": "Segments par défaut (connexions)",
"Global Speed Limit (e.g. 500, Only numbers (value auto converts to K)":"Limite de vitesse globale (ex. 500K, 2M, 0=Illimité)",
"Global Theme": "Thème global",
"System": "Système",
"Light": "Clair",
"Dark": "Sombre",
"Custom": "Personnalisé",
"Context Menu Offset" :"Décalage du menu contextuel",
"Change This if You Have Troubles With Your Context Menu.":"Changez ceci si vous avez des problèmes avec le menu contextuel.",
"Offset Y:": "Décalage Y :",
"Offset X:": "Décalage X :",
"Disable cell borders": "Désactiver les bordures de cellule",
"Application Font": "Police de l'application",
"UI Scale (%)": "Échelle de l'interface (%)",
"Custom Theme CSS File": "Fichier CSS du thème personnalisé",
"Save & Apply CSS": "Enregistrer et appliquer le CSS",
"Browser Integration (Don't have it?)": "Intégration navigateur (Vous ne l'avez pas ?)",
"click here": "cliquez ici",
"Enable Browser Integration": "Activer l'intégration navigateur",
"Browser Integration Port": "Port d'intégration navigateur",
"Save To:": "Enregistrer sous :",
"Choose Directory": "Choisir le dossier",
"Download Playlist": "Télécharger la playlist",
"If the link is a playlist, download all vidéos": "Si le lien est une playlist, télécharger toutes les vidéos",
"Embed Subtitles": "Intégrer les sous-titres",
"Embed Thumbnail": "Intégrer la miniature",
"Quality:": "Qualité :",
"Container:": "Conteneur :",
"Process URL": "Traiter l'URL",
"Browser": "Navigateur",
"Confirm before deleting tasks": "Confirmer avant de supprimer les tâches",
"Show Desktop Notifications (When finished)": "Afficher les notifications du bureau (une fois terminé)",
"Show Dialog when Download Finishes": "Afficher une boîte de dialogue à la fin du téléchargement",
"Resume Support:": "Prise en charge de la reprise :",
"YES": "OUI",
"NO": "NON",
"Cancelled.": "Annulé.",
"Download": "Télécharger",
"Downloaded": "Téléchargé",
"Paused.": "En pause.",
"Pause": "Pause",
"Updating...": "Mise à jour...",
"Downloading...": "Téléchargement...",
"File is Already Downloading!": "Le fichier est déjà en cours de téléchargement !",
"Download Completed.": "Téléchargement terminé.",
"Error:": "Erreur :",
"No internet connection. Please reconnect": "Pas de connexion internet. Veuillez vous reconnecter",
"Error during YouTube download": "Erreur lors du téléchargement YouTube",
"Converting...": "Conversion...",
"Downloading:": "Téléchargement :",
"Item": "Élément",
"Downloaded:": "Téléchargé :",
"Progress": "Progression",
"Error Occurred": "Une erreur est survenue",
"Retry": "Réessayer",
"Error adding download": "Erreur lors de l'ajout du téléchargement",
"Connection Error": "Erreur de connexion",
"File already exists.": "Le fichier existe déjà.",
"Downloading Video...": "Téléchargement de la vidéo...",
"Fix filename before downloading.": "Corrigez le nom du fichier avant de télécharger.",
"Saving to:": "Enregistrement vers :",
"Filename cannot be empty.": "Le nom de fichier ne peut pas être vide.",
"Filename contains invalid characters.": "Le nom de fichier contient des caractères invalides.",
"File Size:": "Taille du fichier :",
"File URL:": "URL du fichier :",
"File Name:": "Nom du fichier :",
"Download Menu": "Menu de téléchargement",
"Enter the maximum number of connections for downloading": "Entrez le nombre maximum de connexions pour le téléchargement",
"Number of Connections:": "Nombre de connexions :",
"Enter speed limit in KB/s, e.g., 400 for 400 KB/s": "Entrez la limite de vitesse en Ko/s, ex: 400 pour 400 Ko/s",
"Speed Limit (KB/s)": "Limite de vitesse (Ko/s)",
"Speed Limit:": "Limite de vitesse :",
"Fetching Data...": "Récupération des données...",
"Choose Download Folder": "Choisir le dossier de téléchargement",
"Show/Hide": "Afficher/Masquer",
"Quit": "Quitter",
"Info": "Info",
"Resuming Download": "Reprise du téléchargement",
"Opening File: ": "Ouverture du fichier : ",
"Show Short Pop-up Messages (Toasts)": "Afficher les messages courts (Toasts)",
"Downloading URL...": "Téléchargement de l'URL...",
"Added URL successfully!": "URL ajoutée avec succès !",
"Opening File's Folder...": "Ouverture du dossier du fichier...",
"Deleted Selected Files Successfully.": "Fichiers sélectionnés supprimés avec succès.",
"Deleted Selected File Successfully.": "Fichier sélectionné supprimé avec succès.",
"Connections: ": "Connexions : ",
"Speed Limit": "Limite de vitesse",
"Drop Here": "Déposer ici",
"Checking Integrity...": "Vérification de l'intégrité...",
"Show Trackers": "Afficher les trackers",
"Invalid Tracker URL": "URL du tracker invalide",
"Enter Tracker URL (UDP/HTTP)": "Entrer l'URL du tracker (UDP/HTTP)",
"Name: -": "Nom : -",
"Size: -": "Taille : -",
"Add New Tracker": "Ajouter un nouveau tracker",
"Waiting to Verify...": "En attente de vérification...",
"Searching for Peers...": "Recherche de pairs...",
"Stalled / No Peers": "Bloqué / Aucun pair",
"Verifying Checksum": "Vérification de la somme de contrôle",
"Seed Time (min):": "Temps de partage (min) :",
"Seed Ratio:": "Ratio de partage :",
"Retrieving file list...": "Récupération de la liste des fichiers...",
"Click 'Process Link' to fetch metadata.": "Cliquez sur 'Traiter le lien' pour récupérer les métadonnées.",
"Torrent Detected.": "Torrent détecté.",
"Please select at least one file to download.": "Veuillez sélectionner au moins un fichier à télécharger.",
"Copied to clipboard:": "Copié dans le presse-papiers :",
"Downloading Playlist...": "Téléchargement de la playlist...",
"Retrieving data. Wait a few seconds": "Récupération des données. Attendez quelques secondes",
"Start Download Immediately": "Démarrer le téléchargement immédiatement",
"If checked, the download will begin instantly when added, skipping the 'Download' button.": "Si coché, le téléchargement commencera instantanément lors de l'ajout, en sautant le bouton 'Télécharger'.",
"Start in Minimized Mode": "Démarrer en mode réduit",
"If checked, The Download Will Begin in The Background.": "Si coché, le téléchargement commencera en arrière-plan.",
"Select Download Folder": "Sélectionner le dossier de téléchargement",
"You Can't Delete Items During a Download. Please Stop The Operation First.": "Impossible de supprimer des éléments pendant un téléchargement. Veuillez d'abord arrêter l'opération.",
"Size: Timeout (Metadata not found)": "Taille : Délai dépassé (Métadonnées non trouvées)",
"Copy URL": "Copier l'URL",
"WARNING! DANGEROUS TERRITORY!": "ATTENTION ! ZONE DANGEREUSE !",
"Custom Command (Shell):": "Commande personnalisée (Shell) :",
"Stopped at": "Arrêté à",
"trackers.": "trackers.",
"Added": "Ajouté",
"skipped": "ignoré",
"Trackers already exist.": "Les trackers existent déjà.",
"No valid trackers found.": "Aucun tracker valide trouvé.",
"Starting The Downloader Please Wait...": "Démarrage du téléchargeur, veuillez patienter...",
"File Has Already Been Downloaded": "Le fichier a déjà été téléchargé",
"Delete Confirmation": "Confirmation de suppression",
"Finishing up...": "Finalisation...",
"Cancel Confirmation": "Confirmation d'annulation",
"Do you want to cancel the download?": "Voulez-vous annuler le téléchargement ?",
"Estimated Size:": "Taille estimée :",
"Download Playlist:": "Télécharger la playlist :",
"Download Entire Playlist": "Télécharger toute la playlist",
"Playlist": "Playlist",
"Format:": "Format :",
"Error fetching metadata.": "Erreur lors de la récupération des métadonnées.",
"Invalid path or parent directory missing": "Chemin invalide ou dossier parent manquant.",
"Directory does not exist. It will be created.": "Le dossier n'existe pas. Il sera créé.",
"Started Seeding...": "Partage démarré...",
"Start Seeding": "Démarrer le partage",
"Stop Seeding": "Arrêter le partage",
"Stopped Seeding": "Partage arrêté",
"Pause Seeding": "Mettre en pause le partage",
"Seeding": "En partage",
"Ratio": "Ratio",
"Uploaded": "Envoyé",
"Up Speed": "Vitesse d'envoi",
"Peers:": "Pairs :",
"Seeds": "Sources",
"File not found for verification": "Fichier introuvable pour la vérification",
"Checksum Verified": "Somme de contrôle vérifiée",
"Checksum Mismatch": "Erreur de somme de contrôle",
"Error during verification": "Erreur lors de la vérification",
"Scheduled Start:": "Démarrage programmé :",
"Select All / None": "Sélectionner Tout / Aucun",
"Metadata was not found. The torrent might be dead or timeout was too short": "Métadonnées introuvables. Le torrent est peut-être mort ou le délai d'attente était trop court",
"Seeding the Torrent File in The Backgound:": "Partage du fichier torrent en arrière-plan :",
"Seeding is Paused": "Le partage est en pause",
"Scheduled": "Programmé",
"Stop Download": "Arrêter le téléchargement",
"Schedule Start Time": "Programmer l'heure de début",
"Time is in the past. Will start immediately.": "L'heure est passée. Démarrage immédiat.",
"Download will start immediately.": "Le téléchargement commencera immédiatement.",
"Starts on:": "Démarrage le :",
"in": "dans",
"h": "h",
"m": "m",
"Invalid Date": "Date invalide",
"When All Downloads Finish": "Une fois tous les téléchargements terminés",
"Torrents": "Torrents",
"Keyboard Shortcuts": "Raccourcis clavier",
"Click a button to change its shortcut. Press Backspace to disable.": "Cliquez sur un bouton pour modifier son raccourci. Appuyez sur Retour arrière pour désactiver.",
"Couldn't Open File:": "Impossible d'ouvrir le fichier :",
"Couldn't Open Folder": "Impossible d'ouvrir le dossier",
"Icon Design": "Design des icônes",
"Visit FlameGet Repository": "Visiter le dépôt FlameGet",
"A fast, modern download manager.\n\nIcons provided by the XApp Project under the LGPL-3.0 License.": "Un gestionnaire de téléchargement rapide et moderne.\n\nIcônes fournies par le projet XApp sous licence LGPL-3.0.",
"Backend Download Engines": "Moteurs de téléchargement (Backend)",
"Essential components installed successfully!": "Composants essentiels installés avec succès !",
"Failed to install components. Please check your connection.": "Échec de l'installation des composants. Veuillez vérifier votre connexion.",
"About FlameGet": "À propos de FlameGet",
"Report a Bug": "Signaler un bug",
"Donate": "Faire un don",
"Show/Hide Window": "Afficher/Masquer la fenêtre",
"Process Link": "Traiter le lien",
"Files": "Fichiers",
"Name:": "Nom :",
"Size:": "Taille :",
"URL:": "URL :",
"Delete Selected": "Supprimer la sélection",
"Close Window": "Fermer la fenêtre",
"Quit Application": "Quitter l'application",
"Row size (px):": "Taille de la ligne (px) :",
"Set the size of your rows in pixels": "Définissez la taille de vos lignes en pixels",
"HLS Stream Detected": "Flux HLS détecté",
"Directly pasting HLS (ending with .m3u8 or .ts) links is not supported.\n\nTo download this video, please open the webpage in your browser and click the <b>FlameGet Extension</b> to catch the stream automatically!": "Coller directement des liens HLS (se terminant par .m3u8 ou .ts) n'est pas pris en charge.\n\nPour télécharger cette vidéo, veuillez ouvrir la page Web dans votre navigateur et cliquer sur l'<b>Extension FlameGet</b> pour capturer le flux automatiquement !",
"Copied to clipboard!": "Copié dans le presse-papiers !",
"If checked, seeding torrents will be disabled.": "Si coché, le partage des torrents sera désactivé.",
"Disable Seeding": "Désactiver le partage",
"Check For Updates": "Vérifier les mises à jour",
"File was successfully moved!": "Le fichier a été déplacé avec succès !",
"Grab and drag anywhere": "Saisissez et glissez n'importe où",
"Drag to a folder or Desktop": "Faites glisser vers un dossier ou le bureau",
"File copied to destination.": "Fichier copié vers la destination.",
"Verify SHA256 Checksum:": "Vérifier la somme de contrôle SHA256 :",
"On Completion:": "À la fin :",
"Use Global Setting": "Utiliser le paramètre global",
"Do Nothing": "Ne rien faire",
"Shutdown System": "Éteindre le système",
"Restart System": "Redémarrer le système",
"Suspend System": "Mettre en veille le système",
"Run Custom Command": "Exécuter une commande personnalisée",
"Shortcuts": "Raccourcis",
"Full path to file": "Chemin d'accès complet au fichier",
"Filename only": "Nom du fichier uniquement",
"Folder path only": "Chemin du dossier uniquement",
"Download URL": "URL de téléchargement",
"Size in bytes": "Taille en octets",
"Variables you can use:": "Variables utilisables :",
"Database purged.": "Base de données purgée.",
"Factory Reset": "Réinitialisation d'usine",
"WARNING: This will destroy all settings, history, and cache. Are you absolutely sure?": "AVERTISSEMENT : Cela détruira tous les paramètres, l'historique et le cache. Êtes-vous absolument sûr(e) ?",
"Reset Settings": "Réinitialiser les paramètres",
"Are you sure you want to revert all settings to their default values?": "Êtes-vous sûr(e) de vouloir rétablir tous les paramètres à leurs valeurs par défaut ?",
"Purge Database": "Purger la base de données",
"Are you sure you want to permanently delete your download history? This cannot be undone.": "Êtes-vous sûr(e) de vouloir supprimer définitivement votre historique de téléchargement ? Cette action est irréversible.",
"Clear Cache": "Vider le cache",
"Are you sure you want to clear the application cache? This will remove temporary files.": "Êtes-vous sûr(e) de vouloir vider le cache de l'application ? Cela supprimera les fichiers temporaires.",
"Maintenance": "Maintenance",
"Clear Application Cache": "Vider le cache de l'application",
"Danger Zone": "Zone de danger",
"Removes temporary files, orphaned thumbnails, and broken downloads.": "Supprime les fichiers temporaires, les miniatures orphelines et les téléchargements corrompus.",
"Clean Cache": "Nettoyer le cache",
"Clear History": "Effacer l'historique",
"Permanently deletes your entire download history. Files on disk are kept.": "Supprime définitivement tout votre historique de téléchargement. Les fichiers sur le disque sont conservés.",
"Reset": "Réinitialiser",
"Reverts all application settings and limits back to their defaults.": "Rétablit tous les paramètres et limites de l'application à leurs valeurs par défaut.",
"Nukes everything: settings, database, and cache. Cannot be undone.": "Détruit tout : paramètres, base de données et cache. Cette action est irréversible.",
"Cache successfully cleared.": "Cache vidé avec succès.",
"Cache was already cleared.": "Le cache était déjà vide.",
"Queue Settings": "Paramètres de la file d'attente",
"High": "Haute",
"Normal": "Normale",
"Low": "Basse",
"Apply": "Appliquer",
"Time:": "Heure :",
"The url is being processed please wait some seconds...": "L'URL est en cours de traitement, veuillez patienter quelques secondes...",
"Download Priority:": "Priorité de téléchargement :",
"Limit Bandwidth": "Limiter la bande passante",
"Scheduled for:": "Programmé pour :",
"Today at": "Aujourd'hui à",
"Tomorrow at": "Demain à",
"at": "à",
"Max Concurrent Downloads": "Téléchargements simultanés maximum",
"Max Retries on Connection Failure": "Tentatives maximum en cas d'échec de connexion",
"Timeout: Could not find metadata on the network.": "Délai dépassé : Impossible de trouver les métadonnées sur le réseau.",
"Fetching metadata from peers... Please wait.": "Récupération des métadonnées depuis les pairs... Veuillez patienter.",
"Failed to retrieve torrent info.": "Échec de la récupération des informations du torrent.",
"Please remove forbidden characters.": "Veuillez retirer les caractères interdits.",
"Filename cannot end with a space or period.": "Le nom de fichier ne peut pas se terminer par un espace ou un point.",
"Filename contains invalid characters (e.g., \\ / : * ? \" < > |).": "Le nom de fichier contient des caractères invalides (ex : \\ / : * ? \" < > |).",
"Metadata was not found. Torrent dead or timed out.": "Métadonnées introuvables. Torrent inactif ou délai dépassé.",
"Failed to download torrent file.": "Échec du téléchargement du fichier torrent."
},
"es": {
"General": "General", "Network": "Red", "Appearance": "Apariencia", "File Name": "Nombre del Archivo", "Segments": "Segmentos", "Mode": "Modo",
"Settings": "Configuraciones", "Download Finished": "Descarga Finalizada", "Auto-detected": "Autodetectado", "Cancel": "Cancelar",
"New Download": "Nueva Descarga", "Active": "Activo", "Paused": "Pausado", "Total": "Total", "Add To Queue": "Añadir a la Cola",
"Open File": "Abrir Archivo", "Open Folder": "Abrir Carpeta", "Copy Download Link": "Copiar Enlace", "Download Now": "Descargar Ahora",
"Pause Download": "Pausar Descarga", "Resume Download": "Reanudar Descarga", "Retry Download": "Reintentar Descarga",
"Delete File": "Eliminar Archivo", "Name": "Nombre", "Size": "Tamaño", "Date Added": "Fecha de Adición", "Speed": "Velocidad", "All": "Todos", "Status": "Estado",
"Select All": "Seleccionar Todo", "Compressed": "Comprimidos", "Programs": "Programas", "Videos": "Vídeos", "Music": "Música", "Pictures": "Imágenes", "Documents": "Documentos",
"Finished": "Terminados", "Unfinished": "No Terminados", "Search in the List": "Buscar en la Lista", "Start on Boot": "Iniciar al Arrancar", "or any yt_dlp supported Link": "o cualquier enlace compatible con yt_dlp",
"Do you want to delete": "¿Quieres eliminar", "items": "elementos", "item": "elemento", "Confirm": "Confirmar", " Delete Associated Files?": " ¿Eliminar archivos asociados?",
"Paused at": "Pausado en", "UNKNOWN": "DESCONOCIDO",
"Default Download Directory": "Directorio de descarga predeterminado",
"Language (Requires Restart)": "Idioma (requiere reinicio)",
"Download Engine (Backend)": "Motor de descarga (Backend)",
"User Agent": "Agente de usuario",
"Default Segments (Connections)": "Segmentos predeterminados",
"Global Speed Limit (e.g. 500, Only numbers (value auto converts to K)":"Límite de velocidad global (ej. 500K, 2M, 0=Ilim)",
"Global Theme": "Tema global",
"System": "Sistema",
"Light": "Claro",
"Dark": "Oscuro",
"Custom": "Personalizado",
"Context Menu Offset" :"Desplazamiento del menú contextual",
"Change This if You Have Troubles With Your Context Menu.":"Cambia esto si tienes problemas con el menú contextual.",
"Offset Y:": "Desplazamiento Y:",
"Offset X:": "Desplazamiento X:",
"Disable cell borders": "Desactivar bordes de celda",
"Application Font": "Fuente de la aplicación",
"UI Scale (%)": "Escala de interfaz (%)",
"Custom Theme CSS File": "Archivo CSS de tema personalizado",
"Save & Apply CSS": "Guardar y aplicar CSS",
"Browser Integration (Don't have it?)": "Integración del navegador (¿No la tienes?)",
"click here": "clic aquí",
"Enable Browser Integration": "Habilitar integración del navegador",
"Browser Integration Port": "Puerto de integración del navegador",
"Save To:": "Guardar en:",
"Choose Directory": "Elegir directorio",
"Download Playlist": "Descargar lista de reproducción",
"If the link is a playlist, download all videos": "Si el enlace es una lista, descargar todos los videos",
"Embed Subtitles": "Incrustar subtítulos",
"Embed Thumbnail": "Incrustar miniatura",
"Quality:": "Calidad:",
"Container:": "Contenedor:",
"Process URL": "Procesar URL",
"Browser": "Navegador",
"Confirm before deleting tasks": "Confirmar antes de eliminar tareas",
"Show Desktop Notifications (When finished)": "Mostrar notificaciones de escritorio (al finalizar)",
"Show Dialog when Download Finishes": "Mostrar diálogo al finalizar la descarga",
"Resume Support:": "Soporte de reanudación:",
"YES": "SÍ",
"NO": "NO",
"Cancelled.": "Cancelado.",
"Download": "Descargar",
"Downloaded": "Descargado",
"Paused.": "Pausado.",
"Pause": "Pausa",
"Updating...": "Actualizando...",
"Downloading...": "Descargando...",
"File is Already Downloading!": "¡El archivo ya se está descargando!",
"Download Completed.": "Descarga completada.",
"Error:": "Error:",
"No internet connection. Please reconnect": "Sin conexión a internet. Por favor reconecte",
"Error during YouTube download": "Error durante la descarga de YouTube",
"Converting...": "Convirtiendo...",
"Downloading:": "Descargando:",
"Item": "Elemento",
"Downloaded:": "Descargado:",
"Progress": "Progreso",
"Error Occurred": "Ocurrió un error",
"Retry": "Reintentar",
"Error adding download": "Error al añadir descarga",
"Connection Error": "Error de conexión",
"File already exists.": "El archivo ya existe.",
"Downloading Video...": "Descargando video...",
"Fix filename before downloading.": "Corrija el nombre del archivo antes de descargar.",
"Saving to:": "Guardando en:",
"Filename cannot be empty.": "El nombre del archivo no puede estar vacío.",
"Filename contains invalid characters.": "El nombre contiene caracteres inválidos.",
"File Size:": "Tamaño del archivo:",
"File URL:": "URL del archivo:",
"File Name:": "Nombre del archivo:",
"Download Menu": "Menú de descarga",
"Enter the maximum number of connections for downloading": "Ingrese el número máximo de conexiones para descargar",
"Number of Connections:": "Número de conexiones:",
"Enter speed limit in KB/s, e.g., 400 for 400 KB/s": "Ingrese límite de velocidad en KB/s, ej. 400 para 400 KB/s",
"Speed Limit (KB/s)": "Límite de velocidad (KB/s)",
"Speed Limit:": "Límite de velocidad:",
"Fetching Data...": "Obteniendo datos...",
"Choose Download Folder": "Elegir carpeta de descarga",
"Show/Hide": "Mostrar/Ocultar",
"Quit": "Salir",
"Info": "Información",
"Resuming Download": "Reanudando descarga",
"Opening File: ": "Abriendo archivo: ",
"Show Short Pop-up Messages (Toasts)": "Mostrar mensajes emergentes cortos (Toasts)",
"Downloading URL...": "Descargando URL...",
"Added URL successfully!": "¡URL añadida con éxito!",
"Opening File's Folder...": "Abriendo carpeta del archivo...",
"Deleted Selected Files Successfully.": "Archivos seleccionados eliminados con éxito.",
"Deleted Selected File Successfully.": "Archivo seleccionado eliminado con éxito.",
"Connections: ": "Conexiones: ",
"Speed Limit": "Límite de velocidad",
"Drop Here": "Soltar aquí",
"Checking Integrity...": "Comprobando integridad...",
"Show Trackers": "Mostrar rastreadores",
"Invalid Tracker URL": "URL del rastreador inválida",
"Enter Tracker URL (UDP/HTTP)": "Introducir URL del rastreador (UDP/HTTP)",
"Name: -": "Nombre: -",
"Size: -": "Tamaño: -",
"Add New Tracker": "Añadir nuevo rastreador",
"Waiting to Verify...": "Esperando verificación...",
"Searching for Peers...": "Buscando pares...",
"Stalled / No Peers": "Estancado / Sin pares",
"Verifying Checksum": "Verificando suma de comprobación",
"Seed Time (min):": "Tiempo de siembra (min):",
"Seed Ratio:": "Ratio de siembra:",
"Retrieving file list...": "Recuperando lista de archivos...",
"Click 'Process Link' to fetch metadata.": "Haga clic en 'Procesar enlace' para obtener metadatos.",
"Torrent Detected.": "Torrent detectado.",
"Please select at least one file to download.": "Por favor, seleccione al menos un archivo para descargar.",
"Copied to clipboard:": "Copiado al portapapeles:",
"Downloading Playlist...": "Descargando lista de reproducción...",
"Retrieving data. Wait a few seconds": "Recuperando datos. Espere unos segundos",
"Start Download Immediately": "Iniciar descarga inmediatamente",
"If checked, the download will begin instantly when added, skipping the 'Download' button.": "Si se marca, la descarga comenzará instantáneamente al añadirla, omitiendo el botón 'Descargar'.",
"Start in Minimized Mode": "Iniciar en modo minimizado",
"If checked, The Download Will Begin in The Background.": "Si se marca, la descarga comenzará en segundo plano.",
"Select Download Folder": "Seleccionar carpeta de descarga",
"You Can't Delete Items During a Download. Please Stop The Operation First.": "No puede eliminar elementos durante una descarga. Por favor, detenga la operación primero.",
"Size: Timeout (Metadata not found)": "Tamaño: Tiempo de espera (Metadatos no encontrados)",
"Copy URL": "Copiar URL",
"WARNING! DANGEROUS TERRITORY!": "¡ADVERTENCIA! ¡TERRITORIO PELIGROSO!",
"Custom Command (Shell):": "Comando personalizado (Shell):",
"Stopped at": "Detenido en",
"trackers.": "rastreadores.",
"Added": "Añadido",
"skipped": "omitido",
"Trackers already exist.": "Los rastreadores ya existen.",
"No valid trackers found.": "No se encontraron rastreadores válidos.",
"Starting The Downloader Please Wait...": "Iniciando el descargador, por favor espere...",
"File Has Already Been Downloaded": "El archivo ya ha sido descargado",
"Delete Confirmation": "Confirmación de eliminación",
"Finishing up...": "Finalizando...",
"Cancel Confirmation": "Confirmación de cancelación",
"Do you want to cancel the download?": "¿Desea cancelar la descarga?",
"Estimated Size:": "Tamaño estimado:",
"Download Playlist:": "Descargar lista de reproducción:",
"Download Entire Playlist": "Descargar lista completa",
"Playlist": "Lista de reproducción",
"Format:": "Formato:",
"Error fetching metadata.": "Error al obtener metadatos.",
"Invalid path or parent directory missing": "Ruta no válida o falta el directorio principal.",
"Directory does not exist. It will be created.": "El directorio no existe. Se creará.",
"Started Seeding...": "Siembra iniciada...",
"Start Seeding": "Iniciar siembra",
"Stop Seeding": "Detener siembra",
"Stopped Seeding": "Siembra detenida",
"Pause Seeding": "Pausar siembra",
"Seeding": "Sembrando",
"Ratio": "Ratio",
"Uploaded": "Subido",
"Up Speed": "Velocidad de subida",
"Peers:": "Pares:",
"Seeds": "Semillas",
"File not found for verification": "Archivo no encontrado para verificación",
"Checksum Verified": "Suma de comprobación verificada",
"Checksum Mismatch": "Error en suma de comprobación",
"Error during verification": "Error durante la verificación",
"Scheduled Start:": "Inicio programado:",
"Select All / None": "Seleccionar Todo / Ninguno",
"Metadata was not found. The torrent might be dead or timeout was too short": "Metadatos no encontrados. El torrent podría estar inactivo o el tiempo de espera fue demasiado corto",
"Seeding the Torrent File in The Backgound:": "Sembrando el archivo torrent en segundo plano:",
"Seeding is Paused": "La siembra está pausada",
"Scheduled": "Programado",
"Stop Download": "Detener descarga",
"Schedule Start Time": "Programar hora de inicio",
"Time is in the past. Will start immediately.": "La hora ya pasó. Comenzará inmediatamente.",
"Download will start immediately.": "La descarga comenzará inmediatamente.",
"Starts on:": "Comienza el:",
"in": "en",
"h": "h",
"m": "m",
"Invalid Date": "Fecha inválida",
"When All Downloads Finish": "Cuando finalicen todas las descargas",
"Torrents": "Torrents",
"Keyboard Shortcuts": "Atajos de teclado",
"Click a button to change its shortcut. Press Backspace to disable.": "Haga clic en un botón para cambiar su atajo. Presione Retroceso para desactivar.",
"Couldn't Open File:": "No se pudo abrir el archivo:",
"Couldn't Open Folder": "No se pudo abrir la carpeta",
"Icon Design": "Diseño de iconos",
"Visit FlameGet Repository": "Visitar el repositorio de FlameGet",
"A fast, modern download manager.\n\nIconos proporcionados por el Proyecto XApp bajo la licencia LGPL-3.0.": "Un gestor de descargas rápido y moderno.\n\nIconos proporcionados por el Proyecto XApp bajo la licencia LGPL-3.0.",
"Backend Download Engines": "Motores de descarga (Backend)",
"Essential components installed successfully!": "¡Componentes esenciales instalados con éxito!",
"Failed to install components. Please check your connection.": "Error al instalar componentes. Por favor, compruebe su conexión.",
"About FlameGet": "Acerca de FlameGet",
"Report a Bug": "Reportar un error",
"Donate": "Donar",
"Show/Hide Window": "Mostrar/Ocultar ventana",
"Process Link": "Procesar enlace",
"Files": "Archivos",
"Name:": "Nombre:",
"Size:": "Tamaño:",
"URL:": "URL:",
"Delete Selected": "Eliminar selección",
"Close Window": "Cerrar ventana",
"Quit Application": "Salir de la aplicación",
"Row size (px):": "Tamaño de fila (px):",
"Set the size of your rows in pixels": "Establezca el tamaño de sus filas en píxeles",
"HLS Stream Detected": "Flujo HLS detectado",
"Directly pasting HLS (ending with .m3u8 or .ts) links is not supported.\n\nTo download this video, please open the webpage in your browser and click the <b>FlameGet Extension</b> to catch the stream automatically!": "Pegar directamente enlaces HLS (que terminan en .m3u8 o .ts) no es compatible.\n\nPara descargar este video, abra la página web en su navegador y haga clic en la <b>Extensión FlameGet</b> para capturar la transmisión automáticamente.",
"Copied to clipboard!": "¡Copiado al portapapeles!",
"If checked, seeding torrents will be disabled.": "Si se marca, la siembra de torrents se desactivará.",
"Disable Seeding": "Desactivar siembra",
"Check For Updates": "Buscar actualizaciones",
"File was successfully moved!": "¡El archivo se movió con éxito!",
"Grab and drag anywhere": "Agarre y arrastre a cualquier lugar",
"Drag to a folder or Desktop": "Arrastre a una carpeta o al escritorio",
"File copied to destination.": "Archivo copiado al destino.",
"Verify SHA256 Checksum:": "Verificar suma de comprobación SHA256:",
"On Completion:": "Al finalizar:",
"Use Global Setting": "Usar configuración global",
"Do Nothing": "No hacer nada",
"Shutdown System": "Apagar el sistema",
"Restart System": "Reiniciar el sistema",
"Suspend System": "Suspender el sistema",
"Run Custom Command": "Ejecutar comando personalizado",
"Shortcuts": "Atajos",
"Full path to file": "Ruta completa del archivo",
"Filename only": "Solo nombre del archivo",
"Folder path only": "Solo ruta de la carpeta",
"Download URL": "URL de descarga",
"Size in bytes": "Tamaño en bytes",
"Variables you can use:": "Variables que puede usar:",
"Database purged.": "Base de datos purgada.",
"Factory Reset": "Restablecimiento de fábrica",
"WARNING: This will destroy all settings, history, and cache. Are you absolutely sure?": "ADVERTENCIA: Esto destruirá todas las configuraciones, el historial y la caché. ¿Estás absolutamente seguro?",
"Reset Settings": "Restablecer configuraciones",
"Are you sure you want to revert all settings to their default values?": "¿Estás seguro de que quieres revertir todas las configuraciones a sus valores predeterminados?",
"Purge Database": "Purgar base de datos",
"Are you sure you want to permanently delete your download history? This cannot be undone.": "¿Estás seguro de que quieres eliminar permanentemente tu historial de descargas? Esto no se puede deshacer.",
"Clear Cache": "Borrar caché",
"Are you sure you want to clear the application cache? This will remove temporary files.": "¿Estás seguro de que quieres borrar la caché de la aplicación? Esto eliminará los archivos temporales.",
"Maintenance": "Mantenimiento",
"Clear Application Cache": "Borrar caché de la aplicación",
"Danger Zone": "Zona de peligro",
"Removes temporary files, orphaned thumbnails, and broken downloads.": "Elimina archivos temporales, miniaturas huérfanas y descargas rotas.",
"Clean Cache": "Limpiar caché",
"Clear History": "Borrar historial",
"Permanently deletes your entire download history. Files on disk are kept.": "Elimina permanentemente todo tu historial de descargas. Los archivos en el disco se mantienen.",
"Reset": "Restablecer",
"Reverts all application settings and limits back to their defaults.": "Revierte todas las configuraciones y límites de la aplicación a sus valores predeterminados.",
"Nukes everything: settings, database, and cache. Cannot be undone.": "Elimina todo: configuraciones, base de datos y caché. No se puede deshacer.",
"Cache successfully cleared.": "Caché borrado con éxito.",
"Cache was already cleared.": "El caché ya estaba borrado.",
"Queue Settings": "Configuraciones de la cola",
"High": "Alta",
"Normal": "Normal",
"Low": "Baja",
"Apply": "Aplicar",
"Time:": "Hora:",
"The url is being processed please wait some seconds...": "La URL está siendo procesada, por favor espere unos segundos...",
"Download Priority:": "Prioridad de descarga:",
"Limit Bandwidth": "Limitar ancho de banda",
"Scheduled for:": "Programado para:",
"Today at": "Hoy a las",
"Tomorrow at": "Mañana a las",
"at": "a las",
"Max Concurrent Downloads": "Descargas simultáneas máximas",
"Max Retries on Connection Failure": "Reintentos máximos por fallo de conexión",
"Timeout: Could not find metadata on the network.": "Tiempo de espera: No se pudieron encontrar metadatos en la red.",
"Fetching metadata from peers... Please wait.": "Obteniendo metadatos de los pares... Por favor, espere.",
"Failed to retrieve torrent info.": "Error al recuperar la información del torrent.",
"Please remove forbidden characters.": "Por favor, elimine los caracteres prohibidos.",
"Filename cannot end with a space or period.": "El nombre de archivo no puede terminar con un espacio o un punto.",
"Filename contains invalid characters (e.g., \\ / : * ? \" < > |).": "El nombre de archivo contiene caracteres inválidos (ej., \\ / : * ? \" < > |).",
"Metadata was not found. Torrent dead or timed out.": "Metadatos no encontrados. Torrent inactivo o tiempo de espera agotado.",
"Failed to download torrent file.": "Error al descargar el archivo torrent."
},
"ru": {
"General": "Общие", "Network": "Сеть", "Appearance": "Внешний вид", "File Name": "Имя файла", "Segments": "Сегменты", "Mode": "Режим",
"Settings": "Настройки", "Download Finished": "Загрузка завершена", "Auto-detected": "Автоматически", "Cancel": "Отмена",
"New Download": "Новая загрузка", "Active": "Активные", "Paused": "На паузе", "Total": "Всего", "Add To Queue": "Добавить в очередь",
"Open File": "Открыть файл", "Open Folder": "Открыть папку", "Copy Download Link": "Копировать ссылку", "Download Now": "Скачать сейчас",
"Pause Download": "Приостановить", "Resume Download": "Продолжить", "Retry Download": "Повторить",
"Delete File": "Удалить файл", "Name": "Имя", "Size": "Размер", "Date Added": "Дата добавления", "Speed": "Скорость", "All": "Все", "Status": "Статус",
"Select All": "Выбрать все", "Compressed": "Архивы", "Programs": "Программы", "Videos": "Видео", "Music": "Музыка", "Pictures": "Изображения", "Documents": "Документы",
"Finished": "Завершенные", "Unfinished": "Неоконченные", "Search in the List": "Поиск в списке", "Start on Boot": "Запускать при старте", "or any yt_dlp supported Link": "или любая ссылка, поддерживаемая yt_dlp",
"Do you want to delete": "Вы хотите удалить", "items": "элементов", "item": "элемент", "Confirm": "Подтвердить", " Delete Associated Files?": " Удалить связанные файлы?",
"Paused at": "Пауза на", "UNKNOWN": "НЕИЗВЕСТНО",
"Default Download Directory": "Каталог загрузки по умолчанию",
"Language (Requires Restart)": "Язык (требуется перезапуск)",
"Download Engine (Backend)": "Движок загрузки (Backend)",
"User Agent": "User Agent",
"Default Segments (Connections)": "Сегменты по умолчанию",
"Global Speed Limit (e.g. 500, Only numbers (value auto converts to K)":"Глобальный лимит скорости (напр. 500K, 2M, 0=Нет)",
"Global Theme": "Глобальная тема",
"System": "Системная",
"Light": "Светлая",
"Dark": "Темная",
"Custom": "Пользовательская",
"Context Menu Offset" :"Смещение контекстного меню",
"Change This if You Have Troubles With Your Context Menu.":"Измените это, если есть проблемы с контекстным меню.",
"Offset Y:": "Смещение Y:",
"Offset X:": "Смещение X:",
"Disable cell borders": "Отключить границы ячеек",
"Application Font": "Шрифт приложения",
"UI Scale (%)": "Масштаб интерфейса (%)",
"Custom Theme CSS File": "Файл CSS темы",
"Save & Apply CSS": "Сохранить и применить CSS",
"Browser Integration (Don't have it?)": "Интеграция с браузером (Нет её?)",
"click here": "жмите сюда",
"Enable Browser Integration": "Включить интеграцию с браузером",
"Browser Integration Port": "Порт интеграции",
"Save To:": "Сохранить в:",
"Choose Directory": "Выбрать папку",
"Download Playlist": "Скачать плейлист",
"If the link is a playlist, download all видео": "Если ссылка на плейлист, скачать все видео",
"Embed Subtitles": "Вшить субтитры",
"Embed Thumbnail": "Вшить обложку",
"Quality:": "Качество:",
"Container:": "Контейнер:",
"Process URL": "Обработать URL",
"Browser": "Браузер",
"Confirm before deleting tasks": "Подтверждать удаление задач",
"Show Desktop Notifications (When finished)": "Уведомления на рабочем столе (при завершении)",
"Show Dialog when Download Finishes": "Диалог при завершении загрузки",
"Resume Support:": "Поддержка докачки:",
"YES": "ДА",
"NO": "НЕТ",
"Cancelled.": "Отменено.",
"Download": "Скачать",
"Downloaded": "Загружено",
"Paused.": "На паузе.",
"Pause": "Пауза",
"Updating...": "Обновление...",
"Downloading...": "Загрузка...",
"File is Already Downloading!": "Файл уже скачивается!",
"Download Completed.": "Загрузка завершена.",
"Error:": "Ошибка:",
"No internet connection. Please reconnect": "Нет соединения. Пожалуйста, переподключитесь",
"Error during YouTube download": "Ошибка при загрузке с YouTube",
"Converting...": "Конвертация...",
"Downloading:": "Загрузка:",
"Item": "Элемент",
"Downloaded:": "Скачано:",
"Progress": "Прогресс",
"Error Occurred": "Произошла ошибка",
"Retry": "Повторить",
"Error adding download": "Ошибка добавления загрузки",
"Connection Error": "Ошибка соединения",
"File already exists.": "Файл уже существует.",
"Downloading Video...": "Загрузка видео...",
"Fix filename before downloading.": "Исправьте имя файла перед загрузкой.",
"Saving to:": "Сохранение в:",
"Filename cannot be empty.": "Имя файла не может быть пустым.",
"Filename contains invalid characters.": "Имя содержит недопустимые символы.",
"File Size:": "Размер файла:",
"File URL:": "URL файла:",
"File Name:": "Имя файла:",
"Download Menu": "Меню загрузки",
"Enter the maximum number of connections for downloading": "Введите макс. число соединений для загрузки",
"Number of Connections:": "Количество соединений:",
"Enter speed limit in KB/s, e.g., 400 for 400 KB/s": "Введите лимит скорости в КБ/с, напр. 400",
"Speed Limit (KB/s)": "Лимит скорости (КБ/с)",
"Speed Limit:": "Лимит скорости:",
"Fetching Data...": "Получение данных...",
"Choose Download Folder": "Выбрать папку загрузки",
"Show/Hide": "Показать/Скрыть",
"Quit": "Выход",
"Info": "Информация",
"Resuming Download": "Возобновление загрузки",
"Opening File: ": "Открытие файла: ",
"Show Short Pop-up Messages (Toasts)": "Показывать всплывающие уведомления (Toasts)",
"Downloading URL...": "Загрузка URL...",
"Added URL successfully!": "URL успешно добавлен!",
"Opening File's Folder...": "Открытие папки файла...",
"Deleted Selected Files Successfully.": "Выбранные файлы успешно удалены.",
"Deleted Selected File Successfully.": "Выбранный файл успешно удален.",
"Connections: ": "Соединения: ",
"Speed Limit": "Лимит скорости",
"Drop Here": "Перетащите сюда",
"Checking Integrity...": "Проверка целостности...",
"Show Trackers": "Показать трекеры",
"Invalid Tracker URL": "Неверный URL трекера",
"Enter Tracker URL (UDP/HTTP)": "Введите URL трекера (UDP/HTTP)",
"Name: -": "Имя: -",
"Size: -": "Размер: -",
"Add New Tracker": "Добавить новый трекер",
"Waiting to Verify...": "Ожидание проверки...",
"Searching for Peers...": "Поиск пиров...",
"Stalled / No Peers": "Остановлено / Нет пиров",
"Verifying Checksum": "Проверка контрольной суммы",
"Seed Time (min):": "Время раздачи (мин):",
"Seed Ratio:": "Коэфф. раздачи:",
"Retrieving file list...": "Получение списка файлов...",
"Click 'Process Link' to fetch metadata.": "Нажмите 'Обработать ссылку' для получения метаданных.",
"Torrent Detected.": "Обнаружен торрент.",
"Please select at least one file to download.": "Пожалуйста, выберите хотя бы один файл для загрузки.",
"Copied to clipboard:": "Скопировано в буфер обмена:",
"Downloading Playlist...": "Загрузка плейлиста...",
"Retrieving data. Wait a few seconds": "Получение данных. Подождите несколько секунд",
"Start Download Immediately": "Начать загрузку немедленно",
"If checked, the download will begin instantly when added, skipping the 'Download' button.": "Если отмечено, загрузка начнется сразу после добавления, минуя кнопку 'Скачать'.",
"Start in Minimized Mode": "Запускать в свернутом режиме",
"If checked, The Download Will Begin in The Background.": "Если отмечено, загрузка начнется в фоновом режиме.",
"Select Download Folder": "Выбрать папку для загрузки",
"You Can't Delete Items During a Download. Please Stop The Operation First.": "Нельзя удалять элементы во время загрузки. Сначала остановите операцию.",
"Size: Timeout (Metadata not found)": "Размер: Тайм-аут (Метаданные не найдены)",
"Copy URL": "Копировать URL",
"WARNING! DANGEROUS TERRITORY!": "ВНИМАНИЕ! ОПАСНАЯ ЗОНА!",
"Custom Command (Shell):": "Пользовательская команда (Shell):",
"Stopped at": "Остановлено на",
"trackers.": "трекеры.",
"Added": "Добавлено",
"skipped": "пропущено",
"Trackers already exist.": "Трекеры уже существуют.",
"No valid trackers found.": "Валидные трекеры не найдены.",
"Starting The Downloader Please Wait...": "Запуск загрузчика, пожалуйста, подождите...",
"File Has Already Been Downloaded": "Файл уже загружен",
"Delete Confirmation": "Подтверждение удаления",
"Finishing up...": "Завершение...",
"Cancel Confirmation": "Подтверждение отмены",
"Do you want to cancel the download?": "Вы хотите отменить загрузку?",
"Estimated Size:": "Примерный размер:",
"Download Playlist:": "Скачать плейлист:",
"Download Entire Playlist": "Скачать весь плейлист",
"Playlist": "Плейлист",
"Format:": "Формат:",
"Error fetching metadata.": "Ошибка получения метаданных.",
"Invalid path or parent directory missing": "Неверный путь или отсутствует родительский каталог.",
"Directory does not exist. It will be created.": "Каталог не существует. Он будет создан.",
"Started Seeding...": "Раздача начата...",
"Start Seeding": "Начать раздачу",
"Stop Seeding": "Остановить раздачу",
"Stopped Seeding": "Раздача остановлена",
"Pause Seeding": "Приостановить раздачу",
"Seeding": "Раздается",
"Ratio": "Рейтинг",
"Uploaded": "Отдано",
"Up Speed": "Скорость отдачи",
"Peers:": "Пиры:",
"Seeds": "Сиды",
"File not found for verification": "Файл не найден для проверки",
"Checksum Verified": "Контрольная сумма проверена",
"Checksum Mismatch": "Несовпадение контрольной суммы",
"Error during verification": "Ошибка во время проверки",
"Scheduled Start:": "Запланированный запуск:",
"Select All / None": "Выбрать Все / Ничего",
"Metadata was not found. The torrent might be dead or timeout was too short": "Метаданные не найдены. Торрент может быть мертв или время ожидания было слишком коротким",
"Seeding the Torrent File in The Backgound:": "Раздача торрента в фоновом режиме:",
"Seeding is Paused": "Раздача приостановлена",
"Scheduled": "Запланировано",
"Stop Download": "Остановить загрузку",
"Schedule Start Time": "Запланировать время запуска",
"Time is in the past. Will start immediately.": "Время истекло. Запуск немедленно.",
"Download will start immediately.": "Загрузка начнется немедленно.",
"Starts on:": "Запуск:",
"in": "через",
"h": "ч",
"m": "м",
"Invalid Date": "Неверная дата",
"When All Downloads Finish": "Когда все загрузки завершены",
"Torrents": "Торренты",
"Keyboard Shortcuts": "Горячие клавиши",
"Click a button to change its shortcut. Press Backspace to disable.": "Нажмите кнопку, чтобы изменить ярлык. Нажмите Backspace, чтобы отключить.",
"Couldn't Open File:": "Не удалось открыть файл:",
"Couldn't Open Folder": "Не удалось открыть папку",
"Icon Design": "Дизайн иконок",
"Visit FlameGet Repository": "Посетить репозиторий FlameGet",
"A fast, modern download manager.\n\nIcons provided by the XApp Project under the LGPL-3.0 License.": "Быстрый, современный менеджер загрузок.\n\nИконки предоставлены проектом XApp под лицензией LGPL-3.0.",
"Backend Download Engines": "Движки загрузки (Backend)",
"Essential components installed successfully!": "Необходимые компоненты успешно установлены!",
"Failed to install components. Please check your connection.": "Не удалось установить компоненты. Пожалуйста, проверьте подключение.",
"About FlameGet": "О FlameGet",
"Report a Bug": "Сообщить об ошибке",
"Donate": "Пожертвовать",
"Show/Hide Window": "Показать/Скрыть окно",
"Process Link": "Обработать ссылку",
"Files": "Файлы",
"Name:": "Имя:",
"Size:": "Размер:",
"URL:": "URL:",
"Delete Selected": "Удалить выбранное",
"Close Window": "Закрыть окно",
"Quit Application": "Выйти из приложения",
"Row size (px):": "Размер строки (px):",
"Set the size of your rows in pixels": "Установите размер строк в пикселях",
"HLS Stream Detected": "Обнаружен HLS-поток",
"Directly pasting HLS (ending with .m3u8 or .ts) links is not supported.\n\nTo download this video, please open the webpage in your browser and click the <b>FlameGet Extension</b> to catch the stream automatically!": "Прямая вставка ссылок HLS (заканчивающихся на .m3u8 или .ts) не поддерживается.\n\nЧтобы скачать это видео, откройте веб-страницу в браузере и нажмите на <b>расширение FlameGet</b> для автоматического перехвата потока!",
"Copied to clipboard!": "Скопировано в буфер обмена!",
"If checked, seeding torrents will be disabled.": "Если отмечено, раздача торрентов будет отключена.",
"Disable Seeding": "Отключить раздачу",
"Check For Updates": "Проверить обновления",
"File was successfully moved!": "Файл успешно перемещен!",
"Grab and drag anywhere": "Хватайте и перетаскивайте куда угодно",
"Drag to a folder or Desktop": "Перетащите в папку или на рабочий стол",
"File copied to destination.": "Файл скопирован в место назначения.",
"Verify SHA256 Checksum:": "Проверить контрольную сумму SHA256:",
"On Completion:": "По завершении:",
"Use Global Setting": "Использовать глобальные настройки",
"Do Nothing": "Ничего не делать",
"Shutdown System": "Выключить систему",
"Restart System": "Перезагрузить систему",
"Suspend System": "Перейти в спящий режим",
"Run Custom Command": "Выполнить пользовательскую команду",
"Shortcuts": "Ярлыки",
"Full path to file": "Полный путь к файлу",
"Filename only": "Только имя файла",
"Folder path only": "Только путь к папке",
"Download URL": "URL загрузки",
"Size in bytes": "Размер в байтах",
"Variables you can use:": "Переменные, которые можно использовать:",
"Database purged.": "База данных очищена.",
"Factory Reset": "Сброс до заводских настроек",
"WARNING: This will destroy all settings, history, and cache. Are you absolutely sure?": "ВНИМАНИЕ: Это уничтожит все настройки, историю и кэш. Вы абсолютно уверены?",
"Reset Settings": "Сброс настроек",
"Are you sure you want to revert all settings to their default values?": "Вы уверены, что хотите вернуть все настройки к значениям по умолчанию?",
"Purge Database": "Очистить базу данных",
"Are you sure you want to permanently delete your download history? This cannot be undone.": "Вы уверены, что хотите навсегда удалить историю загрузок? Это действие нельзя отменить.",
"Clear Cache": "Очистить кэш",
"Are you sure you want to clear the application cache? This will remove temporary files.": "Вы уверены, что хотите очистить кэш приложения? Это удалит временные файлы.",
"Maintenance": "Обслуживание",
"Clear Application Cache": "Очистить кэш приложения",
"Danger Zone": "Опасная зона",
"Removes temporary files, orphaned thumbnails, and broken downloads.": "Удаляет временные файлы, потерянные миниатюры и поврежденные загрузки.",
"Clean Cache": "Очистить кэш",
"Clear History": "Очистить историю",
"Permanently deletes your entire download history. Files on disk are kept.": "Навсегда удаляет всю историю загрузок. Файлы на диске сохраняются.",
"Reset": "Сбросить",
"Reverts all application settings and limits back to their defaults.": "Возвращает все настройки и лимиты приложения к значениям по умолчанию.",
"Nukes everything: settings, database, and cache. Cannot be undone.": "Уничтожает всё: настройки, базу данных и кэш. Невозможно отменить.",
"Cache successfully cleared.": "Кэш успешно очищен.",
"Cache was already cleared.": "Кэш уже был очищен.",
"Queue Settings": "Настройки очереди",
"High": "Высокий",
"Normal": "Обычный",
"Low": "Низкий",
"Apply": "Применить",
"Time:": "Время:",
"The url is being processed please wait some seconds...": "URL обрабатывается, пожалуйста, подождите несколько секунд...",
"Download Priority:": "Приоритет загрузки:",
"Limit Bandwidth": "Ограничение скорости",
"Scheduled for:": "Запланировано на:",
"Today at": "Сегодня в",
"Tomorrow at": "Завтра в",
"at": "в",
"Max Concurrent Downloads": "Максимум одновременных загрузок",
"Max Retries on Connection Failure": "Максимум попыток при сбое соединения",
"Timeout: Could not find metadata on the network.": "Тайм-аут: Не удалось найти метаданные в сети.",
"Fetching metadata from peers... Please wait.": "Получение метаданных от пиров... Пожалуйста, подождите.",
"Failed to retrieve torrent info.": "Не удалось получить информацию о торренте.",
"Please remove forbidden characters.": "Пожалуйста, удалите запрещенные символы.",
"Filename cannot end with a space or period.": "Имя файла не может заканчиваться пробелом или точкой.",
"Filename contains invalid characters (e.g., \\ / : * ? \" < > |).": "Имя файла содержит недопустимые символы (напр., \\ / : * ? \" < > |).",
"Metadata was not found. Torrent dead or timed out.": "Метаданные не найдены. Торрент мертв или время ожидания истекло.",
"Failed to download torrent file.": "Не удалось скачать торрент-файл."
},
"ar": {
"General": "عام", "Network": "الشبكة", "Appearance": "المظهر", "File Name": "اسم الملف", "Segments": "أجزاء", "Mode": "الوضع",
"Settings": "الإعدادات", "Download Finished": "اكتمل التحميل", "Auto-detected": "كشف تلقائي", "Cancel": "إلغاء",
"New Download": "تحميل جديد", "Active": "نشط", "Paused": "متوقف مؤقتاً", "Total": "الإجمالي", "Add To Queue": "إضافة إلى قائمة الانتظار",
"Open File": "فتح الملف", "Open Folder": "فتح المجلد", "Copy Download Link": "نسخ الرابط", "Download Now": "تحميل الآن",
"Pause Download": "إيقاف مؤقت", "Resume Download": "استئناف التحميل", "Retry Download": "إعادة المحاولة",
"Delete File": "حذف الملف", "Name": "الاسم", "Size": "الحجم", "Date Added": "تاريخ الإضافة", "Speed": "السرعة", "All": "الكل", "Status": "الحالة",
"Select All": "تحديد الكل", "Compressed": "ملفات مضغوطة", "Programs": "برامج", "Videos": "فيديو", "Music": "موسيقى", "Pictures": "صور", "Documents": "مستندات",
"Finished": "المكتملة", "Unfinished": "غير المكتملة", "Search in the List": "بحث في القائمة", "Start on Boot": "تشغيل عند الإقلاع", "or any yt_dlp supported Link": "أو أي رابط يدعمه yt_dlp",
"Do you want to delete": "هل تريد حذف", "items": "عناصر", "item": "عنصر", "Confirm": "تأكيد", " Delete Associated Files?": " حذف الملفات المرتبطة؟",
"Paused at": "متوقف عند", "UNKNOWN": "غير معروف",
"Default Download Directory": "مجلد التنزيل الافتراضي",
"Language (Requires Restart)": "اللغة (يتطلب إعادة التشغيل)",
"Download Engine (Backend)": "محرك التحميل (Backend)",
"User Agent": "وكيل المستخدم (User Agent)",
"Default Segments (Connections)": "الأجزاء الافتراضية (اتصالات)",
"Global Speed Limit (e.g. 500, Only numbers (value auto converts to K)":"حد السرعة العام (مثلاً 500K, 2M, 0=غير محدود)",
"Global Theme": "السمة العامة",
"System": "النظام",
"Light": "فاتح",
"Dark": "داكن",
"Custom": "مخصص",
"Context Menu Offset" :"إزاحة قائمة السياق",
"Change This if You Have Troubles With Your Context Menu.":"غير هذا إذا واجهت مشاكل مع قائمة السياق.",
"Offset Y:": "الإزاحة Y:",
"Offset X:": "الإزاحة X:",
"Disable cell borders": "تعطيل حدود الخلايا",
"Application Font": "خط التطبيق",
"UI Scale (%)": "مقياس الواجهة (%)",
"Custom Theme CSS File": "ملف CSS للسمة المخصصة",
"Save & Apply CSS": "حفظ وتطبيق CSS",
"Browser Integration (Don't have it?)": "دمج المتصفح (ليس لديك؟)",
"click here": "اضغط هنا",
"Enable Browser Integration": "تفعيل دمج المتصفح",
"Browser Integration Port": "منفذ دمج المتصفح",
"Save To:": "حفظ في:",
"Choose Directory": "اختيار المجلد",
"Download Playlist": "تحميل قائمة التشغيل",
"If the link is a playlist, download all videos": "إذا كان الرابط قائمة تشغيل، حمل كل الفيديوهات",
"Embed Subtitles": "تضمين الترجمة",
"Embed Thumbnail": "تضمين الصورة المصغرة",
"Quality:": "الجودة:",
"Container:": "الصيغة:",
"Process URL": "معالجة الرابط",
"Browser": "المتصفح",
"Confirm before deleting tasks": "تأكيد قبل حذف المهام",
"Show Desktop Notifications (When finished)": "إظهار إشعارات سطح المكتب (عند الانتهاء)",
"Show Dialog when Download Finishes": "إظهار مربع حوار عند اكتمال التحميل",
"Resume Support:": "دعم الاستكمال:",
"YES": "نعم",
"NO": "لا",
"Cancelled.": "ملغى.",
"Download": "تحميل",
"Downloaded": "تم التحميل",
"Paused.": "متوقف مؤقتاً.",
"Pause": "إيقاف مؤقت",
"Updating...": "جاري التحديث...",
"Downloading...": "جاري التحميل...",
"File is Already Downloading!": "الملف يتم تحميله بالفعل!",
"Download Completed.": "اكتمل التحميل.",
"Error:": "خطأ:",
"No internet connection. Please reconnect": "لا يوجد اتصال بالإنترنت. يرجى إعادة الاتصال",
"Error during YouTube download": "خطأ أثناء تحميل يوتيوب",
"Converting...": "جاري التحويل...",
"Downloading:": "جاري تحميل:",
"Item": "عنصر",
"Downloaded:": "تم تحميل:",
"Progress": "التقدم",
"Error Occurred": "حدث خطأ",
"Retry": "إعادة المحاولة",
"Error adding download": "خطأ في إضافة التحميل",
"Connection Error": "خطأ في الاتصال",
"File already exists.": "الملف موجود بالفعل.",
"Downloading Video...": "جاري تحميل الفيديو...",
"Fix filename before downloading.": "صحح اسم الملف قبل التحميل.",
"Saving to:": "حفظ إلى:",
"Filename cannot be empty.": "لا يمكن أن يكون اسم الملف فارغاً.",
"Filename contains invalid characters.": "اسم الملف يحتوي على رموز غير صالحة.",
"File Size:": "حجم الملف:",
"File URL:": "رابط الملف:",
"File Name:": "اسم الملف:",
"Download Menu": "قائمة التحميل",
"Enter the maximum number of connections for downloading": "أدخل الحد الأقصى لعدد الاتصالات للتحميل",
"Number of Connections:": "عدد الاتصالات:",
"Enter speed limit in KB/s, e.g., 400 for 400 KB/s": "أدخل حد السرعة بـ ك.ب/ث، مثال 400 لـ 400 ك.ب/ث",
"Speed Limit (KB/s)": "حد السرعة (ك.ب/ث)",
"Speed Limit:": "حد السرعة:",
"Fetching Data...": "جلب البيانات...",
"Choose Download Folder": "اختر مجلد التنزيل",
"Show/Hide": "إظهار/إخفاء",
"Quit": "خروج",
"Info": "معلومات",
"Resuming Download": "استئناف التحميل",
"Opening File: ": "جاري فتح الملف: ",
"Show Short Pop-up Messages (Toasts)": "إظهار رسائل منبثقة قصيرة (Toasts)",
"Downloading URL...": "جاري تحميل الرابط...",
"Added URL successfully!": "تم إضافة الرابط بنجاح!",
"Opening File's Folder...": "جاري فتح مجلد الملف...",
"Deleted Selected Files Successfully.": "تم حذف الملفات المحددة بنجاح.",
"Deleted Selected File Successfully.": "تم حذف الملف المحدد بنجاح.",
"Connections: ": "الاتصالات: ",
"Speed Limit": "حد السرعة",
"Drop Here": "أفلت الملفات هنا",
"Checking Integrity...": "التحقق من السلامة...",
"Show Trackers": "إظهار المتبعين (Trackers)",
"Invalid Tracker URL": "رابط المتبع غير صالح",
"Enter Tracker URL (UDP/HTTP)": "أدخل رابط المتبع (UDP/HTTP)",
"Name: -": "الاسم: -",
"Size: -": "الحجم: -",
"Add New Tracker": "إضافة متبع جديد",
"Waiting to Verify...": "بانتظار التحقق...",
"Searching for Peers...": "البحث عن أقران (Peers)...",
"Stalled / No Peers": "متوقف / لا يوجد أقران",
"Verifying Checksum": "التحقق من المجموع الاختباري",
"Seed Time (min):": "وقت التوزيع (دقيقة):",
"Seed Ratio:": "نسبة التوزيع:",
"Retrieving file list...": "جلب قائمة الملفات...",
"Click 'Process Link' to fetch metadata.": "اضغط على 'معالجة الرابط' لجلب البيانات الوصفية.",
"Torrent Detected.": "تم اكتشاف تورنت.",
"Please select at least one file to download.": "يرجى اختيار ملف واحد على الأقل للتحميل.",
"Copied to clipboard:": "تم النسخ إلى الحافظة:",
"Downloading Playlist...": "جاري تحميل قائمة التشغيل...",
"Retrieving data. Wait a few seconds": "جاري جلب البيانات. انتظر بضع ثوانٍ",
"Start Download Immediately": "بدء التحميل فوراً",
"If checked, the download will begin instantly when added, skipping the 'Download' button.": "إذا تم تحديده، سيبدأ التحميل فوراً عند الإضافة، متجاوزاً زر 'تحميل'.",
"Start in Minimized Mode": "البدء في وضع التصغير",
"If checked, The Download Will Begin in The Background.": "إذا تم تحديده، سيبدأ التحميل في الخلفية.",
"Select Download Folder": "اختر مجلد التحميل",
"You Can't Delete Items During a Download. Please Stop The Operation First.": "لا يمكنك حذف العناصر أثناء التحميل. يرجى إيقاف العملية أولاً.",
"Size: Timeout (Metadata not found)": "الحجم: انتهى الوقت (لم يتم العثور على بيانات وصفية)",
"Copy URL": "نسخ الرابط",
"WARNING! DANGEROUS TERRITORY!": "تحذير! منطقة خطرة!",
"Custom Command (Shell):": "أمر مخصص (Shell):",
"Stopped at": "توقف عند",
"trackers.": "متبعين.",
"Added": "مضاف",
"skipped": "تم تخطيه",
"Trackers already exist.": "المتبعون موجودون بالفعل.",
"No valid trackers found.": "لم يتم العثور على متبعين صالحين.",
"Starting The Downloader Please Wait...": "جاري بدء التحميل، يرجى الانتظار...",
"File Has Already Been Downloaded": "تم تحميل الملف بالفعل",
"Delete Confirmation": "تأكيد الحذف",
"Finishing up...": "جاري الإنهاء...",
"Cancel Confirmation": "تأكيد الإلغاء",
"Do you want to cancel the download?": "هل تريد إلغاء التحميل؟",
"Estimated Size:": "الحجم المقدر:",
"Download Playlist:": "تحميل قائمة التشغيل:",
"Download Entire Playlist": "تحميل القائمة كاملة",
"Playlist": "قائمة تشغيل",
"Format:": "الصيغة:",
"Error fetching metadata.": "خطأ في جلب البيانات الوصفية.",
"Invalid path or parent directory missing": "مسار غير صالح أو الدليل الرئيسي مفقود.",
"Directory does not exist. It will be created.": "الدليل غير موجود. سيتم إنشاؤه.",
"Started Seeding...": "بدأ التوزيع...",
"Start Seeding": "بدء التوزيع",
"Stop Seeding": "إيقاف التوزيع",
"Stopped Seeding": "توقف التوزيع",
"Pause Seeding": "إيقاف مؤقت للتوزيع",
"Seeding": "جاري التوزيع",
"Ratio": "النسبة",
"Uploaded": "تم الرفع",
"Up Speed": "سرعة الرفع",