line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Psh::Locale::French; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
951
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
48
|
|
4
|
1
|
|
|
1
|
|
829
|
use locale; |
|
1
|
|
|
|
|
257
|
|
|
1
|
|
|
|
|
6
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
BEGIN { |
7
|
1
|
|
|
1
|
|
417
|
my %sig_description = ( |
8
|
|
|
|
|
|
|
'TTOU' => 'terminal (sortie)', |
9
|
|
|
|
|
|
|
'TTIN' => 'terminal (entrée)', |
10
|
|
|
|
|
|
|
'KILL' => 'arrêt (KILL)', |
11
|
|
|
|
|
|
|
'FPE' => 'exception (virgule flottante)', |
12
|
|
|
|
|
|
|
'SEGV' => 'défaut de segmentation', |
13
|
|
|
|
|
|
|
'PIPE' => 'tuyau (pipe) cassé', |
14
|
|
|
|
|
|
|
'BUS' => 'erreur de bus', |
15
|
|
|
|
|
|
|
'ABRT' => 'avorté', |
16
|
|
|
|
|
|
|
'ILL' => 'instruction illégale', |
17
|
|
|
|
|
|
|
'TSTP' => 'arrêt des entrées', |
18
|
|
|
|
|
|
|
'INT' => "interruption" |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
1
|
|
|
|
|
2
|
$Psh::text{sig_description}=\%sig_description; |
22
|
|
|
|
|
|
|
|
23
|
1
|
|
|
|
|
5
|
$Psh::text{done}='fait '; |
24
|
1
|
|
|
|
|
2
|
$Psh::text{terminated}='terminé'; |
25
|
1
|
|
|
|
|
2
|
$Psh::text{stopped}='arrêté'; |
26
|
1
|
|
|
|
|
1
|
$Psh::text{restart}='relancement'; |
27
|
1
|
|
|
|
|
2
|
$Psh::text{foreground}='premier plan'; |
28
|
1
|
|
|
|
|
3
|
$Psh::text{exec_failed}="Erreur (exec %1) échoué.\n"; |
29
|
1
|
|
|
|
|
1
|
$Psh::text{simulate_perl_w}="En simulant -w et 'strict'\n"; |
30
|
1
|
|
|
|
|
1
|
$Psh::text{perm_denied}="%2 : %1 : Permission refusée.\n"; |
31
|
1
|
|
|
|
|
1
|
$Psh::text{no_such_dir}="%2 : %1 : Répertoire introuvable.\n"; |
32
|
1
|
|
|
|
|
2
|
$Psh::text{no_such_builtin}="%2 : %1 : commande interne (builtin) introuvable.\n"; |
33
|
1
|
|
|
|
|
6
|
$Psh::text{readline_interrupted}="\nInterrompu !\n"; |
34
|
1
|
|
|
|
|
3
|
$Psh::text{readline_error}="Readline n'a pas initialisé correctement :\n%1\n"; |
35
|
1
|
|
|
|
|
2
|
$Psh::text{no_readline}="Readline non disponible. Veuillez installer Term::Readline::Perl\n"; |
36
|
1
|
|
|
|
|
1
|
$Psh::text{old_gnu_readline}="La version de votre module Term::ReadLine::Gnu %1 devrait être au moins égale à 1.06. Veuillez le mettre à jour.\n"; |
37
|
1
|
|
|
|
|
2
|
$Psh::text{unalias_noalias}="unalias : `%1' n'est pas exprimé\n"; |
38
|
1
|
|
|
|
|
3
|
$Psh::text{builtin_readline_header}="Problème Readline %1 avec les dispositifs :\n"; |
39
|
1
|
|
|
|
|
1
|
$Psh::text{no_jobcontrol}="Votre système ne supporte pas la gestion de tâche\n"; |
40
|
1
|
|
|
|
|
2
|
$Psh::text{help_header}="psh supporte les commandes internes (builtin) suivantes :\n"; |
41
|
1
|
|
|
|
|
2
|
$Psh::text{no_help}="Désolé, l'aide pour la commande interne (builtin) %1 n'est pas disponible\n"; |
42
|
|
|
|
|
|
|
|
43
|
1
|
|
|
|
|
1
|
$Psh::text{prompt_expansion_error}=<
|
44
|
|
|
|
|
|
|
%3: Avertissement : L'expansion d' '\\%1' (dans le |
45
|
|
|
|
|
|
|
prompt) a produit le texte '\\%2'. Je retire |
46
|
|
|
|
|
|
|
cet échappement. |
47
|
|
|
|
|
|
|
EOT |
48
|
|
|
|
|
|
|
|
49
|
1
|
|
|
|
|
11
|
$Psh::text{prompt_unknown_escape}="%2: Avertissement : \$Psh::prompt contient l'échappement inconnu `\\%1'.\n"; |
50
|
1
|
|
|
|
|
24
|
$Psh::text{no_libwin32}="libwin32 requis (disponible sur CPAN en tant que paquet ou avec la distribution d'ActivePerl).\n"; |
51
|
|
|
|
|
|
|
} |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
1; |