This file is indexed.

/usr/share/tkrat2.2/text_t_it.tcl is in tkrat 1:2.2cvs20100105-true-dfsg-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#################################################################
# DO NOT EDIT!
#
# This file is automatically generated from files in the Text/ subdirectory
#
#  TkRat software and its included text is Copyright 1996-2004 by
#  Martin Forssen
#
#  The full text of the legal notices is contained in the file called
#  COPYRIGHT, included with this distribution.
#


# The following is the function which does the actual work
proc init_t_it {} {
global t
set t(tkrat) TkRat
set t(version) Versione
set t(about) Informazioni
set t(quit) Esci
set t(name) Nome
set t(size) Dimensione
set t(messages) Messaggi
set t(help) Aiuto
set t(ok) Ok
set t(cancel) Annulla
set t(ratatosk) {Ratatosk. Nella mitologia norvegese, lo scoiattolo che corre su e giù per l'albero cosmico, Yggdrasil, portando insulti dal drago Nidhog, ai piedi dell'albero, all'aquila in cima, e viceversa.}
set t(months) {Gen Feb Mar Apr Mag Giu Lug Ago Set Ott Nov Dic}
set t(move) Muovi
set t(delete) Cancella
set t(undelete) {Annulla cancella}
set t(compose) Componi
set t(reply_sender) {Rispondi al mittente}
set t(reply_all) {Rispondi a tutti}
set t(here_is) {Qui c'è un oggetto di tipo}
set t(show_all) {Mostra tutti}
set t(old_dirs) {Usato in precedenza}
set t(save_to_file) {Salva file}
set t(save_failed) {Impossibile salvare}
set t(message) Messaggio
set t(print) Stampa
set t(folder_key_print) Stampa
set t(show_all_headers) {Mostra tutte le intestazioni}
set t(show_selected_headers) {Mostra alcune intestazioni}
set t(show_no_headers) {Non mostrare intestazioni}
set t(compose_name) {Componi messaggio}
set t(edit) Modifica
set t(edit_body) {Corpo del messaggio}
set t(edit_headers) {Intestazioni del messaggio}
set t(read_from_file) {Leggi da file}
set t(abort) Anulla
set t(headers) Intestazioni
set t(attachments) Allegati
set t(attach_file) {Allega file}
set t(attach_special) {Allega speciale}
set t(detach) Rimuovi
set t(send) Spedisci
set t(send_save) {Spedisci e Salva}
set t(external_editor) {Editor esterno}
set t(running_ext_editor) {Eseguendo editor esterno...}
set t(filename) {Nome file}
set t(description) Descrizione
set t(id) Identificatore
set t(type) Tipo
set t(subtype) Sottotipo
set t(encoding) Codifica
set t(current_encoding) {Codifica corrente}
set t(other) altro
set t(custom_type) {Tipo utente}
set t(need_to) {Devi specificare almeno un destinatario (A:, Copia:, Copia cieca:)}
set t(admin) Amministrazione
set t(newedit_folder) {Nuova/Modifica cartella}
set t(update_folder) {Aggiorna cartella}
set t(continue) Continua
set t(open_file) {Apri file}
set t(open_dbase) {Cerca nel database}
set t(folders) Cartelle
set t(and) e
set t(or) o
set t(not) non
set t(to) A
set t(subject) Soggetto
set t(keywords) {Parole chiave}
set t(all) Tutti
set t(search) Cerca
set t(emptyexp) {Chiave di ricerca vuota}
set t(to_file) {In file}
set t(to_dbase) {In database}
set t(insert_into_dbase) {Inserisci in database}
set t(exdate) {Data di scadenza}
set t(extype) {Azione di scadenza}
set t(remove) Rimuovi
set t(incoming) {Inserisci in entrata}
set t(backup) {Muovi in archivio}
set t(insert) Inserisci
set t(already_vfolderdef) {C'è già una finestra di modifica cartella}
set t(vfolderdef) {Definisci cartella virtuale}
set t(window) Finestra
set t(close) Chiudi
set t(folder) Cartella
set t(new_file) {Nuova cartella file}
set t(new_mh) {Nuova cartella mh}
set t(new_dbase) {Nuova cartella database}
set t(new_imap) {Nuova cartella IMAP}
set t(new_pop3) {Nuova cartella POP3}
set t(new_dynamic) {Nuova cartella dinamica}
set t(new_vfolder) {Nuova cartella virtuale}
set t(need_name) {Devi specificare un nome}
set t(new_submenu) {New submenu}
set t(folder_name) {Nome cartella}
set t(create) Crea
set t(dont_create) {Non creare}
set t(failed_create) {Impossibile creare la directory}
set t(do_without_dir) {L'esecuzione continuerà senza, ma certe operazioni potrebbero fallire.}
set t(error_in_userproc) {C'è un eroore nel file delle procedure utente}
set t(translate_error) {RatUP_Translate ha generato un risultato incorretto per il seguente parametro: %.100s}
set t(reread_userproc) {Rileggi userproc}
set t(preferences) Preferenze
set t(watcher) Controllo
set t(folderwindow) {Finestra cartella}
set t(general) Generale
set t(sending) Spedizione
set t(under_construction) {Lavori in corso}
set t(language) Lingua
set t(show_changes) {Messaggi cambiamenti}
set t(show) Mostra
set t(dont_show) {Non mostrare}
set t(dbase_dir) {Directory database}
set t(apply) Aggiorna
set t(reset) Azzera
set t(unapplied_changes_title) {Cambiamenti non aggiornati}
set t(unapplied_changes) {Hai fatto dei cambiamenti che non sono stati aggiornati. Cosa vuoi farne}
set t(discard) Scarta
set t(print_command) {Comando di stampa}
set t(tmp_dir) {Directory temporanea}
set t(window_geometry) {Posizionamento finestra}
set t(default_folder) {Cartella iniziale}
set t(show_header_selection) {Intestazioni selezionate}
set t(show_headers) {Mostra intestazioni}
set t(sort_order) Ordine
set t(sort_folder) {Ordine naturale}
set t(sort_reverseFolder) {Ordine naturale inverso}
set t(sort_date) {Per data}
set t(sort_reverseDate) {Per data inversa}
set t(sort_size) {By size}
set t(sort_reverseSize) {By reverse size}
set t(stdfolders) {Cartelle normali}
set t(dbase_folders) {Cartelle database}
set t(width) Larghezza
set t(lines) linee
set t(bell_ringings) {Numero di beep}
set t(show_messages) {Mostra messaggi}
set t(new) Nuovo
set t(signature_file) {File signature}
set t(domain) Dominio
set t(smtp_hosts) {Host SMTP}
set t(charset) {Gruppo di caratteri}
set t(attribution) Attribuzione
set t(alias) Alias
set t(fullname) {Nome completo}
set t(content) Contenuto
set t(need_alias_and_content) {Sono necessari sia un alias sia un contenuto}
set t(dismiss) Chiudi
set t(save) Salva
set t(save_out) {Salva uscite}
set t(save_to) {Salva in}
set t(newfolder) {New folder}
set t(dont_save) {Non salvare}
set t(found_aliases) {Nei file vecchi ho trovato}
set t(num_aliases) alias
set t(see_log) {Mostra messaggi vecchi}
set t(seelog_title) {Messaggi vecchi}
set t(does_not_exist) {non esiste}
set t(no_folder) {Nessuna cartella aperta}
set t(already_login) {C'è già un altro processo di login. Completa prima l'altro}
set t(login) Login
set t(opening) Aprendo
set t(mailbox_on) {cartella su}
set t(host) Host
set t(user) Utente
set t(passwd) Password
set t(mbox) {Mailbox path}
set t(reply_to_which) {Questo messaggio contiene messaggi allegati.
Scegli a quale vuoi rispondere}
set t(forward_which) {Questo messaggio contiene messaggi allegati.
Scegli quale vuoi rispedire}
set t(forwarded_message) {Messaggio rispedito}
set t(forward_as_attachment) {Rispedisci come allegato}
set t(forward_inline) {Rispedisci come incluso}
set t(empty_message) {Messaggio vuoto}
set t(structure) Struttura
set t(view_source) {Mostra sorgente}
set t(source) Sorgente
set t(help_window) {Finestra d'aiuto}
set t(site) Indirizzo
set t(access-type) {Tipo d'accesso}
set t(directory) Directory
set t(server) Server
set t(smtp) SMTP
set t(user_program) {Programma definito dall'utente}
set t(sendprot) {Manda attraverso}
set t(sendprog) {Programma spedizione}
set t(sendprog_8bit) {Sending program can handle 8-bit data}
set t(sort_subject) {Soggetto per data}
set t(sort_threaded) Threaded
set t(import) Importa
set t(import_directory) {Directory d'importazione}
set t(cant_read) {Non posso leggere}
set t(ignored_not_file_not_dir) {viene ignorato non è né un file né una directory.}
set t(bounce_which) {Questo messaggio contiene messaggi allegati.
Scegli quale messaggio rimbalzare}
set t(dbase) Database
set t(dbase_backup) {Directory archivio}
set t(do_expire) {Database di scadenza}
set t(expire) Spira
set t(expire_result) {Risultati di scadenza}
set t(scanned) Scansionati
set t(deleted) Cancellati
set t(backedup) {Messo nell'archivio}
set t(moved_to_inbox) {Messo nella inbox}
set t(db_expire) {Database di scadenza}
set t(packing_backup) {Comprimendo archivi}
set t(start_selection) {Seleziona all'apertura}
set t(first_message) {Primo messaggio nella cartella}
set t(last_message) {Ultimo messaggio nella cartella}
set t(first_new_message) {Primo messaggio non letto nella cartella}
set t(before_first_new_message) {Il messaggio precedente il primo non letto}
set t(see_more_of_message) {Mostra altro del messaggio di ritorno}
set t(extra) Extra
set t(cc) Copia
set t(bcc) {Copia cieca}
set t(content_description) {Descrizione contenuto}
set t(reply_to) Rispondi-A
set t(reply-to) Rispondi-A
set t(comments) Commenti
set t(comment) Commento
set t(from) Da
set t(date) Data
set t(received) Ricevuto
set t(message-id) Id-Messaggio
set t(mime-version) Versione-MIME
set t(content-type) Tipo-Contenuto
set t(auto-submitted) AutoSpedito
set t(default_reply_to) {Rispondi-A Standard}
set t(character_size) {Dimensione carattere}
set t(need_restart) {Devi riiniziare TkRat perché le tue modifiche abbiano effetto.}
set t(opening_folder) {Aprendo cartella}
set t(read) Leggi
set t(write) Scrivi
set t(exec) Esegui
set t(perm_user) Utente
set t(perm_group) Gruppo
set t(perm_other) Altro
set t(mode) Modo
set t(all_read) {Tutti lettura}
set t(all_read_write) {Tutti lettura e scrittura}
set t(max_height) {Max altezza}
set t(insert_failed) {Impossibile inserire messaggio}
set t(define_keys) {Definisci tasti}
set t(folder_key_find) Ricerca
set t(folder_key_compose) Componi
set t(folder_key_close) Chiudi
set t(folder_key_openfile) Open
set t(folder_key_quit) Esci
set t(folder_key_nextu) {Prossimo nuovo}
set t(folder_key_sync) Sincronizza
set t(folder_key_netsync) {Network sync}
set t(folder_key_update) Aggiorna
set t(folder_key_delete) Cancella
set t(folder_key_undelete) {Annulla cancella}
set t(folder_key_flag) {Contrassegna messaggio}
set t(folder_key_next) Prossimo
set t(folder_key_prev) Precedente
set t(folder_key_home) {Inizio del messaggio}
set t(folder_key_bottom) {Fine del messaggio}
set t(folder_key_pagedown) {Pagina giù}
set t(folder_key_pageup) {Pagina su}
set t(folder_key_linedown) {Linea giù}
set t(folder_key_lineup) {Linea su}
set t(folder_key_replya) {Rispondi a tutti}
set t(folder_key_replys) {Rispondi al mittente}
set t(folder_key_forward_a) {Rispedisci come allegato}
set t(folder_key_forward_i) {Rispedisci come incluso}
set t(folder_key_bounce) {Bounce message}
set t(add_key) Aggiungi
set t(press_key) {Premi il nuovo tasto}
set t(key_defined) {Questo tasto è già assegnato a}
set t(replace_key) {Cambia con nuovo assegnamento}
set t(do_delete) {Premi il tasto assegnato per cancellare}
set t(nothing) Niente
set t(take_mail) {Prendi posta da Netscape}
set t(import_IMAP) {Cartelle IMAP}
set t(import_DIS) {Disconected folders}
set t(pattern) Chiave
set t(host_required) {Devi specificare un host}
set t(import_failed) {Importazione impossibile}
set t(warning_sendprog) {ATTENZIONE: Il programma specificato per spedire non esiste o non è eseguibile}
set t(automatic_wrap) {A capo automatico}
set t(need_keyword) {Devi specificare almeno una parola chiave.}
set t(opening_connection) {Aprendo connessione...}
set t(wait_greeting) {In attesa di connessione...}
set t(get_capabilities) {Richiedendo caratteristiche...}
set t(send_envelope) {Spedendo informazioni busta...}
set t(send_from) {Mandando indirizzo destinatario...}
set t(send_rcpt) {Mandando destinatario %.100s...}
set t(send_data) {Mandando dati...}
set t(wait_ack) {In attesa di conferma...}
set t(closing) {Chiudendo canale...}
set t(sending_message) {Spedendo messaggio...}
set t(upgrade_dbase) {Aggiorna database}
set t(old_dbase) {Hai una vecchia versione del database. Devo convertirlo prima di usarlo}
set t(unlinked_messages) {Messaggio scollegato}
set t(unl_m1) C'erano
set t(unl_m2) {messaggi scollegati nel database. Possono essere reperiti nella cartella UnlinkedMessages (che è una cartella file nella directory ~)}
set t(send_deferred) {Send deferred messages}
set t(delivery_mode) {Modo consegna}
set t(sending_deferred) {Spedendo messaggi differiti}
set t(to_send) {Da spedire}
set t(sent) Spedito
set t(no) No
set t(waiting_on_sender) {In attesa del processo di spedizione (sta mandando)...}
set t(illegal_file_spec) {File non valido specificato}
set t(mh_name) Nome-MH
set t(need_mh_name) {Devi dare un nome-mh}
set t(failed_to_make_copy) {Impossibile creare copia locale}
set t(color_scheme) {Schema colore}
set t(#dde3eb) Grigio
set t(PeachPuff2) Albicocca
set t(bisque) Rosa
set t(SlateBlue1) Blu
set t(SteelBlue4) {Blu acciaio}
set t(SkyBlue1) Azzurro
set t(aquamarine2) {Verde chiaro}
set t(SpringGreen4) Verde
set t(patterns_to_use) {Chiave di ricerca}
set t(files) File
set t(directories) Directory
set t(incom_mbox) {Incoming mailbox}
set t(group) Gruppo
set t(create_in_win) {Crea in finestra}
set t(create_by_expr) {Crea per chiave}
set t(use_saved_expr) {Usa chiave salvata}
set t(clear_group) {Cancella selezione di gruppo}
set t(select_all) {Seleziona tutti}
set t(deselect_all) {Deseleziona tutti}
set t(edit_group) {Modifica gruppo}
set t(create_exp) {Crea chiave}
set t(basic_mode) {Modo base}
set t(advanced_mode) {Modo avanzato}
set t(save_as) {Salva come}
set t(fields) Campi
set t(operators) Operatori
set t(booleans) Booleani
set t(grouping) Raggruppamento
set t(sender) Mittente
set t(has) ha
set t(is) è
set t(clear) Cancella
set t(error_underlined) {C'è un errore di sintassi}
set t(syntax_error_exp) {Errore di sintassi nella chiave}
set t(saved_expr) {Chiavi salvate}
set t(need_one_selected_exp) {Devi selezionare una chiave}
set t(here_is_text) {Qui c'è del testo codificato in}
set t(which_cant_be_shown) {che non può essere visualizzato correttamente.}
set t(show_sevenbit) {Mostra caratteri a sette bit}
set t(convert_to_local_nl) {Conversione metodo a-capo locale}
set t(startup_iconic) {Start iconified}
set t(file) File
set t(insert_file) {Inserisci file}
set t(cut) Taglia
set t(cut_all) {Taglia tutto}
set t(copy) Copia
set t(copy_all) {Copia tutto}
set t(paste) Incolla
set t(wrap_paragraph) {Wrap paragraph}
set t(compose_key_wrap) {Wrap paragraph}
set t(run_through_command) {Filtra con comando}
set t(undo) {Annulla modifica}
set t(redo) Ripristina
set t(compose_key_redo) Ripristina
set t(failed_to_open_file) {Non è possibile aprire il file: %.100s}
set t(no_text_selected) {Nessun testo selezionato}
set t(command_failed) {Comando fallito}
set t(command) Comando
set t(command_is_running) {Comando in esecuzione}
set t(folder_key_cycle_header) {Scorri intestazioni visibili}
set t(watcher_enable) {Abilita controllo}
set t(enabled) Abilitato
set t(disabled) Disabilitato
set t(command_list) {Lista comandi}
set t(compose_key_send) Spedisci
set t(compose_key_abort) Anulla
set t(compose_key_editor) {Editor esterno}
set t(compose_key_undo) {Annulla modifica}
set t(compose_key_cut) Taglia
set t(compose_key_cut_all) {Taglia tutto}
set t(compose_key_copy) Copia
set t(compose_key_paste) Incolla
set t(sig_cmd_failed) {RatUP_Signature fallito}
set t(bell_cmd_failed) {RatUP_Bell fallito}
set t(sig_cmd_takes_precedence) {Hai definito una RatUP_Signature che ha precedenza sul file firma!}
set t(more) Altro
set t(compose_sessions) {C'è almeno una finestra composizione aperta}
set t(really_quit) {Esci davvero?}
set t(dont_quit) {Non uscire}
set t(use_from_address) {Usa indirizzo mittente}
set t(messages_shown) {Messaggi visualizzati}
set t(dbase_error) {Error in database! Run the database check in the TkRat menu: '%s'}
set t(dbase_check) {Verifica database}
set t(check_dbase) {Verifica database}
set t(check_fix_dbase) {Verifica e ripara database}
set t(checking_dbase) {Verificando database}
set t(num_malformed) {Numero di entrate danneggiate}
set t(num_nomessages) {Numero di entrate senza messaggi}
set t(num_unlinked) {Numero di messaggi scollegati}
set t(total_size) {Dimensione totale di tutti i messaggi}
set t(waiting_dbase_lock) {Attendendo sul blocco del database}
set t(port) Porta
set t(imapport) Porta
set t(pop3port) Porta
set t(already_exists) {esiste già}
set t(overwrite) Sovrascrivere
set t(file_exists) {Il file esiste già}
set t(type_description) {Descrizione del tipo}
set t(view) Visualizza
set t(view_as_text) {Visualizza come testo semplice}
set t(external_viewer) {Programma esterno}
set t(cant_pipe) {Non è possibile mandare l'input a programmi che usano la finestra terminale}
set t(reread_mailcap) {Rileggi mailcap}
set t(terminal_command) {Comando terminale}
set t(vfolderedit) {Modifica cartella virtuale}
set t(delete_imap) {Cancellare anche la cartella IMAP fisica?}
set t(dont_delete) {Non cancellare}
set t(selected) Selezionato
set t(extract_adr) {Estrai indirizzi}
set t(add_aliases) {Aggiungi alias}
set t(use) Usa
set t(missing_alias_name) {Nome alias mancante. Una entrata non verrà aggiunta.}
set t(alias_chooser) {Selettore alias}
set t(save_outgoing) {Save outgoing}
set t(add) Aggiungi
set t(skip_sig) {Do not include the original signature in replies}
set t(keep_sig) {Includi signature}
set t(sort_subjectonly) {Per soggetto}
set t(sort_sender) {By sender and date}
set t(sort_senderonly) {Per mittente}
set t(sign) Firma
set t(encrypt) Cripta
set t(pgp_pass_phrase) {Frase passaggio PGP}
set t(pgp_problem) {Problema PGP}
set t(retry) Riprova
set t(sig) Sig
set t(signature) Firma
set t(none) Nulla
set t(pgp_part) Parte
set t(pgp_none) Nulla
set t(pgp_unchecked) ?
set t(pgp_good) Ok
set t(pgp_bad) Err.
set t(pgp_output) {Output PGP}
set t(warning_pgp_prog) {ATTENZIONE: Il programma pgp specificato non esiste o non è eseguibile}
set t(pgp_version) {PGP version}
set t(pgp_path) {PGP path}
set t(pgp_extra_args) {Argomenti extra PGP}
set t(pgp_keyring) {PGP keyring}
set t(decoded) Decodificato
set t(send_bug) {Rapporto malfunzione}
set t(bug_shortdesc) {Short (one line) description}
set t(bug_description) {Write a detailed description of what happened below. Be sure to tell what
action of yours caused the error.}
set t(configuration_information) {Descrizione della tua configurazione}
set t(send_bugs_etc) {Prego mandare errori e suggerimenti a maf@tkrat.org}
set t(sign_outgoing) {Contrassegna messaggi}
set t(encrypt_outgoing) {Cripta messaggi}
set t(true) Vero
set t(false) Falso
set t(attach_pgp_keys) {Allega chiavi PGP}
set t(select_keys) {Seleziona chiavi}
set t(bits) Bit
set t(keyid) IDchiave
set t(user_id) {ID utente}
set t(pgp_key) {PGP key}
set t(embedded_pgp_keys) {Qui ci sono una o più chiavi PGP allegate}
set t(add_to_keyring) {Aggiungi al keyring}
set t(press_return_to_dismiss) {Premi invio per chiudere la finestra}
set t(decrypting) Decriptando...
set t(seconds) secondi
set t(days) giorni
set t(url_viewer) {Visualizzatore URL}
set t(userproc) {Procedura utente}
set t(addrbooks) Agende
set t(addrbook) Agenda
set t(use_system_aliases) {Usa alias di sistema}
set t(move_to) {Muovi in}
set t(set_default) {Seleziona default}
set t(need_writable_book) {Bisogna avere almeno un'agenda scrivibile}
set t(book_already_exists) {Esiste già un'agenda con quel nome}
set t(pgp) PGP
set t(find) Ricerca
set t(find_in) {Cerca in}
set t(message_list) {Lista messaggi}
set t(message_body) {Corpo messaggio}
set t(find_next) {Cerca prossimo}
set t(out_of_order) {Non funzionante}
set t(default_to_browse) {Sempre in modo titoli}
set t(browse_mode) {Modo titoli}
set t(show_body) {Mostra corpo}
set t(balloon_help) Aiuto-balloon
set t(subjects) Soggetti
set t(warning) Attenzione
set t(do_not_show_again) {Non mostrare piu questo avviso}
set t(expunge_on_close) {Rimuovi in chiusura}
set t(do) {}
set t(do_not) Non
set t(mailbox_stolen) {Some other process has stolen our lock on a folder}
set t(checkpoint_interval) {Checkpoint interval}
set t(new_folder) {New folder window}
set t(empty) Empty
set t(msglist) Msglist
set t(url) URL
set t(auto) Automatic
set t(bad_charset) {The chosen character set can not properly represent all characters in the message}
set t(converting_dbase) {Converting database... %d%%}
set t(interpret_as) {Intrepret as}
set t(address) Address
set t(method) Method
set t(return_path) {Return path}
set t(test_by) {You can test these settings via the "Show generated headers" entry in the Compose window menus}
set t(tip) Tip
set t(show_generated) {Show generated headers}
set t(generated_header) {Generated address header fields}
set t(update) Update
set t(edit_exp) {Edit expression}
set t(editors) Editors
set t(create_simple) {Create folder (simple)}
set t(create_advanced) {Create folder (advanced)}
set t(options) Options
set t(definitions) Definitions
set t(track_changes) {Track changes}
set t(sort_default) Default
set t(pathname) {Path name}
set t(browse) Browse
set t(select_file) {Select file}
set t(trace_changes) {Trace changes}
set t(subscribed_only) {Subscribed folders only}
set t(auto_select) {AUTO SELECT}
set t(lynx_cmd) {Lynx command}
set t(other_browser_cmd) {Other browser command}
set t(bounce) Bounce
set t(delete_failed) {Mailbox deletion failed}
set t(store_passwd) {Store password on disk}
set t(cache_passwd) {Mantieni password}
set t(cache_timeout) {Timeout cache}
set t(purge_pwcache) {Purge cached passwords}
set t(basic) Basic
set t(replies) Replies
set t(wrap_cited) {Wrap cited text}
set t(for) for
set t(mark_as_unread) {Mark as unread}
set t(folder_key_markunread) {Mark as unread}
set t(defaults) Defaults
set t(setup_netsync) {Set up network sync}
set t(run_command) {Run command}
set t(netsync) {Network sync all}
set t(running_cmd) {Running external program...}
set t(netsync_folder) {Network sync folder}
set t(uidvalidity_changed) {The master folders uidvalidity value has changed. This
means that we are out of sync and that we can not synchronize
any more. But, you can still read the local copy.}
set t(open) Open
set t(save_to_mh) {Cannot save outgoing mail in MH folders}
set t(failed_to_create_file) {Failed to create file %.100s: %.100s}
set t(failed_to_unlink_file) {Failed to unlink file %.100s: %.100s}
set t(failed_to_move_to_file) {Failed to move to file '%.100s': %.100s}
set t(synchronizing) {Synchronizing '%s'}
set t(uploading) {Uploading local changes}
set t(downloading) {Downloading message %d of %d}
set t(downloading_flags) {Downloading flag-changes}
set t(syntax_error) {Syntax error in %.100s at line %d}
set t(too_long_citation) {Too long citation}
set t(illegal_regexp) {Illegal regexp in citation expression:
%.800s}
set t(reply_regexp) {Re: regexp}
set t(re_regexp_error) {Illegal Re: regexp}
set t(do_wrap_cited) {Wrap cited message}
set t(print_setup) {Print setup}
set t(printer) Printer
set t(what_to_print) {What to print}
set t(print_attachments) {Print attachments}
set t(attachment) Attachment
set t(body) Body
set t(destination) Destination
set t(paper_size) {Paper size}
set t(orientation) Orientation
set t(portrait) Portrait
set t(landscape) Landscape
set t(points) Points
set t(pic_res) {Picture resolution}
set t(dpi) DPI
set t(d) D
set t(h) H
set t(unprintable) {Here is a bodypart of type %s which can not be printed}
set t(page) Page
set t(monitored) Monitored
set t(monitor_mbox) {Monitor folder}
set t(watched) Watched
set t(watch_mbox) {Pop up Watcher on new messages}
set t(ridiculously_long) {Encountered ridiculously long address}
set t(recall) Recall
set t(previous) Previous
set t(plain_text) {Plain text}
set t(pretty_ps) {Pretty PostScript}
set t(underline_nonwrap) {Underline non-wrappable}
set t(no_pp_in_print_command) {No %p in print command. This means that the printer selection will not work.}
set t(default_bcc) {Default Bcc}
set t(alias_may_only_contain_chars) {Aliasnames may only contain characters and digits}
set t(reply_bottom) {Write reply below the cited text}
set t(no_wrap) {No line wrapping}
set t(wrap_char) {Wrap at character}
set t(wrap_word) {Wrap at word boundary}
set t(appearance) Appearance
set t(misc) Miscellaneous
set t(html) HTML
set t(watcher_font) {Watcher font}
set t(bold) Bold
set t(italic) Italic
set t(underline) Underline
set t(overstrike) Overstrike
set t(edit_font) {Edit font}
set t(use_one_method) {Use one method to specify font}
set t(family) Family
set t(font) Carattere
set t(font_size) {Font size}
set t(debug_cclient) {Debug connections}
set t(name_occupied) {That name is already occupied}
set t(useinputmethods) {Use Input methods}
set t(check_spelling) {Check spelling}
set t(unknown_word) {Unknown word}
set t(replace_with) {Replace with}
set t(replace) Replace
set t(replace_all) {Replace all}
set t(ignore) Ignore
set t(ignore_all) {Ignore all}
set t(learn) Learn
set t(spell_complete) {Spell-check complete}
set t(spell_cmd) {Spell command}
set t(unsupported_folder_file) {Unsupported format of vfolderdef file. The version encountered is
too new to be parsed by this version of TkRat.}
set t(ssh_path) {SSH command}
set t(ssh_command) {SSH command}
set t(ssh) SSH
set t(go_online) {Go online}
set t(go_offline) {Go offline}
set t(details) Details
set t(imap) IMAP
set t(pop3) POP3
set t(mh) MH
set t(dynamic) Dynamic
set t(dis) Offilne
set t(struct) Menu
set t(apply_changes) {Apply changes}
set t(restore_values) {Restore values}
set t(mail_server) {Mail server}
set t(pop_servers) {POP3 servers}
set t(imap_servers) {IMAP servers}
set t(tcp_default) {TCP connection to the default port}
set t(tcp_custom) {TCP connection to a custom port}
set t(rsh_ssh) {RSH or SSH}
set t(connect) Connect
set t(privacy) Privacy
set t(use_ssl) {Use SSL when connecting}
set t(try_tls) {Try to enable SSL when connected}
set t(no_encryption) {Do not try to use encryption at all}
set t(ssl_check_cert) {Verify server certificate (if using SSL)}
set t(flags) Flags
set t(a_mailserver_named) {A mailserver named}
set t(new_imap_server) {New IMAP server}
set t(new_mailbox) {New mailbox}
set t(need_mail_server) {You must specify which mail server to use}
set t(action_on_create) {Action to take when server is created}
set t(action_imap) {Import mailboxes from this server}
set t(reimport_when) {Reimport when}
set t(reimport_manually) Manually
set t(reimport_session) {Once every session}
set t(reimport_now) {Reimport now}
set t(import_on_create) {Automatically import on create}
set t(mailserver_used) {This mail server is used by the following folders and can therefore not be deleted}
set t(item_not_empty) {This item contains other mailboxes, are you sure you want to delete them, too?}
set t(delete_what_folder) {Do you want to delete the actual mailboxes on disk or on the remote server as well, or just the mailbox definitions in TkRat?}
set t(delete_both) {Delete both}
set t(only_in_tkrat) {Only in TkRat}
set t(reimport_all) {Reimport all folders}
set t(som_last) {Last mode}
set t(som_online) Online
set t(som_offline) Offline
set t(network) Network
set t(imap_secure) {Do not send password unencrypted}
set t(create_mailbox_on_server) {Create mailbox on server}
set t(mailbox_create_failed) {Failed to create the folder. Do you want to continue and create the folder in TkRat anyway? The error message was: }
set t(system_default_charset) {System default}
set t(roles) Roles
set t(graphics) Graphics
set t(www) WWW
set t(advanced) Advanced
set t(behaviour) Behavior
set t(caching) Caching
set t(fonts) Fonts
set t(hide) Hide
set t(default) Default
set t(role_name) {Role name}
set t(roles_expl) {The Roles feature is a way to have different 'personalities.' You can present a different address for each role and also use different methods for sending email.}
set t(create_new_role) {Create new role}
set t(new_role) {New role}
set t(set_as_default) {Set as default}
set t(role) Role
set t(cant_delete_role_used) {You can not delete this role since it is referenced from the following folders}
set t(need_host_and_user) {You must specify both a hostname and an username}
set t(html_proxy_host) {Proxy server}
set t(html_proxy_port) {Proxy port}
set t(html_timeout) {HTTP Timeout}
set t(characters) Characters
set t(invalid_font) {Invalid font name specified}
set t(pgp_keyid) {PGP keyid}
set t(are_you_sure) {Are you sure you want to quit?}
set t(folder_key_online) {Toggle online}
set t(no_send_bad_host) {TkRat does not know the fully qualified name your mail should be sent from!
This name can be provided in two places in the Preferences window. If you give
a fully qualified "From" address in your role definition, then that will be
used. Otherwise, it will use the value of the "Domain" option in
Options->Advanced->Network, and if that one is blank, TkRat will use the
current hostname. You will not be able to send any messages until you fix this
(unless you enable the override).}
set t(masq_from_conflict) {In role "%s": The value of option masquerade_as "%s" was incompatible with the domain specified in From: "%s". Masquerade_as is now obsolete so the latter will be used.}
set t(are_you_sure_delete_role) {Are you sure you want to delete this role?}
set t(adr_syntax_error) {You cannot send while you have syntax errors in the following fields}
set t(normally_ok) {Do not enter anything here if you are unsure}
set t(unqual_adr_domain) {Domain to add to unqualified addresses}
set t(smtp_from_long) {Host to present us as in SMTP}
set t(changes_title) {Cambiamenti dall'ultima volta che hai usato TkRat}
set t(outgoing) Outgoing
set t(specials) Specials
set t(is_hold_folder) {This is a special folder used to keep messages
which are held during composing}
set t(is_outgoing_folder) {This is a special folder used to keep messages
which are meant to be sent when possible}
set t(launching_send_cmd) {Launching send command...}
set t(prog_send_failed) {Send command failed}
set t(writing_message) {Writing message...}
set t(waiting_on_send_cmd) {Waiting on send command...}
set t(sent_ok) {Message send succeeded}
set t(opening_smtp_conn) {Connecting to SMTP server}
set t(send_failed) {Failed to send message. Reason:}
set t(increase_font_size) {Increase font size}
set t(decrease_font_size) {Decrease font size}
set t(show_url_in) {Show URL in}
set t(reuse_old_window) {Existing window}
set t(new_window) {New window}
set t(new_tab) {New tab}
set t(do_not_show_window_in_future) {Do not show this window in the future}
set t(same_sending_prefs) {Use same send settings for all roles}
set t(send_settings_differs) {Send settings differs}
set t(roles_use_other_send_settings) {Some roles uses different send settings. They will be overwritten with the current settings if you continue.}
set t(smtp_user) {SMTP user}
set t(smtp_passwd) Password
set t(new_folder_wizard) {New Folder Wizard}
set t(select_type_of_folder) {Select the type of folder to create}
set t(next) Next
set t(fw_file) {File folder}
set t(fw_imap) IMAP
set t(fw_dbase) Database
set t(fw_mh) MH
set t(fw_pop) {POP3 (limited support)}
set t(fw_dynamic) {A directory of file folders, one per sender}
set t(define_file_folder) {Define file folder}
set t(why_filefolder) {Each file folder needs a name which is used in TkRat menus etc. You must also specify the file where the messages will be stored. If you specify a directory then TkRat will create folder entries for all files under that directory, it will also descend into subdirectories.}
set t(finish) Finish
set t(define_imap_folder) {Define IMAP folder(s)}
set t(imap_step1) {Select if you want to reuse an already define IMAP server or if you want to define a new one. Reusing an old one will not affect folders already defined at it.}
set t(reuse_imap) {Reuse old IMAP server}
set t(define_new) {Define new}
set t(imap_def) {Define how to reach the IMAP-server and which username to use.}
set t(why_imap_folder) {Each IMAP folder needs a name which is used in TkRat menus etc. You must also specify where on the IMAP-server the folder will exist, or where the import of folders will start.}
set t(path) Path
set t(mailbox_does_not_exist) {The mailbox you specified does not exist.}
set t(maybe_create_mailbox) {The mailbox you specified does not exist. It may either just not be created yet or you have given the wrong path.}
set t(go_back) {Go back}
set t(imap_test_import) {If you specify a directory as 'Path' (or left it empty) then TkRat will recursively load all folders found under it. Sometimes it is tricky to figure out the correct value of 'Path'. The 'Test import' function lists what will be found on the top level when the import is done but does not descend into subdirectories.}
set t(test_import) {Test import}
set t(define_imap_import) {Define IMAP import}
set t(basic_op) {What do you want to do?}
set t(create_single_file_exists) {You specified that you wanted to create a new folder but the file you selected already exists}
set t(use_anyway) {Use anyway}
set t(importing) Importing
set t(currently_importing) {TkRat is currently importing your folders. This may take some time if there are lots of folders to import. Unfortunately it is not possible to abort this operation.}
set t(found) Found
set t(last) Last
set t(cant_close_while_wizards) {You cannot close the folder definition window while you have any Folder Wizards active.}
set t(define_mh_folder) {Define MH folder}
set t(why_mhfolder) {Each mh folder needs a name which is used in TkRat menus etc. You must also specify the path to the MH-folder. This path is from the root of your MH-directory, for example "inbox" is usually enough for your MH-inbox. If the path you give points to a directory then all folders in that directory will be imported.}
set t(mh_test_import) {The import will recursively load all folders found at the specified path. Sometimes it is tricky to figure out the correct value of 'Path'. The 'Test import' function lists what will be found on the-level when the import is done.}
set t(define_dbase_folder) {Define database folder}
set t(why_dbase_folder) {The database is a collection of messages in which you can search. You can search on senders/recipients and subjects etc. Each message may also have one or more keywords associated with them as well as an expiration date and action. When you put a message in a database folder it gets the defined keywords and expiration data. When you open a database folder it does a search on the specified keywords.}
set t(why_pop) {Each folder needs a name which is used in TkRat menus etc. You must also define how to reach the POP3-server.}
set t(define_dynamic_folder) {Define dynamic folder}
set t(why_dynamic_folder) {A dynamic folder is a directory which contains a number of folders. When you insert a message it gets stored in a folder bearing the name of the primary recipient. You do not open a dynamic folder directly, instead you open one of the contained folders.

All folders need a name which is used in TkRat and dynamic folders also need the path to the directory.}
set t(create_but_not_empty) {You are creating a new folder but the directory you specified is not empty. Please select an empty or new directory.}
set t(first_use_wizard) {First Use Wizard}
set t(identity) Identity
set t(firstuse_info) {This wizard will help you do the basic configurations which must be done before you can start to use TkRat.}
set t(why_identity) {The first step is to specify your identity. This information will be included as the originator in messages you send.}
set t(email_address) {Email address}
set t(why_sending) {TkRat can send messages either by talking to an SMTP-server or by piping it to a command. Here you get to configure which.}
set t(use_mail_server) {SMTP (Outgoing mail server)}
set t(use_prog) {Pipe to local program (sendmail compatible)}
set t(why_inbox) {You must now specify where you want to read your mail from. You can specify additional mailboxes and many more details in the "New/Edit folder" window.}
set t(advanced_imap_conf) {Advanced IMAP configuration}
set t(advanced_pop_conf) {Advanced POP3 configuration}
set t(done) Done
set t(import_info) {Import information}
set t(import_info_text) {TkRat is able to read your old folders. But before you can do that you must "import" them. This can be done by going to Admin->New/Edit folder... and then start the "New Folder Wizard".}
set t(inbox) Inbox
set t(actions) Actions
set t(no_such_mailbox) {There is no such mailbox}
set t(continue_composing) {Continue composing}
set t(folder_key_mvdb) {Move to database}
set t(clear_selection) {Clear selection}
set t(using) Using
set t(wiz_next) Next
set t(wiz_previous) Previous
set t(wiz_cancel) Annulla
set t(wiz_finish) Finish
set t(wiz_import) Importa
set t(save_outgoing_failed_title) {Save outgoing failed}
set t(recipients) Recipients
set t(save_outgoing_failed) {The message has been sent but there was an error when trying to save a local copy. You can try to save it to another folder or choose to not save a copy.}
set t(secring) {Secret keyring}
set t(pubring) {Public keyring}
set t(sign_as) {Sign as}
set t(no_signing_key_selected) {No signing key selected}
set t(addressbook) {Address book}
set t(reread_addresses) {Reread all address sources}
set t(import_addresses) {Import addresses}
set t(pgp_actions) {PGP actions}
set t(sign_encrypt) {Sign & Encrypt}
set t(check_on_finish) {TkRat will connect to the mail-server and verify the existence of the folder once you press finish.}
set t(failed_to_open_mailbox) {Failed to open mailbox}
set t(pgp_details) {PGP details}
set t(my_key) {My key}
set t(key) Key
set t(all_addresses) {All address fields}
set t(complete_msg_text) {Complete text}
set t(operation) Operation
set t(op_and) {All lines below must match}
set t(op_or) {One matching line is enough}
set t(line_expl) {It is enough that one word per line matches}
set t(time_interval) {Time interval}
set t(all_times) {All times}
set t(specified_times) {Specified interval}
set t(all_addr_detail) {To, Cc & From}
set t(slow) Slow
set t(illegal_from_date) {Illegal from-date}
set t(illegal_to_date) {Illegal to-date}
set t(forward_separately) {Forward separately}
set t(forward_in_one) {Forward in one message}
set t(bounce_messages) {Bounce messages}
set t(forwarded_messages) {Forwarded messages}
set t(forwarded_msg_goes_here) {Forwarded message goes here}
set t(bounce_name) {Bounce message}
set t(sync_failed_disk_full) {Synchronization failed since disk is full}
set t(avoid_html) {Avoid html in body}
set t(spell_checking) {Spell checking}
set t(dictionary) Dictionary
set t(auto_dicts) {Auto Dictionaries}
set t(gray85) {Completely gray}
set t(duplicate_alias) {An alias with that name already exists}
set t(mark_misspellings) {Mark misspellings}
set t(filter) Filter
set t(failed_to_execute_spell) {Failed to launch spell checking command}
set t(no_dictionaries) {Did not find any dictionaries}
set t(drafts) Drafts
set t(postpone) Postpone
set t(compose_backup) {Backup interval}
set t(find_prev) {Find previous}
set t(match_case) {Match case}
set t(n_folder_windows) {You have %d folder windows open}
set t(quit_anyway) {Quit anyway}
set t(store_snapshot) {Store snapshot}
set t(mark_all) {Mark all}
set t(clear_all) {Clear all}
set t(reread) Reread
set t(failed_save_sent) {Failed to save a sent message: %s}
set t(compose_last_chance) {Keep backup}
set t(define_pop_folder) {Define POP folder}
set t(show_addr_history) {Show address history}
set t(no_spell) {Sorry, did not find Aspell or Ispell 3.1.xx (or later). Turning off automatic spell-checking.}
set t(mark_as_read) {Mark as read}
set t(mark_as_answered) {Mark as answered}
set t(mark_as_unanswered) {Mark as unanswered}
set t(prop_font_family) {Proportional font}
set t(fixed_font_family) {Fixed font}
set t(html_show_images) {Load external images}
set t(html_min_image_size) {Minimum image size}
set t(cmd) Cmd
set t(html_messages) {HTML messages}
set t(composing) Composing
set t(paths) Paths
set t(new_messages) {New messages}
set t(start_mode) {Start online mode}
set t(list_format) {Message list format}
set t(open_in) {Open in}
set t(always_use_external_editor) {Always use external editor}
set t(watcher_intervals) {Check intervall}
set t(sending_mail_from) {Sending MAIL FROM <%s>}
set t(sending_rcpt) {Sending RCPT TO <%s>}
set t(sending_data) {Sending data}
set t(ms) ms
set t(date_format) {Date format}
set t(no_tnef_found) {This bodypart could be decoded if the 'tnef' program was installed.}
set t(tnef_path) {tnef command}
set t(deleted_attachment) {This attachment has been deleted}
set t(delete_attachments) {Delete attachments}
set t(delete_attachments_expl) {Creates a copy of the current message. The copy will be placed in the same folder and will have the selected attachments deleted.}
set t(attachments_to_delete) {Attachments to delete}
set t(really_expire_title) {Really exipre database?}
set t(really_expire) {It has been over a year since the database was expired. Continue with expiration?}
set t(sync_folder) {Synchronize offline folder}
set t(enable_offline) {Enable offline-mode}
set t(imap_offline) {TkRat can store a local copy of each IMAP folder. This makes it possible to access them also when there is no network connection to the IMAP server. This is called Offline' mode.}
set t(edit_address) {Edit address}
set t(no_subject) {No subject}
set t(message_deleted) {The message had already been deleted}
set t(messages_deleted) {Some messages had already been deleted}
set t(could_not_find_adr) {Could not find any new addresses to extract}
set t(dbase_same_subject) {Database: same subject}
set t(dbase_to_from_sender) {Database: to/from sender}
set t(illegal_list_format) {Illegal character '%%%c' in list format}
set t(sync_offline_folders) {Synchronize offline folders}
set t(always_eeditor_but_none) {You have "Always use external editor" enabled but have not defined any external editors.}
set t(pgp_err) Failed
set t(pgp_abort) Aborted
set t(bad_mailto_url) {Bad mailto url}
set t(info) Information
set t(earliest_date) {Earliest date}
set t(latest_date) {Latest date}
set t(keyword) Keyword
set t(usage_count) {Usage count}
set t(total_num_messages) {Total number of messages}
set t(dbinfo) {Database info}
set t(dbinfo_info_msg) {Message database info}
set t(dbinfo_info_folder) {Values comes from folder and not from selected messages}
set t(dbinfo_info_first_msg) {Values comes from the first message}
set t(flag_same_subject) {Flag messages with same subject}
set t(exdate_expl) {+n means to expire 'n' days after insert/modify}
set t(date_parsing_failed) {Failed to parse time}
}
#
# DO NOT EDIT!
# This file is automatically generated from files in the Text/ subdirectory
##############################################################################