Rev 2890 | Rev 7681 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | reyssat | 1 | !set wims_module_log=error: $error |
2 | |||
2890 | bpr | 3 | <b>$wims_name_Error!</b>. |
20 | reyssat | 4 | |
5 | !if $error = doc_not_exist |
||
6 | Il documento richiesto non esiste più. |
||
7 | !exit |
||
8 | !endif |
||
9 | |||
10 | !if $error = abuse |
||
11 | Il documento ha un titolo un po' strano! Sei sicuro? |
||
12 | <p> |
||
13 | <b>Attenzione</b>! Potremmo decidere di rifiutarti l'accesso |
||
14 | al sito. |
||
15 | !exit |
||
16 | !endif |
||
17 | |||
18 | !if $error = quota |
||
19 | Non è più possibile modificare questo documento perché |
||
20 | si sta raggiungendo il limite di spazio disco. |
||
21 | !exit |
||
22 | !endif |
||
23 | |||
24 | !if $error = quota_file |
||
25 | Non è possibile allegare un file perché lo spazio disco |
||
26 | non è sufficiente. |
||
27 | !exit |
||
28 | !endif |
||
29 | |||
30 | !if $error = no_tit |
||
31 | È necessario inserire un titolo! |
||
32 | !exit |
||
33 | !endif |
||
34 | |||
35 | !if $error = no_author |
||
36 | È necessario inserire un autore! |
||
37 | !exit |
||
38 | !endif |
||
39 | |||
40 | !if $error = bad_email |
||
41 | L'indirizzo e-mail inserito non sembrerebbe valido! È necessario |
||
42 | verificarlo. |
||
43 | !exit |
||
44 | !endif |
||
45 | |||
46 | !if $error = bad_code |
||
47 | Spiacente, il codice di accesso non è valido. Non è |
||
48 | possibile leggere/modificare il documento richiesto. |
||
49 | <p> |
||
50 | È possibile |
||
51 | !mailurl $wims_site_manager scrivere al gestore del sito\ |
||
52 | Codice di accesso dimenticato |
||
53 | se si è dimenticato il codice. |
||
54 | !exit |
||
55 | !endif |
||
56 | |||
57 | !if $error = unauthorized |
||
58 | Non è possibile leggere/modificare il documento richiesto. |
||
59 | !exit |
||
60 | !endif |
||
61 | |||
62 | !if $error = bad_data |
||
63 | I dati inseriti non sono corretti. È necessario |
||
64 | verificarli. |
||
65 | !exit |
||
66 | !endif |
||
67 | |||
68 | !if $error = class_no_right |
||
69 | Spiacente, la richiesta non è valida. È necessario |
||
70 | consultare il docente. |
||
71 | !exit |
||
72 | !endif |
||
73 | |||
74 | !if $error = small_code |
||
75 | Il codice di accesso è troppo corto. |
||
76 | !exit |
||
77 | !endif |
||
78 | |||
79 | !if $error = big_code |
||
80 | Il codice di accesso è troppo lungo. |
||
81 | !exit |
||
82 | !endif |
||
83 | |||
84 | !if $error = code_discord |
||
85 | <b>Attenzione</b>. I due codici inseriti non corrispondono. |
||
86 | Riprova. |
||
87 | !exit |
||
88 | !endif |
||
89 | |||
90 | !if $error = bad_newcode |
||
91 | Il codice di accesso contiene caratteri proibiti. È necessario |
||
92 | utilizzare solo caratteri alfanumerici. |
||
93 | !exit |
||
94 | !endif |
||
95 | |||
96 | !if $error = bad_oldcode |
||
97 | Il <em>vecchio codice</em> è errato. Riprova. |
||
98 | !exit |
||
99 | !endif |
||
100 | |||
101 | !if $error = deposit_fail |
||
102 | Spiacente, il nome file non è valido. È necessario |
||
103 | verificare. |
||
104 | !exit |
||
105 | !endif |
||
106 | |||
107 | !if $error = deposit_binary |
||
5903 | bpr | 108 | Il file <span class="tt">$wims_deposit</span> è un file binario! |
20 | reyssat | 109 | È possibile inserire solo file di testo. |
110 | !exit |
||
111 | !endif |
||
112 | |||
113 | !if $error = src_too_long |
||
5903 | bpr | 114 | Il blocco <span class="tt">$block</span> non può essere accettato perché |
20 | reyssat | 115 | supera il limite di $max_blocklen byte. È necessario spezzarlo |
116 | in più blocchi. |
||
117 | !exit |
||
118 | !endif |
||
119 | |||
120 | !if $error = file_too_long |
||
121 | Il file LaTeX non può essere accettato perché supera |
||
122 | il limite di $max_texlen byte. È necessario spezzarlo |
||
123 | in più blocchi. |
||
124 | !exit |
||
125 | !endif |
||
126 | |||
127 | !if $error = no_latex2html |
||
128 | Spiacente, non è possibile inserire file LaTeX perchè |
||
129 | questo server non dispone del software necessario (LaTeX2HTML). |
||
130 | È possibile eseguire LaTeX2HTML sul proprio computer locale |
||
131 | e inserire in questo server il file html risultante. |
||
132 | !exit |
||
133 | !endif |
||
134 | |||
135 | !msg $error |
||
136 |