forked from shidel/fd-nls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
freecom_lng.fr.UTF-8
1550 lines (1237 loc) · 42.5 KB
/
freecom_lng.fr.UTF-8
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
# $Id$
#
# FreeCOM national customization file
#
# Language: French
# Codepage: 850
# Author: Mateusz Viste
#
# This file is used to generate all the messages that command.com
# outputs. This file is the input to the fixstrs program, and it
# outputs strings.h and strings.dat. The .DAT file is appended to
# the command.exe file, and then renamed to command.com. The .H
# file contains all the info for the program to retrieve the
# messages.
#
# The format of this file is simple. Blank lines and lines starting
# with "#" are ignored.
# Each message starts with a label name that will be used to refer to
# the message in the program. A label starts with a colon ":".
# A label has a version ID attached to it delimited by a hash sign, e.g.:
# :TEXT_LABEL#1
# This version is incremented each time the contents of the string has
# undergo a larger change. The same language definition may contain the
# same label up to one time, regardless of the version. FIXSTRS compares
# both the label and the version ID and both must match.
# A missing version is assumed as "#0".
# If there is a percent sign (%) appended to the version, the printf()
# format string %-style placeholders are compared for the strings. The
# sign need to be set in DEFAULT.LNG only.
#
# All lines after the label are the message until a line with a
# single "." or "," in the first column. The difference is the
# period (".") signifies that there will be a final carriage return when
# the message is displayed, but a comma does not.
#
# The body may contain backslash escape sequences as known from C; there
# are the usual \# (where '#' is a lowercase letter except 'x' or one of
# "[]{}?"), \\ (to embed a backslash itself)
# \x?? (where '??' are up to two hexadecimal digits), \0 (to embed a NUL
# character), \, and \. (to specify a period or comma in the first column
# of a line) and the single \ at the end of the line to suppress to append
# a newline character. Note: There is NO octal sequence except the short \0!
# There is a known bug (or feature): [ignore the very first hash mark]
#:TEXT_LABEL#2
#
#\
#,
# Although the first data line appends the newline, the second does not,
# though the comma removes the newline from the first line.
# Defining prompts
# Some prompts may cause an user interaction. Those ones should be in sync
# with the issued text. To define how to interpret a pressed key, they
# are mapped into metakeys like that: [ignore first hash sign]
## Return value: a -> Yes; else -> No
#:PROMPT_YES_NO#1
#YyNn\n\r{CBREAK}
#aabb b b b
# (Yes/No) ? \
#.
# All strings, which label start with "PROMPT_", are parsed as prompts.
# The first two lines of the body are special; the first one enumerates all
# valid keys, the second one assigns arbitrary metakeys. Metakeys may
# range from 'a' through 'z'; spaces are ignored; everything else cause
# an error. The comment preceding the prompt definition associates the
# metakeys with their meaning.
# The remaining lines of the body contain the text to be displayed.
#
# Above example defines a native Yes/No prompt with a space behind the question
# mark and no appended newline.
# The metakey 'a' means "User answered with 'Yes'" and 'b' means no.
# The keys 'Y' and 'y' are mapped to metakey 'a' (aka Yes) and the keys
# 'N', 'n', Enter and ^Break are mapped to metakey 'b' (aka No).
# The spaces between the 'b's in the second line had been inserted to
# align them with the corresponding keys of the first line, hence in order
# to enhance readability of the association between the pressed keys and their
# mapping into a metakey.
#
# The first line (pressed keys) has to enumerate the ASCII value as returned
# by DOS or BIOS (INT-10); special keys normally expressed with ASCII code zero,
# but a non-zero scancode are NOT supported; this limit includes for instance
# the function keys F1 through F12 and the cursor keys and it is not possible
# to differ between the number pad and normal keys.
# The keys may be enumerated by their ASCII character, by a backslash sequence,
# or a symbolic name enclosed in curly brackets (see FIXSTRS.C "symkeys[]"
# array about the supported symnames).
#
# These are error messages
#
## Issued if a single character option is unknown
:TEXT_ERROR_INVALID_SWITCH#0%
Paramètre incorrect. - /%c
.
## Issued if a longname option is unknown
:TEXT_ERROR_INVALID_LSWITCH#0%
Paramètre incorrect. - /%s
.
## Issued if the context, the type of argument etc. is invalid
:TEXT_ERROR_ILLFORMED_OPTION#0%
Option mal formée: '%s'
.
:TEXT_ERROR_OPT_ARG#0%
L'option '%s' n'accepte pas d'arguments
.
:TEXT_ERROR_OPT_NOARG#0%
l'option "%s" nécessite un plusieurs paramètre(s)
.
:TEXT_INVALID_NUMBER#0%
Nombre invalide spécifié dans '%s'
.
:TEXT_ERROR_CLOSE_QUOTE#0%
Il manque la fermeture des guillemets: %c
.
:TEXT_ERROR_TEMPFILE
Impossible de créer le fichier temporaire
.
:TEXT_ERROR_TOO_MANY_PARAMETERS_STR#0%
Trop de paramètres. - '%s'
.
:TEXT_ERROR_TOO_MANY_PARAMETERS
Trop de paramètres.
.
:TEXT_ERROR_INVALID_PARAMETER#0%
Paramètre invalide. - '%s'
.
:TEXT_ERROR_PATH_NOT_FOUND
Chemin introuvable.
.
:TEXT_ERROR_FILE_NOT_FOUND
Fichier introuvable.
.
:TEXT_ERROR_SFILE_NOT_FOUND#0%
Fichier introuvable. - '%s'
.
:TEXT_ERROR_REQ_PARAM_MISSING#0%
Paramètre requis absent.
.
:TEXT_ERROR_INVALID_DRIVE#0%
Spécification de lecteur invalide: %c:.
.
:TEXT_ERROR_BADCOMMAND#2%
Commande ou nom de fichier incorrect - "%s".
.
:TEXT_ERROR_OUT_OF_MEMORY
Plus de mémoire disponible.
.
:TEXT_ERROR_OUT_OF_DOS_MEMORY#1
L'allocation de mémoire DOS a échoué.
.
:TEXT_ERROR_CANNOTPIPE
Cannot pipe! Ne peut ouvrir le fichier temporaire !
.
:TEXT_ERROR_LONG_LINE_BATCHFILE#0%
La ligne #%ld dans le fichier BATCH '%s' est trop longue.
.
:TEXT_ERROR_BFILE_VANISHED#0%
Le fichier BATCH '%s' est introuvable.
.
:TEXT_ERROR_BFILE_LABEL#0%
Le fichier BATCH '%s' ne contient pas d'étiquette '%s'.
.
:TEXT_ERROR_DIRFCT_FAILED#1%
%s a échoué pour '%s'.
.
# The next three errors must remain in this order!
:TEXT_ERROR_SET_ENV_VAR#0%
Impossible de définir la variable '%s'.
L'environnement serait-il saturé ?
.
:TEXT_ERROR_ENV_VAR_NOT_FOUND#0%
La variable d'environnement '%s' est introuvable.
.
:TEXT_ERROR_NO_ENVIRONMENT
Aucun environnement ! La mémoire est peut-être à bout. Utilisez l'option /E.
.
# The next three errors must remain in this order!
:TEXT_ERROR_SET_ALIAS#1%
Impossible de définir l'alias '%s'. L'espace des alias serait-il saturé ?
.
:TEXT_ERROR_ALIAS_NOT_FOUND#1%
Alias '%s' non trouvé.
.
:TEXT_ERROR_NO_ALIAS_SEGMENT#1
Pas d'espace pour les alias. La mémoire est peut-être insuffisante.
.
:TEXT_ERROR_SYNTAX_STR#0%
Erreur de syntaxe. - '%s'
.
:TEXT_ERROR_SYNTAX
Erreur de syntaxe.
.
:TEXT_ERROR_FILENAME_TOO_LONG#0%
Nom de fichier trop long. - '%s'
.
:TEXT_ERROR_SELFCOPY#0%
Impossible de copier '%s' sur lui-même
.
:TEXT_ERROR_COMMAND_TOO_LONG
Ligne de commande trop longue après expansion d'alias !
.
:TEXT_ERROR_LINE_TOO_LONG
Ligne trop longue. Impossible d'exécuter la commande.
.
:TEXT_ERROR_HISTORY_SIZE#1%
Taille de l'historique invalide '%s'.
.
:TEXT_HISTORY_EMPTY#1
L'historique de la ligne de commande est vide.
.
:TEXT_ERROR_BAD_MCB_CHAIN
La chaîne MCB ou le système de compatibilité MS-DOS est corrompu.
.
:TEXT_ERROR_UNDEFINED_ERROR#0%
Erreur non définie %d.
.
:TEXT_ERROR_REGION_WARNING#0%
Région de mémoire invalide %d - ignoré.
.
:TEXT_ERROR_ON_OR_OFF
Vous devez spécifier ON ou OFF.
.
:TEXT_ERROR_BAD_VARIABLE
Mauvaise spécification de variable.
.
:TEXT_ERROR_IN_MISSING#1
IN oublié dans la commande FOR.
.
:TEXT_ERROR_MISSING_PARENTHESES#1
Une ou plusieurs parenthèse(s) oubliée(s).
.
:TEXT_ERROR_DO_MISSING#1
DO oublié dans la commande FOR.
.
:TEXT_ERROR_NO_COMMAND_AFTER_DO#1
FOR: Aucune commande après DO.
.
:TEXT_ERROR_REDIRECT_FROM_FILE#0%
Impossible de rediriger l'entrée depuis le fichier '%s'.
.
:TEXT_ERROR_REDIRECT_TO_FILE#0%
Impossible de rediriger la sortie vers le fichier '%s'.
.
:TEXT_ERROR_EMPTY_REDIRECTION#1
La redirection est vide.
.
:TEXT_ERROR_INVALID_DATE
Date invalide.
.
:TEXT_ERROR_INVALID_TIME
Heure invalide.
.
:TEXT_ERROR_NO_GOTO_LABEL
Étiquette de destination non définie dans GOTO.
.
:TEXT_CTTY_NOTIMPLEMENTED
La commande CTTY a été exclue de ce COMMAND.COM.
.
:TEXT_ERROR_NORW_DEVICE#0%
Périphérique '%s' invalide ou protégé en écriture.
.
:TEXT_ERROR_CTTY_DUP#0%
Échec lors du changement des descripteurs du fichier vers TTY '%s'.
.
:TEXT_ERROR_L_NOTIMPLEMENTED
/L pas encore implémenté.
.
:TEXT_ERROR_U_NOTIMPLEMENTED
/U pas encore implémenté.
.
:TEXT_ERROR_WRITING_DEST
Erreur lors de l'écriture sur la destination.
.
:TEXT_ERROR_CANNOT_OPEN_SOURCE#0%
Impossible d'ouvrir la source. - '%s'
.
:TEXT_ERROR_OPEN_FILE#0%
Impossible d'ouvrir le fichier '%s'
.
:TEXT_ERROR_READ_FILE#0%
Impossible de lire le fichier '%s'
.
:TEXT_ERROR_WRITE_FILE#0%
Impossible d'écrire dans le fichier '%s'
.
:TEXT_ERROR_LEADING_PLUS
Le caractère '+' ne peut pas précéder les arguments.
.
:TEXT_ERROR_TRAILING_PLUS
Le caractère '+' ne peut pas suivre les arguments.
.
:TEXT_ERROR_NOTHING_TO_DO
Rien à faire.
.
:TEXT_ERROR_COPY
COPY a échoué.
.
:TEXT_ERROR_IF_EXIST_NO_FILENAME#1
IF EXIST: il manque le nom du fichier
.
:TEXT_ERROR_IF_ERRORLEVEL_NO_NUMBER#1
IF ERRORLEVEL: il manque le numéro
.
:TEXT_ERROR_IF_ERRORLEVEL_INVALID_NUMBER#1
IF ERRORLEVEL: numéro non valide
.
:TEXT_ERROR_IF_MISSING_COMMAND#1
IF: Commande manquante
.
:TEXT_NOT_IMPLEMENTED_YET
Désolé... pas encore implémenté.
.
:TEXT_FAILED_LOAD_STRINGS
Échec lors du transfert des messages en mémoire.
.
:TEXT_MSG_NOTIMPLEMENTED
L'option /MSG à été exclue de ce COMMAND.COM.
.
:TEXT_MSG_ITEMS_DISPLAYED#1%
%u éléments affichés.
.
:TEXT_CORRUPT_COMMAND_LINE
Ligne de commande corrompue ! Ceci est une erreur interne liée à COMMAND.COM,
merci de la rapporter (par exemple sur www.freedos.org/bugs).
.
:TEXT_QUOTED_C_OR_K#1
Les options /C et /K ne peuvent pas être ajoutées, elles sont ignorées.
.
:TEXT_INIT_FULLY_QUALIFIED#1%
Le répertoire de COMMAND.COM doit être complètement défini !
cela signifie que la lettre du lecteur doit être précisée.
Par exemple: C:\\FDOS
COMMAND.COM utilise actuellement le répertoire suivant :
%s
.
:TEXT_ERROR_RESTORE_SESSION
Les informations de la session ne peuvent pas être restaurées, tous les
paramètres locaux sont perdus. Référez-vous aux messages d'erreurs ci-dessus
pour connaître la raison de ce problème...
.
:TEXT_ERROR_SAVE_SESSION
L'information courante ne peut être préservée durant l'appel
du programme. Référez-vous aux messages d'erreurs ci-dessus pour
connaître la raison de ce problème...
.
:TEXT_ERROR_CWD_FAILED#1%
Le lecteur %c: ne répond pas.
.
:TEXT_ERROR_KSWAP_ALIAS_SIZE
Échec de l'échange : Les alias allouent trop de mémoire.
.
:TEXT_ERROR_KSWAP_ALLOCMEM
Échec de l'échange : impossible d'allouer de la mémoire distante.
.
:TEXT_ERROR_ALIAS_OUT_OF_MEM#1
Fin d'espace pour les alias.
.
:TEXT_ERROR_ALIAS_NO_SUCH#1%
Cet alias n'existe pas: '%s'
.
:TEXT_ERROR_ALIAS_INSERT#1
Échec de l'insertion de l'alias.
.
:TEXT_ALIAS_INVALID_NAME#1%
Nom d'alias invalide '%s'.
.
:TEXT_ERROR_LOADING_CONTEXT#1
Impossible de charger le module contextuel ou le pilote d'erreurs critiques.
.
:TEXT_ERROR_CONTEXT_OUT_OF_MEMORY#1
Contexte à bout de mémoire.
Si cette erreur persiste, envisagez d'allouer plus de tampons internes,
comme l'historique, la pile de répertoires etc.
.
:TEXT_ERROR_CONTEXT_LENGTH#1%
La taille totale des contextes (%lu octets) excède la limite maximale.
La taille des contextes a été modifiée à %u octets.
.
:TEXT_ERROR_CONTEXT_ADD_STATUS#1
Échec de l'ajout d'informations d'état au contexte. Cette erreur peut indiquer
une corruption mémoire ou une taille minimale mal déterminée du contexte.
Veuillez informer le mainteneur de FreeCOM à l'adresse :
.
:TEXT_ERROR_CONTEXT_AFTER_SWAP#1
Le contexte a été perdu après le swap. Un contexte va être recréé, mais
tous les alias etc. seront perdus.
.
:TEXT_ERROR_PERMISSION_DENIED#1%
%s: Permission refusée
.
:TEXT_ERROR_NO_SUCH_FILE#1%
%s: Aucun fichier ou répertoire de ce nom
.
:TEXT_ERROR_UNKNOWN_ERROR#1%
%s: Erreur inconnue
.
#
# Informational messages
#
:TEXT_MSG_PAUSE#1
Appuyez sur une touche pour continuer . . .\
.
:TEXT_MSG_HISTORY_SIZE#0%
La taille de l'historique est de %d octets.
.
:TEXT_MSG_DOSKEY
Les fonctionnalités DOSKEY sont déjà activées dans le shell.
.
:TEXT_MSG_ECHO_STATE#0%
ECHO est %s
.
:TEXT_MSG_VERIFY_STATE#0%
VERIFY est %s
.
:TEXT_MSG_FDDEBUG_STATE#0%
La sortie de DEBUG est %s.
.
:TEXT_MSG_FDDEBUG_TARGET#0%
La sortie de DEBUG est imprimée sur '%s'.
.
:TEXT_MSG_BREAK_STATE#0%
BREAK est %s
.
:TEXT_MSG_LFNFOR_STATE#0%
LFNFOR est %s
.
:TEXT_MSG_LFNFOR_COMPLETE_STATE#0%
LFN Complete est %s
.
:TEXT_MSG_CURRENT_DATE#0%
La date actuelle est %s
.
## The three DATE prompts MUST be in this order!
:TEXT_MSG_ENTER_DATE_AMERICAN#1%
Entrez une nouvelle date (mm%sjj%s[aa]aa): \
.
:TEXT_MSG_ENTER_DATE_EUROPE#1%
Entrez une nouvelle date (jj%smm%s[aa]aa): \
.
:TEXT_MSG_ENTER_DATE_JAPANESE#1%
Entrez une nouvelle date ([aa]aa%smm%sjj): \
.
:TEXT_MSG_CURRENT_TIME#0%
L'heure actuelle est %s
.
:TEXT_STRING_PM#1
pm\
.
:TEXT_STRING_AM#1
am\
.
:TEXT_MSG_ENTER_TIME#1
Entrez une nouvelle heure : \
.
# src-file <operation> target-file
:TEXT_MSG_COPYING#0%
%s %s %s
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Used by Delete all (Y/N) --> let ENTER default to NO
# Return value: a -> Yes; else -> No
:PROMPT_DELETE_ALL#1%
OoNn{CR}{LF}{CBREAK}
aabb b b b
Tous les fichiers dans '%s' vont être détruits !
Êtes-vous sûr (O/N) ? \
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Return value: a -> Yes; else -> No
:PROMPT_YES_NO#1
OoNn{LF}{CR}{CBREAK}{ESC}
aabb a a b b
[Oui=ENTRÉE, Non=ÉCH] ? \
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Attention: This prompt is issued via BIOS; any newline MUST be prefixed
# by \r!
# Return value: a -> Yes; b -> No; c -> All; else -> Undefined
:PROMPT_CANCEL_BATCH#1%
OoNnTtQq{LF}{CR}{CBREAK}{ESC}
aabbcccc a a c b
Appui de Control-Break détecté.\r
Terminer le fichier batch '%s' (Oui/Non/Tous) ? \
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Return value: a -> Yes; b -> No; c -> All; d -> Quit
:PROMPT_OVERWRITE_FILE#1%
OoNnTtQq{BREAK}{ENTER}{ESC}
aabbccdd d a b
Écraser '%s' (Oui/Non/Tous/Quitter) ? \
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Return value: a -> Yes; b -> No; c -> All; d -> Quit
:PROMPT_APPEND_FILE#1%
OoNnTtQq{BREAK}{ENTER}{ESC}
aabbccdd d a b
Ajouter à '%s' (Oui/Non/Tous/Quitter) ? \
.
# This prompt MUST include the pseudo key CBREAK!
# Note: This prompt ignores DOS NLS intentionally in order to
# keep interactive prompt & user-interaction in sync.
# Return value: a -> Yes; b -> No; c -> All; d -> Quit
:PROMPT_DELETE_FILE#1%
OoNnTtQq{BREAK}{ENTER}{ESC}
aabbccdd d a b
Effacer '%s' (Oui/Non/Tous/Quitter) ? \
.
:TEXT_UNKNOWN_FILENAME#1
<<inconnu>>\
.
:TEXT_DIRSTACK_EMPTY
La pile de répertoires est vide.
.
## Strings to construct the DIR output
:TEXT_DIR_HDR_VOLUME#1%
Le volume dans le lecteur %c \
.
:TEXT_DIR_HDR_VOLUME_STRING#0%
est %s
.
:TEXT_DIR_HDR_VOLUME_NONE
n'a pas d'étiquette
.
:TEXT_DIR_HDR_SERIAL_NUMBER#0%
Le numéro de série du volume est %04X-%04X
.
:TEXT_DIR_FTR_FILES#1%
%10s fichier(s)\
.
:TEXT_DIR_FTR_BYTES#0%
%12s octets
.
:TEXT_DIR_FTR_TOTAL_NUMBER
Total des fichiers listés :
.
:TEXT_DIR_FTR_DIRS#1%
%10s répertoire(s)\
.
:TEXT_DIR_FTR_BYTES_FREE#0%
%15s octets de libres
.
:TEXT_DIR_DIRECTORY#0%
Répertoire de %s
.
:TEXT_DIR_DIRECTORY_WITH_SPACE#0%
Répertoire de %s
.
:TEXT_DIR_LINE_FILENAME_WIDE#1%
%-15s\
.
:TEXT_DIR_LINE_FILENAME_BARE#1%
%s
.
:TEXT_DIR_LINE_FILENAME_SINGLE#1%
%-13s\
.
:TEXT_DIR_LINE_FILENAME#1%
%-8s %-3s \
.
:TEXT_DIR_LINE_SIZE_DIR#1
<REP> \
.
:TEXT_DIR_LINE_SIZE#1%
%10s \
.
:TEXT_FILE_COMPLATION_DISPLAY#1%
%-14s\
.
:TEXT_MSG_PATH#0%
PATH=%s
.
:TEXT_MSG_PATH_NONE#1
Aucun chemin de recherche défini.
.
## The following names MUST be in this order!
:TEXT_WEEKDAY_SHORT_NAME_SUNDAY#1
Dim\
.
:TEXT_WEEKDAY_SHORT_NAME_MONDAY#1
Lun\
.
:TEXT_WEEKDAY_SHORT_NAME_TUESDAY#1
Mar\
.
:TEXT_WEEKDAY_SHORT_NAME_WEDNSDAY#1
Mer\
.
:TEXT_WEEKDAY_SHORT_NAME_THURSDAY#1
Jeu\
.
:TEXT_WEEKDAY_SHORT_NAME_FRIDAY#1
Ven\
.
:TEXT_WEEKDAY_SHORT_NAME_SATURDAY#1
Sam\
.
# Displayed by DEL how many files were removed.
# These three strings must be kept in order!
:TEXT_MSG_DEL_CNT_FILES#1
aucun fichier effacé.
.
:TEXT_MSG_DEL_CNT_FILES_1#1
un fichier effacé.
.
:TEXT_MSG_DEL_CNT_FILES_2#1%
%u fichiers effacés.
.
:TEXT_MSG_SHOWCMD_INTERNAL_COMMANDS
Commandes internes disponibles :
.
:TEXT_MSG_SHOWCMD_FEATURES
Fonctionnalités présentes :
.
## Displayed within "?" <-> showcmd() to enumerate the included features
## Note the trailing single space
:TEXT_SHOWCMD_FEATURE_ALIASES#1
[aliases] \
.
:TEXT_SHOWCMD_FEATURE_ENHANCED_INPUT#1
[saisie étendue] \
.
:TEXT_SHOWCMD_FEATURE_HISTORY#1
[historique] \
.
:TEXT_SHOWCMD_FEATURE_FILENAME_COMPLETION#1
[complétion des noms de fichiers] \
.
:TEXT_SHOWCMD_FEATURE_SWAP_EXEC#1
[swapping] \
.
:TEXT_SHOWCMD_FEATURE_CALL_LOGGING#1
[start logging] \
.
:TEXT_SHOWCMD_FEATURE_LAST_DIR#1
[dernier répertoire] \
.
:TEXT_SHOWCMD_FEATURE_LONG_FILENAMES#1
[longs noms de fichiers] \
.
:TEXT_SHOWCMD_FEATURE_KERNEL_SWAP_SHELL#1
[swap kernel] \
.
:TEXT_SHOWCMD_FEATURE_XMS_SWAP#1
[swap XMS] \
.
:TEXT_SHOWCMD_DEFAULT_TO_SWAP#1
[swap par défaut] \
.
:TEXT_SHOWCMD_FEATURE_INSTALLABLE_COMMANDS#1
[commandes installables] \
.
:TEXT_SHOWCMD_FEATURE_NLS#1
[DOS NLS] \
.
:TEXT_SHOWCMD_FEATURE_DIRSTACK#1
[pile de répertoires (PUSHD)] \
.
:TEXT_SHOWCMD_FEATURE_DEBUG#1
[débogage FreeCOM] \
.
:TEXT_MSG_INIT_BYPASS_AUTOEXEC#1
Appuyez sur F8 pour le mode pas-à-pas, ou sur F5 pour passer %s... \
.
:TEXT_MSG_INIT_BYPASSING_AUTOEXEC#0%
Contournement de '%s'.
.
:TEXT_MSG_VER_DOS_VERSION#0%
DOS version %u.%u
.
:TEXT_MSG_VER_EARLY_FREEDOS
Noyau FreeDOS (build 1933 ou plus récent)
.
:TEXT_MSG_VER_LATER_FREEDOS#0%
Version du noyau FreeDOS : %d.%d.%d
.
:TEXT_MSG_VER_WARRANTY
Copyright (C) 1994-2001 Tim Norman et d'autres.
Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS
AUCUNE GARANTIE, ni explicite ni implicite, y compris les garanties de
commercialisation ou d'adaptation dans un but spécifique. Prenez
connaissance de la Licence Publique Générale GNU pour plus de détails.
Envoyez les rapports de bugs à [email protected].
Les mises à jour sont disponibles sur http://freedos.sourceforge.net/freecom
.
:TEXT_MSG_VER_REDISTRIBUTION
Copyright (C) 1994-2001 Tim Norman et d'autres.
Ce programme est libre, vous pouvez le redistribuer et/ou le modifier
selon les termes de la Licence Publique Générale GNU publiée par la Free
Software Foundation (version 2 ou bien toute autre version ultérieure
choisie par vous).
Envoyez les rapports de bugs à [email protected].
Les mises à jour sont disponibles sur http://freedos.sourceforge.net/freecom
.
:TEXT_MSG_VER_DEVELOPERS
Le shell de commandes FreeDOS est développé par de nombreux développeurs,
consultez le fichier HISTORY.TXT attaché.
Actuellement maintenu par Steffen Kaiser mailto:[email protected]
Envoyer les rapports de bugs à [email protected].
Les mises à jour sont disponibles à http://freedos.sourceforge.net/freecom
.
# Displayed when the shell is to terminate, but has been started
# with /P option <-> shell cannot exist;
# This is a crash situation, because FreeCOM won't reach this situation
# normally otherwise
# All newlines must be prefixed by \r's !
:TEXT_MSG_REBOOT_NOW#1
\r\n\r
Le shell est sur le point d'être terminé, bien que cela soit interdit\r
(habituellement par la spécification de l'option "/P")\r
Vous devez relancer le système ou, si le shell fonctionne dans un\r
environnement multitâche, terminer la tâche manuellement.\r
.
# Displayed during the initialization phase of FreeCOM, if its own
# filename could not be determined.
:TEXT_MSG_FREECOM_NOT_FOUND#1
Exécutable FreeCOM non trouvé.
Vous devez spécifier le chemin complet vers COMMAND.COM
comme premier argument de COMMAND, par exemple :
C:\\FDOS
.
:TEXT_MEMORY_ENVIRONMENT#1%
Segment d'environnement : max %5u octets ; %5u octets libres
.
:TEXT_MEMORY_CONTEXT#1%
Segment de contexte : max %5u octets ; %5u octets libres
.
:TEXT_MEMORY_HEAP#1%
Mémoire du tas : %5lu octets disponibles
.
:TEXT_MEMORY_CTXT_ALIAS#1%
\tAliases : limite %5u octets, actuel %5u octets, %5u éléments
.
:TEXT_MEMORY_CTXT_HISTORY#1%
\tHistorique : limite %5u octets, actuel %5u octets, %5u éléments
.
:TEXT_MEMORY_CTXT_DIRSTACK#1%
\tPile répertoire: limite %5u octets, actuel %5u octets, %5u éléments
.
:TEXT_MEMORY_CTXT_LASTDIR#1%
\tCache répert. : %5u octets utilisés, %5u éléments
.
:TEXT_MEMORY_CTXT_BATCH#1%
\tEmpilement bat : %5u octets utilisés, %5u éléments
.
:TEXT_MEMORY_CTXT_SWAPINFO#1%
\tSwapinfo : %5u octets utilisés, %5u éléments
.
## CHCP
:TEXT_ERROR_GET_CODEPAGE#1
Impossible d'identifier la page de code actuelle depuis le système.
.
:TEXT_ERROR_SET_CODEPAGE#1
Le changement de page de code en cours a échoué.
.
:TEXT_DISPLAY_CODEPAGE#1%
La page de code actuelle est %u.
La page de code système est : %u.
.
#
# Command help text
#
:TEXT_CMDHELP_ALIAS
Affiche, détermine ou enlève les alias
ALIAS [variable[=][chaîne]]
variable Spécifie le nom de l'alias
chaîne Spécifie la chaîne de caractères qui activera l'alias.
Tapez ALIAS sans paramètres pour afficher les alias actuels.
.
:TEXT_CMDHELP_BEEP
Génère un bip sonore.
.
:TEXT_CMDHELP_BREAK
Active ou désactive l'usage de CTRL+C.
BREAK [ON | OFF]
Tapez BREAK sans paramètres pour afficher le statut actuel de BREAK.
.
:TEXT_CMDHELP_CALL#1
Exécute un fichier batch à partir d'un autre fichier batch.
CALL [/S | /N] [/Y] [lecteur:][chemin]fichier [paramètres batch]
paramètres batch Spécifie les paramètres du fichier batch à invoquer.
/S force, /N renie le swapping de FreeCOM.
/Y active le traçage pendant l'exécution de la commande.
.
:TEXT_CMDHELP_CD
Change de répertoire ou affiche le nom du répertoire en cours.
CHDIR [lecteur:][chemin]
CHDIR[..]
CD [lecteur:][chemin]
CD[..]
CD -
.. Indique que vous souhaitez changer vers le répertoire-parent.
- Si l'option "dernier répertoire" est active, change vers le
dernier répertoire.
Tapez CD lecteur: pour afficher le répertoire en cours sur le lecteur spécifié.
Tapez CD sans paramètres pour afficher le lecteur et répertoire actuels.
Regardez aussi : CDD
.
:TEXT_CMDHELP_CDD
Affiche le nom ou change le répertoire et le lecteur en cours.
CDD [lecteur:][chemin]
CDD[..]
.. Change vers le répertoire parent.
- Si l'option "dernier répertoire" est active, revient au dernier répertoire.
Si lecteur: est spécifié, le lecteur en cours est changé ; c'est la seule
différence avec "CHDIR".
Tapez CD sans paramètres pour afficher le lecteur et répertoire en cours.
.
:TEXT_CMDHELP_CHCP
Affiche ou définit la page de code en cours.
CHCP [nnn]
nnn Indique le numéro de page de code.
Tapez CHCP sans paramètres afin d'afficher la page de code en cours.
.