-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations_fr.dart
More file actions
2796 lines (2005 loc) · 71.7 KB
/
app_localizations_fr.dart
File metadata and controls
2796 lines (2005 loc) · 71.7 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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for French (`fr`).
class AppLocalizationsFr extends AppLocalizations {
AppLocalizationsFr([String locale = 'fr']) : super(locale);
@override
String get appTitle => 'MeshCore Open';
@override
String get nav_contacts => 'Contacts';
@override
String get nav_channels => 'Canaux';
@override
String get nav_map => 'Carte';
@override
String get common_cancel => 'Annuler';
@override
String get common_ok => 'OK';
@override
String get common_connect => 'Connecter';
@override
String get common_unknownDevice => 'Appareil inconnu';
@override
String get common_save => 'Enregistrer';
@override
String get common_delete => 'Supprimer';
@override
String get common_close => 'Fermer';
@override
String get common_edit => 'Modifier';
@override
String get common_add => 'Ajouter';
@override
String get common_settings => 'Paramètres';
@override
String get common_disconnect => 'Déconnecter';
@override
String get common_connected => 'Connecté';
@override
String get common_disconnected => 'Déconnecté';
@override
String get common_create => 'Créer';
@override
String get common_continue => 'Continuer';
@override
String get common_share => 'Partager';
@override
String get common_copy => 'Copier';
@override
String get common_retry => 'Réessayer';
@override
String get common_hide => 'Masquer';
@override
String get common_remove => 'Supprimer';
@override
String get common_enable => 'Activer';
@override
String get common_disable => 'Désactiver';
@override
String get common_reboot => 'Redémarrer';
@override
String get common_loading => 'Chargement...';
@override
String get common_notAvailable => '—';
@override
String common_voltageValue(String volts) {
return '$volts V';
}
@override
String common_percentValue(int percent) {
return '$percent%';
}
@override
String get scanner_title => 'MeshCore Open';
@override
String get scanner_scanning => 'Recherche de périphériques...';
@override
String get scanner_connecting => 'Connexion en cours...';
@override
String get scanner_disconnecting => 'Déconnexion...';
@override
String get scanner_notConnected => 'Non connecté';
@override
String scanner_connectedTo(String deviceName) {
return 'Connecté à $deviceName';
}
@override
String get scanner_searchingDevices => 'Recherche des appareils MeshCore...';
@override
String get scanner_tapToScan =>
'Appuyez sur Scanner pour trouver les appareils MeshCore';
@override
String scanner_connectionFailed(String error) {
return 'Échec de la connexion : $error';
}
@override
String get scanner_stop => 'Arrêter';
@override
String get scanner_scan => 'Scanner';
@override
String get device_quickSwitch => 'Basculement rapide';
@override
String get device_meshcore => 'MeshCore';
@override
String get settings_title => 'Paramètres';
@override
String get settings_deviceInfo => 'Informations du périphérique';
@override
String get settings_appSettings => 'Paramètres de l\'application';
@override
String get settings_appSettingsSubtitle =>
'Notifications, messagerie et préférences de carte';
@override
String get settings_nodeSettings => 'Paramètres du nœud';
@override
String get settings_nodeName => 'Nom du nœud';
@override
String get settings_nodeNameNotSet => 'Non défini';
@override
String get settings_nodeNameHint => 'Entrer le nom du nœud';
@override
String get settings_nodeNameUpdated => 'Nom mis à jour';
@override
String get settings_radioSettings => 'Paramètres Radio';
@override
String get settings_radioSettingsSubtitle =>
'Fréquence, puissance, facteur d\'espacement';
@override
String get settings_radioSettingsUpdated => 'Paramètres radio mis à jour';
@override
String get settings_location => 'Emplacement';
@override
String get settings_locationSubtitle => 'Coordonnées GPS';
@override
String get settings_locationUpdated => 'Emplacement mis à jour';
@override
String get settings_locationBothRequired =>
'Entrez la latitude et la longitude.';
@override
String get settings_locationInvalid => 'Latitude ou longitude invalide.';
@override
String get settings_locationGPSEnable => 'Activer le GPS';
@override
String get settings_locationGPSEnableSubtitle =>
'Activer la mise à jour automatique de la position via GPS';
@override
String get settings_locationIntervalSec =>
'Intervalle de mise-à-jour du GPS (Secondes)';
@override
String get settings_locationIntervalInvalid =>
'L\'intervalle doit être compris entre 60 et 86400 secondes.';
@override
String get settings_latitude => 'Latitude';
@override
String get settings_longitude => 'Longitude';
@override
String get settings_privacyMode => 'Mode de confidentialité';
@override
String get settings_privacyModeSubtitle =>
'Cacher le nom/l\'emplacement dans les annonces';
@override
String get settings_privacyModeToggle =>
'Activer le mode confidentialité pour masquer votre nom et votre localisation dans les annonces.';
@override
String get settings_privacyModeEnabled => 'Mode de confidentialité activé';
@override
String get settings_privacyModeDisabled =>
'Mode de confidentialité désactivé';
@override
String get settings_actions => 'Actions';
@override
String get settings_sendAdvertisement => 'S\'annoncer';
@override
String get settings_sendAdvertisementSubtitle =>
'Présence diffusée maintenant';
@override
String get settings_advertisementSent => 'Annonce envoyée';
@override
String get settings_syncTime => 'Temps de synchronisation';
@override
String get settings_syncTimeSubtitle =>
'Définir l\'heure de l\'appareil sur l\'heure du téléphone.';
@override
String get settings_timeSynchronized => 'Synchronisation temporelle';
@override
String get settings_refreshContacts => 'Rafraîchir les Contacts';
@override
String get settings_refreshContactsSubtitle =>
'Recharger la liste des contacts depuis l\'appareil';
@override
String get settings_rebootDevice => 'Redémarrer l\'appareil';
@override
String get settings_rebootDeviceSubtitle => 'Redémarrer l\'appareil MeshCore';
@override
String get settings_rebootDeviceConfirm =>
'Êtes-vous sûr de vouloir redémarrer l\'appareil ? Vous serez déconnecté.';
@override
String get settings_debug => 'Déboguer';
@override
String get settings_bleDebugLog => 'Journal de débogage BLE';
@override
String get settings_bleDebugLogSubtitle =>
'Commandes BLE, réponses et données brutes';
@override
String get settings_appDebugLog => 'Journal de débogage de l\'application';
@override
String get settings_appDebugLogSubtitle =>
'Messages de débogage de l\'application';
@override
String get settings_about => 'À propos';
@override
String settings_aboutVersion(String version) {
return 'MeshCore Open v$version';
}
@override
String get settings_aboutLegalese => 'Projet MeshCore Open Source 2026';
@override
String get settings_aboutDescription =>
'Un client Flutter open source pour les appareils de réseau mesh MeshCore LoRa.';
@override
String get settings_infoName => 'Nom';
@override
String get settings_infoId => 'ID';
@override
String get settings_infoStatus => 'État';
@override
String get settings_infoBattery => 'Batterie';
@override
String get settings_infoPublicKey => 'Clé Publique';
@override
String get settings_infoContactsCount => 'Nombre de contacts';
@override
String get settings_infoChannelCount => 'Nombre de canaux';
@override
String get settings_presets => 'Préréglages';
@override
String get settings_preset915Mhz => '915 MHz';
@override
String get settings_preset868Mhz => '868 MHz';
@override
String get settings_preset433Mhz => '433 MHz';
@override
String get settings_frequency => 'Fréquence (MHz)';
@override
String get settings_frequencyHelper => '300,0 - 2 500,0';
@override
String get settings_frequencyInvalid => 'Fréquence invalide (300-2500 MHz)';
@override
String get settings_bandwidth => 'Bande passante';
@override
String get settings_spreadingFactor => 'Facteur de répartition';
@override
String get settings_codingRate => 'Taux de codage';
@override
String get settings_txPower => 'TX Puissance (dBm)';
@override
String get settings_txPowerHelper => '0 - 22';
@override
String get settings_txPowerInvalid => 'Puissance TX invalide (0-22 dBm)';
@override
String get settings_longRange => 'Portée Longue';
@override
String get settings_fastSpeed => 'Vitesse Rapide';
@override
String settings_error(String message) {
return 'Erreur : $message';
}
@override
String get appSettings_title => 'Paramètres de l\'application';
@override
String get appSettings_appearance => 'Apparence';
@override
String get appSettings_theme => 'Thème';
@override
String get appSettings_themeSystem => 'Défaut système';
@override
String get appSettings_themeLight => 'Lumière';
@override
String get appSettings_themeDark => 'Sombre';
@override
String get appSettings_language => 'Langue';
@override
String get appSettings_languageSystem => 'Par défaut du système';
@override
String get appSettings_languageEn => 'English';
@override
String get appSettings_languageFr => 'Français';
@override
String get appSettings_languageEs => 'Español';
@override
String get appSettings_languageDe => 'Deutsch';
@override
String get appSettings_languagePl => 'Polski';
@override
String get appSettings_languageSl => 'Slovenščina';
@override
String get appSettings_languagePt => 'Português';
@override
String get appSettings_languageIt => 'Italiano';
@override
String get appSettings_languageZh => '中文';
@override
String get appSettings_languageSv => 'Svenska';
@override
String get appSettings_languageNl => 'Nederlands';
@override
String get appSettings_languageSk => 'Slovenčina';
@override
String get appSettings_languageBg => 'Български';
@override
String get appSettings_languageRu => 'Russe';
@override
String get appSettings_languageUk => 'Ukrainien';
@override
String get appSettings_notifications => 'Notifications';
@override
String get appSettings_enableNotifications => 'Activer les Notifications';
@override
String get appSettings_enableNotificationsSubtitle =>
'Recevoir des notifications pour les messages et les annonces';
@override
String get appSettings_notificationPermissionDenied =>
'Permission de notification refusée';
@override
String get appSettings_notificationsEnabled => 'Notifications activées';
@override
String get appSettings_notificationsDisabled => 'Notifications désactivées';
@override
String get appSettings_messageNotifications => 'Notifications de Messages';
@override
String get appSettings_messageNotificationsSubtitle =>
'Afficher une notification lors de la réception de nouveaux messages';
@override
String get appSettings_channelMessageNotifications =>
'Notifications des Messages de Canal';
@override
String get appSettings_channelMessageNotificationsSubtitle =>
'Afficher une notification lors de la réception des messages de canal';
@override
String get appSettings_advertisementNotifications =>
'Notifications d\'annonces';
@override
String get appSettings_advertisementNotificationsSubtitle =>
'Afficher une notification lors de la découverte de nouveaux nœuds';
@override
String get appSettings_messaging => 'Messagerie';
@override
String get appSettings_clearPathOnMaxRetry =>
'Effacer le chemin sur Max Retry';
@override
String get appSettings_clearPathOnMaxRetrySubtitle =>
'Réinitialiser le chemin de contact après 5 tentatives d\'envoi infructueuses';
@override
String get appSettings_pathsWillBeCleared =>
'Les chemins seront effacés après 5 tentatives infructueuses.';
@override
String get appSettings_pathsWillNotBeCleared =>
'Les chemins ne seront pas effacés automatiquement.';
@override
String get appSettings_autoRouteRotation =>
'Rotation de l\'itinéraire automatique';
@override
String get appSettings_autoRouteRotationSubtitle =>
'Alterner entre les meilleurs chemins et le mode d\'envoi sur tout le réseau (flood)';
@override
String get appSettings_autoRouteRotationEnabled =>
'Rotation du routage automatique activée';
@override
String get appSettings_autoRouteRotationDisabled =>
'Rotation de l\'itinéraire automatique désactivée';
@override
String get appSettings_battery => 'Batterie';
@override
String get appSettings_batteryChemistry => 'Chimie de la batterie';
@override
String appSettings_batteryChemistryPerDevice(String deviceName) {
return 'Définir par appareil ($deviceName)';
}
@override
String get appSettings_batteryChemistryConnectFirst =>
'Connectez un appareil pour choisir';
@override
String get appSettings_batteryNone => 'No Battery (External Power)';
@override
String get appSettings_batteryLipo => 'LiPo (3,0-4,2V)';
@override
String get appSettings_batteryLifepo4 => 'LiFePO4 (2,6-3,65V)';
@override
String get appSettings_batteryLeadAcid => 'Lead Acid (12V)';
@override
String get appSettings_mapDisplay => 'Affichage de la carte';
@override
String get appSettings_showRepeaters => 'Afficher les répétiteurs';
@override
String get appSettings_showRepeatersSubtitle =>
'Afficher les nœuds répétiteurs sur la carte';
@override
String get appSettings_showChatNodes => 'Afficher les nœuds de discussion';
@override
String get appSettings_showChatNodesSubtitle =>
'Afficher les nœuds de chat sur la carte';
@override
String get appSettings_showOtherNodes => 'Afficher d\'autres nœuds';
@override
String get appSettings_showOtherNodesSubtitle =>
'Afficher d\'autres types de nœuds sur la carte';
@override
String get appSettings_timeFilter => 'Filtre du temps';
@override
String get appSettings_timeFilterShowAll => 'Afficher tous les nœuds';
@override
String appSettings_timeFilterShowLast(int hours) {
return 'Afficher les nœuds des $hours dernières heures';
}
@override
String get appSettings_mapTimeFilter => 'Filtre du Temps de la Carte';
@override
String get appSettings_showNodesDiscoveredWithin =>
'Afficher les nœuds découverts dans :';
@override
String get appSettings_allTime => 'Tout le temps';
@override
String get appSettings_lastHour => 'Dernière heure';
@override
String get appSettings_last6Hours => 'Dernières 6 heures';
@override
String get appSettings_last24Hours => 'Dernières 24 heures';
@override
String get appSettings_lastWeek => 'La semaine dernière';
@override
String get appSettings_offlineMapCache => 'Cache de Carte Hors Ligne';
@override
String get appSettings_noAreaSelected => 'Aucune zone sélectionnée';
@override
String appSettings_areaSelectedZoom(int minZoom, int maxZoom) {
return 'Zone sélectionnée (zoom $minZoom-$maxZoom)';
}
@override
String get appSettings_debugCard => 'Déboguer';
@override
String get appSettings_appDebugLogging =>
'Journalisation de débogage de l\'application';
@override
String get appSettings_appDebugLoggingSubtitle =>
'Enregistrez les messages de débogage de l\'application Log pour le dépannage.';
@override
String get appSettings_appDebugLoggingEnabled =>
'Journalisation de débogage de l\'application activée';
@override
String get appSettings_appDebugLoggingDisabled =>
'Le débogage de l\'application est désactivé.';
@override
String get contacts_title => 'Contacts';
@override
String get contacts_noContacts => 'Aucun contact trouvé.';
@override
String get contacts_contactsWillAppear =>
'Les contacts apparaîtront lorsque les appareils font leur annonce.';
@override
String get contacts_searchContacts => 'Rechercher des contacts...';
@override
String get contacts_noUnreadContacts => 'Aucun contact non lu';
@override
String get contacts_noContactsFound => 'Aucun contact ou groupe trouvé.';
@override
String get contacts_deleteContact => 'Supprimer le contact';
@override
String contacts_removeConfirm(String contactName) {
return 'Supprimer $contactName des contacts ?';
}
@override
String get contacts_manageRepeater => 'Gérer le répétiteur';
@override
String get contacts_manageRoom => 'Gérer le Room Server';
@override
String get contacts_roomLogin => 'Connexion Salle';
@override
String get contacts_openChat => 'Ouverture du Chat';
@override
String get contacts_editGroup => 'Modifier le groupe';
@override
String get contacts_deleteGroup => 'Supprimer le groupe';
@override
String contacts_deleteGroupConfirm(String groupName) {
return 'Supprimer $groupName?';
}
@override
String get contacts_newGroup => 'Nouveau Groupe';
@override
String get contacts_groupName => 'Nom du groupe';
@override
String get contacts_groupNameRequired => 'Le nom du groupe est obligatoire.';
@override
String contacts_groupAlreadyExists(String name) {
return 'Le groupe \"$name\" existe déjà.';
}
@override
String get contacts_filterContacts => 'Filtrer les contacts...';
@override
String get contacts_noContactsMatchFilter =>
'Aucun contact ne correspond à votre filtre.';
@override
String get contacts_noMembers => 'Aucun membre';
@override
String get contacts_lastSeenNow => 'Vu maintenant';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Vu il y a $minutes minutes';
}
@override
String get contacts_lastSeenHourAgo => 'Vu il y a 1 heure';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Vu il y a $hours heures';
}
@override
String get contacts_lastSeenDayAgo => 'Vu il y a 1 jour';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Vu il y a $days jours';
}
@override
String get channels_title => 'Canaux';
@override
String get channels_noChannelsConfigured => 'Aucun canal configuré';
@override
String get channels_addPublicChannel => 'Ajouter un canal public';
@override
String get channels_searchChannels => 'Rechercher des canaux...';
@override
String get channels_noChannelsFound => 'Aucun canal trouvé';
@override
String channels_channelIndex(int index) {
return 'Canal $index';
}
@override
String get channels_hashtagChannel => 'Canal avec hashtag';
@override
String get channels_public => 'Public';
@override
String get channels_private => 'Privé';
@override
String get channels_publicChannel => 'Canal public';
@override
String get channels_privateChannel => 'Canal privé';
@override
String get channels_editChannel => 'Modifier le canal';
@override
String get channels_deleteChannel => 'Supprimer le canal';
@override
String channels_deleteChannelConfirm(String name) {
return 'Supprimer $name? Cela ne peut pas être annulé.';
}
@override
String channels_channelDeleted(String name) {
return 'Le canal \"$name\" a été supprimé';
}
@override
String get channels_addChannel => 'Ajouter un Canal';
@override
String get channels_channelIndexLabel => 'Index de canal';
@override
String get channels_channelName => 'Nom du canal';
@override
String get channels_usePublicChannel => 'Utiliser le canal public';
@override
String get channels_standardPublicPsk => 'PSK public standard';
@override
String get channels_pskHex => 'PSK (Hex)';
@override
String get channels_generateRandomPsk =>
'Générer une clé de modulation PSK aléatoire';
@override
String get channels_enterChannelName => 'Veuillez entrer un nom de canal';
@override
String get channels_pskMustBe32Hex =>
'Le PKS doit être composé de 32 caractères hexadécimaux.';
@override
String channels_channelAdded(String name) {
return 'Le canal \"$name\" a été ajouté';
}
@override
String channels_editChannelTitle(int index) {
return 'Modifier le Canal $index';
}
@override
String get channels_smazCompression => 'Compression SMAZ';
@override
String channels_channelUpdated(String name) {
return 'Le canal \"$name\" a été mis à jour';
}
@override
String get channels_publicChannelAdded => 'Le canal public a été ajouté';
@override
String get channels_sortBy => 'Trier par';
@override
String get channels_sortManual => 'Manuel';
@override
String get channels_sortAZ => 'A à Z';
@override
String get channels_sortLatestMessages => 'Derniers messages';
@override
String get channels_sortUnread => 'Non lu';
@override
String get channels_createPrivateChannel => 'Créer un Canal Privé';
@override
String get channels_createPrivateChannelDesc =>
'Sécurisé avec une clé secrète.';
@override
String get channels_joinPrivateChannel => 'Rejoindre un Canal Privé';
@override
String get channels_joinPrivateChannelDesc =>
'Entrer manuellement une clé secrète.';
@override
String get channels_joinPublicChannel => 'Rejoindre le canal public';
@override
String get channels_joinPublicChannelDesc =>
'Tout le monde peut rejoindre ce canal.';
@override
String get channels_joinHashtagChannel => 'Rejoindre un Canal Hashtag';
@override
String get channels_joinHashtagChannelDesc =>
'N\'importe qui peut rejoindre les canaux #hashtag.';
@override
String get channels_scanQrCode => 'Scanner un code QR';
@override
String get channels_scanQrCodeComingSoon => 'Bientôt disponible';
@override
String get channels_enterHashtag => 'Entrez le hashtag';
@override
String get channels_hashtagHint => 'ex. #equipe';
@override
String get chat_noMessages => 'Aucun message pour le moment.';
@override
String get chat_sendMessageToStart => 'Envoyer un message pour commencer';
@override
String get chat_originalMessageNotFound => 'Message d\'origine non trouvé';
@override
String chat_replyingTo(String name) {
return 'Répondre à $name';
}
@override
String chat_replyTo(String name) {
return 'Répondre à $name';
}
@override
String get chat_location => 'Emplacement';
@override
String chat_sendMessageTo(String contactName) {
return 'Envoyer un message à $contactName';
}
@override
String get chat_typeMessage => 'Saisir un message...';
@override
String chat_messageTooLong(int maxBytes) {
return 'Message trop long (max $maxBytes octets).';
}
@override
String get chat_messageCopied => 'Message copié';
@override
String get chat_messageDeleted => 'Message supprimé';
@override
String get chat_retryingMessage => 'Tentative de récupération.';
@override
String chat_retryCount(int current, int max) {
return 'Essai $current/$max';
}
@override
String get chat_sendGif => 'Envoyer GIF';
@override
String get chat_reply => 'Répondre';
@override
String get chat_addReaction => 'Ajouter une Réaction';
@override
String get chat_me => 'Moi';
@override
String get emojiCategorySmileys => 'Émojis';
@override
String get emojiCategoryGestures => 'Gestes';
@override
String get emojiCategoryHearts => 'Cœurs';
@override
String get emojiCategoryObjects => 'Objets';
@override
String get gifPicker_title => 'Choisir un GIF';
@override
String get gifPicker_searchHint => 'Rechercher des GIF...';
@override
String get gifPicker_poweredBy => 'Propulsé par GIPHY';
@override
String get gifPicker_noGifsFound => 'Aucun GIF trouvé';
@override
String get gifPicker_failedLoad => 'Impossible de charger les GIFs';
@override
String get gifPicker_failedSearch => 'Recherche de GIFs échouée';
@override
String get gifPicker_noInternet => 'Aucune connexion internet';
@override
String get debugLog_appTitle => 'Journal de débogage de l\'application';
@override