This file is indexed.

/usr/share/tkrat2.2/text_t_en.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_en {} {
global t
set t(tkrat) TkRat
set t(version) Version
set t(about) About
set t(quit) Quit
set t(name) Name
set t(size) Size
set t(messages) Messages
set t(help) Help
set t(ok) OK
set t(cancel) Cancel
set t(ratatosk) {Ratatosk (swift-tusked). In Norse mythology, the squirrel that runs up and down the cosmic or world tree, Yggdrasil, carrying abusive language from the dragon Nidhog at the bottom of the tree to the eagle at the top, and vice versa.}
set t(months) {Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec}
set t(move) Move
set t(delete) Delete
set t(undelete) Undelete
set t(compose) Compose
set t(reply_sender) {Reply to sender}
set t(reply_all) {Reply to all}
set t(here_is) {Here is an object of type}
set t(show_all) {Show all}
set t(old_dirs) {Previously used}
set t(save_to_file) {Save to file}
set t(save_failed) {Save failed}
set t(message) Message
set t(print) Print
set t(folder_key_print) Print
set t(show_all_headers) {Show all headers}
set t(show_selected_headers) {Show selected headers}
set t(show_no_headers) {Show no headers}
set t(compose_name) {Compose message}
set t(edit) Edit
set t(edit_body) {Message body}
set t(edit_headers) {Message headers}
set t(read_from_file) {Read body from file}
set t(abort) Abort
set t(headers) Headers
set t(attachments) Attachments
set t(attach_file) {Attach file}
set t(attach_special) {Attach special}
set t(detach) Detach
set t(send) Send
set t(send_save) {Send & Save}
set t(external_editor) {External editor}
set t(running_ext_editor) {Running external editor...}
set t(filename) Filename
set t(description) Description
set t(id) Identifier
set t(type) Type
set t(subtype) Subtype
set t(encoding) Encoding
set t(current_encoding) {Current encoding}
set t(other) other
set t(custom_type) {Custom type}
set t(need_to) {You must specify at least one recipient (To:, Cc:, Bcc:)}
set t(admin) Admin
set t(newedit_folder) {New/Edit folder}
set t(update_folder) {Update folder}
set t(continue) Continue
set t(open_file) {Open file}
set t(open_dbase) {Search database}
set t(folders) Folders
set t(and) And
set t(or) Or
set t(not) Not
set t(to) To
set t(subject) Subject
set t(keywords) Keywords
set t(all) All
set t(search) Search
set t(emptyexp) {Empty search expression}
set t(to_file) {To file}
set t(to_dbase) {To database}
set t(insert_into_dbase) {Insert into database}
set t(exdate) {Expiration date}
set t(extype) {Expiration action}
set t(remove) Remove
set t(incoming) {Insert into Incoming}
set t(backup) {Move to backup}
set t(insert) Insert
set t(already_vfolderdef) {There is already one folder edit window}
set t(vfolderdef) {Define virtual folder}
set t(window) Window
set t(close) Close
set t(folder) Folder
set t(new_file) {New file folder}
set t(new_mh) {New mh folder}
set t(new_dbase) {New database folder}
set t(new_imap) {New IMAP folder}
set t(new_pop3) {New POP3 folder}
set t(new_dynamic) {New dynamic folder}
set t(new_vfolder) {New vfolder}
set t(need_name) {You must specify a name}
set t(new_submenu) {New submenu}
set t(folder_name) {Folder name}
set t(create) Create
set t(dont_create) {Do not create}
set t(failed_create) {Failed to create the directory}
set t(do_without_dir) {I will try to do without it, but be advised that some operations may fail.}
set t(error_in_userproc) {There was an error in the userproc file}
set t(translate_error) {RatUP_Translate generated illegal output for the following input: %.100s}
set t(reread_userproc) {Reread userproc}
set t(preferences) Preferences
set t(watcher) Watcher
set t(folderwindow) {Folder window}
set t(general) General
set t(sending) Sending
set t(under_construction) {Area under construction}
set t(language) Language
set t(show_changes) {Changes messages}
set t(show) Show
set t(dont_show) {Do not show}
set t(dbase_dir) {Database directory}
set t(apply) Apply
set t(reset) Reset
set t(unapplied_changes_title) {Unapplied changes}
set t(unapplied_changes) {You have made changes which are not applied. What do you want to do with them?}
set t(discard) Discard
set t(print_command) {Print command}
set t(tmp_dir) {Temporary directory}
set t(window_geometry) {Window placement}
set t(default_folder) {Default folder}
set t(show_header_selection) {Selected headers}
set t(show_headers) {Show headers}
set t(sort_order) {Sort order}
set t(sort_folder) {Natural order}
set t(sort_reverseFolder) {Reverse natural order}
set t(sort_date) {By date}
set t(sort_reverseDate) {By reverse date}
set t(sort_size) {By size}
set t(sort_reverseSize) {By reverse size}
set t(stdfolders) {Standard folders}
set t(dbase_folders) {Database folders}
set t(width) Width
set t(lines) lines
set t(bell_ringings) {Bell rings}
set t(show_messages) {Show messages}
set t(new) New
set t(signature_file) {Signature file}
set t(domain) Domain
set t(smtp_hosts) {SMTP host}
set t(charset) {Character set}
set t(attribution) Attribution
set t(alias) Alias
set t(fullname) {Full name}
set t(content) Content
set t(need_alias_and_content) {I need both an aliasname and content}
set t(dismiss) Dismiss
set t(save) Save
set t(save_out) {Save outgoing}
set t(save_to) {Save to}
set t(newfolder) {New folder}
set t(dont_save) {Do not save}
set t(found_aliases) {I scanned your old files and found a total of}
set t(num_aliases) aliases
set t(see_log) {See old log messages}
set t(seelog_title) {Old messages}
set t(does_not_exist) {does not exist}
set t(no_folder) {No open folder}
set t(already_login) {There is another login process running. Complete that one first.}
set t(login) Login
set t(opening) Opening
set t(mailbox_on) {mailbox on}
set t(host) Host
set t(user) User
set t(passwd) Password
set t(mbox) {Mailbox path}
set t(reply_to_which) {This message contains embedded messages.
Choose which message you want to reply to.}
set t(forward_which) {This message contains embedded messages.
Choose which message you want to forward.}
set t(forwarded_message) {Forwarded message}
set t(forward_as_attachment) {Forward as attachment}
set t(forward_inline) {Forward inline}
set t(empty_message) {Empty message}
set t(structure) Structure
set t(view_source) {View source}
set t(source) Source
set t(help_window) {Help window}
set t(site) Site
set t(access-type) {Access type}
set t(directory) Directory
set t(server) Server
set t(smtp) SMTP
set t(user_program) {User-defined program}
set t(sendprot) {Send via}
set t(sendprog) {Sending program}
set t(sendprog_8bit) {Sending program can handle 8-bit data}
set t(sort_subject) {Subject by date}
set t(sort_threaded) Threaded
set t(import) Import
set t(import_directory) {Import directory}
set t(cant_read) {Cannot read}
set t(ignored_not_file_not_dir) {is ignored, it is neither a file nor a directory}
set t(bounce_which) {This message contains embedded messages.
Choose which message you want to bounce.}
set t(dbase) Dbase
set t(dbase_backup) {Backup directory}
set t(do_expire) {Expiring database}
set t(expire) Expire
set t(expire_result) {Expiration results}
set t(scanned) Scanned
set t(deleted) Deleted
set t(backedup) {Moved to backup}
set t(moved_to_inbox) {Moved to INBOX}
set t(db_expire) {Expiring database}
set t(packing_backup) {Compressing backup files}
set t(start_selection) {Select when open}
set t(first_message) {First message in folder}
set t(last_message) {Last message in folder}
set t(first_new_message) {First unread message in folder}
set t(before_first_new_message) {The message before the first unread}
set t(see_more_of_message) {See more of returned message}
set t(extra) Extra
set t(cc) Cc
set t(bcc) Bcc
set t(content_description) Content-Description
set t(reply_to) Reply-To
set t(reply-to) Reply-To
set t(comments) Comments
set t(comment) Comment
set t(from) From
set t(date) Date
set t(received) Received
set t(message-id) Message-Id
set t(mime-version) MIME-Version
set t(content-type) Content-Type
set t(auto-submitted) Auto-Submitted
set t(default_reply_to) {Default Reply-To}
set t(character_size) {Character size}
set t(need_restart) {You need to restart TkRat for your changes to take full effect}
set t(opening_folder) {Opening folder}
set t(read) Read
set t(write) Write
set t(exec) Exec
set t(perm_user) User
set t(perm_group) Group
set t(perm_other) Other
set t(mode) Mode
set t(all_read) {All read}
set t(all_read_write) {All read & write}
set t(max_height) {Max height}
set t(insert_failed) {Failed to insert message}
set t(define_keys) {Define keys}
set t(folder_key_find) Find
set t(folder_key_compose) Compose
set t(folder_key_close) Close
set t(folder_key_openfile) Open
set t(folder_key_quit) Quit
set t(folder_key_nextu) {Next unread}
set t(folder_key_sync) Synchronize
set t(folder_key_netsync) {Network sync}
set t(folder_key_update) Update
set t(folder_key_delete) Delete
set t(folder_key_undelete) Undelete
set t(folder_key_flag) {Flag message}
set t(folder_key_next) Next
set t(folder_key_prev) Previous
set t(folder_key_home) {Top of message}
set t(folder_key_bottom) {End of message}
set t(folder_key_pagedown) {Page down}
set t(folder_key_pageup) {Page up}
set t(folder_key_linedown) {Line down}
set t(folder_key_lineup) {Line up}
set t(folder_key_replya) {Reply to all}
set t(folder_key_replys) {Reply to sender}
set t(folder_key_forward_a) {Forward as attachment}
set t(folder_key_forward_i) {Forward inline}
set t(folder_key_bounce) {Bounce message}
set t(add_key) Add
set t(press_key) {Press the new key}
set t(key_defined) {This key is already bound to}
set t(replace_key) {Replace with new binding}
set t(do_delete) {Press the binding to delete}
set t(nothing) Nothing
set t(take_mail) {Take mail from Netscape}
set t(import_IMAP) {IMAP folders}
set t(import_DIS) {Disconected folders}
set t(pattern) Pattern
set t(host_required) {You must specify a host}
set t(import_failed) {Import failed}
set t(warning_sendprog) {WARNING: The specified sending program does not exist or is not executable}
set t(automatic_wrap) {Automatic line wrap}
set t(need_keyword) {You must specify at least one keyword}
set t(opening_connection) {Opening connection...}
set t(wait_greeting) {Waiting for greeting...}
set t(get_capabilities) {Getting capabilities...}
set t(send_envelope) {Sending envelope information...}
set t(send_from) {Sending From address...}
set t(send_rcpt) {Sending recipient %.100s...}
set t(send_data) {Sending data...}
set t(wait_ack) {Waiting for acknowledgement...}
set t(closing) {Closing channel...}
set t(sending_message) {Sending message...}
set t(upgrade_dbase) {Upgrade database}
set t(old_dbase) {You have an old version of the database. I must convert it to be able to use it.}
set t(unlinked_messages) {Unlinked messages}
set t(unl_m1) {There were}
set t(unl_m2) {messages sans index in the database. They can be found in the UnlinkedMessages folder (which is a file folder with ~/UnlinkedMessages as the file).}
set t(send_deferred) {Send deferred messages}
set t(delivery_mode) {Delivery mode}
set t(sending_deferred) {Sending deferred messages}
set t(to_send) {To send}
set t(sent) Sent
set t(no) No
set t(waiting_on_sender) {Waiting on sender process (it is sending)...}
set t(illegal_file_spec) {Illegal file specified}
set t(mh_name) {MH name}
set t(need_mh_name) {You must give a mh name}
set t(failed_to_make_copy) {Failed to make a local copy}
set t(color_scheme) {Color scheme}
set t(#dde3eb) Gray
set t(PeachPuff2) Peach
set t(bisque) Bisque
set t(SlateBlue1) Blue
set t(SteelBlue4) {Steel Blue}
set t(SkyBlue1) {Light blue}
set t(aquamarine2) {Light green}
set t(SpringGreen4) Green
set t(patterns_to_use) {Patterns to match found objects against}
set t(files) Files
set t(directories) Directories
set t(incom_mbox) {Incoming mailbox}
set t(group) Group
set t(create_in_win) {Create in window}
set t(create_by_expr) {Create by expression}
set t(use_saved_expr) {Use saved expression}
set t(clear_group) {Clear group marking}
set t(select_all) {Select all}
set t(deselect_all) {Deselect all}
set t(edit_group) {Edit group}
set t(create_exp) {Create expression}
set t(basic_mode) {Basic mode}
set t(advanced_mode) {Advanced mode}
set t(save_as) {Save as}
set t(fields) Fields
set t(operators) Operators
set t(booleans) Booleans
set t(grouping) Grouping
set t(sender) Sender
set t(has) Has
set t(is) Is
set t(clear) Clear
set t(error_underlined) {There is a syntax error at the underlined word}
set t(syntax_error_exp) {Syntax error in expression}
set t(saved_expr) {Saved expressions}
set t(need_one_selected_exp) {You must select one expression}
set t(here_is_text) {Here is text encoded in}
set t(which_cant_be_shown) {which can't be shown correctly}
set t(show_sevenbit) {Show seven-bit characters}
set t(convert_to_local_nl) {Convert to local newline conventions}
set t(startup_iconic) {Start iconified}
set t(file) File
set t(insert_file) {Insert file}
set t(cut) Cut
set t(cut_all) {Cut all}
set t(copy) Copy
set t(copy_all) {Copy all}
set t(paste) Paste
set t(wrap_paragraph) {Wrap paragraph}
set t(compose_key_wrap) {Wrap paragraph}
set t(run_through_command) {Run through command}
set t(undo) Undo
set t(redo) Redo
set t(compose_key_redo) Redo
set t(failed_to_open_file) {Failed to open file: %.100s}
set t(no_text_selected) {No text selected}
set t(command_failed) {Command failed}
set t(command) Command
set t(command_is_running) {Command is running}
set t(folder_key_cycle_header) {Cycle shown headers}
set t(watcher_enable) {Watcher enable}
set t(enabled) Enabled
set t(disabled) Disabled
set t(command_list) {Command list}
set t(compose_key_send) Send
set t(compose_key_abort) Abort
set t(compose_key_editor) {External editor}
set t(compose_key_undo) Undo
set t(compose_key_cut) Cut
set t(compose_key_cut_all) {Cut all}
set t(compose_key_copy) Copy
set t(compose_key_paste) Paste
set t(sig_cmd_failed) {RatUP_Signature failed}
set t(bell_cmd_failed) {RatUP_Bell failed}
set t(sig_cmd_takes_precedence) {You have defined a RatUP_Signature which takes precedence over the signature file!}
set t(more) More
set t(compose_sessions) {You still have at least one Compose window active}
set t(really_quit) {Really quit?}
set t(dont_quit) {Do not quit}
set t(use_from_address) {Use From address}
set t(messages_shown) {Messages shown}
set t(dbase_error) {Error in database! Run the database check in the TkRat menu: '%s'}
set t(dbase_check) {Database check}
set t(check_dbase) {Check database}
set t(check_fix_dbase) {Check & fix database}
set t(checking_dbase) {Checking database}
set t(num_malformed) {Number of malformed entries}
set t(num_nomessages) {Number of entries without messages}
set t(num_unlinked) {Number of unlinked messages}
set t(total_size) {Total size of all messages}
set t(waiting_dbase_lock) {Waiting on database lock}
set t(port) Port
set t(imapport) Port
set t(pop3port) Port
set t(already_exists) {already exists}
set t(overwrite) Overwrite
set t(file_exists) {File exists}
set t(type_description) {Type description}
set t(view) View
set t(view_as_text) {View as plain text}
set t(external_viewer) {External viewer}
set t(cant_pipe) {I cannot pipe input into programs that use the terminal window}
set t(reread_mailcap) {Reread mailcap}
set t(terminal_command) {Terminal command}
set t(vfolderedit) {Edit virtual folder}
set t(delete_imap) {Delete the actual IMAP folder as well?}
set t(dont_delete) {Do not delete}
set t(selected) Selected
set t(extract_adr) {Extract addresses}
set t(add_aliases) {Add aliases}
set t(use) Use
set t(missing_alias_name) {Missing alias name. One entry will not be added.}
set t(alias_chooser) {Alias chooser}
set t(save_outgoing) {Save outgoing}
set t(add) Add
set t(skip_sig) {Do not include the original signature in replies}
set t(keep_sig) {Include the signature}
set t(sort_subjectonly) {By subject}
set t(sort_sender) {By sender and date}
set t(sort_senderonly) {By sender}
set t(sign) Sign
set t(encrypt) Encrypt
set t(pgp_pass_phrase) {PGP pass phrase}
set t(pgp_problem) {PGP problem}
set t(retry) Retry
set t(sig) Sig
set t(signature) Signature
set t(none) None
set t(pgp_part) Part
set t(pgp_none) None
set t(pgp_unchecked) ?
set t(pgp_good) OK
set t(pgp_bad) Bad
set t(pgp_output) {PGP output}
set t(warning_pgp_prog) {WARNING: The specified PGP program does not exist or is not executable}
set t(pgp_version) {PGP version}
set t(pgp_path) {PGP path}
set t(pgp_extra_args) {PGP extra arguments}
set t(pgp_keyring) {PGP keyring}
set t(decoded) Decoded
set t(send_bug) {Send bug report}
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) {Description of your configuration}
set t(send_bugs_etc) {Please send bug reports and suggestions for improvements to maf@tkrat.org}
set t(sign_outgoing) {Sign messages}
set t(encrypt_outgoing) {Encrypt messages}
set t(true) True
set t(false) False
set t(attach_pgp_keys) {Attach PGP keys}
set t(select_keys) {Select keys}
set t(bits) Bits
set t(keyid) KeyID
set t(user_id) {User ID}
set t(pgp_key) {PGP key}
set t(embedded_pgp_keys) {Here are one or more PGP keys attached}
set t(add_to_keyring) {Add to keyring}
set t(press_return_to_dismiss) {Press Return to dismiss window}
set t(decrypting) Decrypting...
set t(seconds) seconds
set t(days) days
set t(url_viewer) {URL viewer}
set t(userproc) Userproc
set t(addrbooks) {Address books}
set t(addrbook) {Address book}
set t(use_system_aliases) {Use system aliases}
set t(move_to) {Move to}
set t(set_default) {Set default}
set t(need_writable_book) {You must leave at least one writable address book}
set t(book_already_exists) {There already exists an address book with that name}
set t(pgp) PGP
set t(find) Find
set t(find_in) {Find in}
set t(message_list) {Message list}
set t(message_body) {Message body}
set t(find_next) {Find next}
set t(out_of_order) {Out of order}
set t(default_to_browse) {Default to Browse mode}
set t(browse_mode) {Browse mode}
set t(show_body) {Show body}
set t(balloon_help) {Balloon help}
set t(subjects) Subjects
set t(warning) Warning
set t(do_not_show_again) {Do not show this warning again}
set t(expunge_on_close) {Expunge on close}
set t(do) Do
set t(do_not) {Do not}
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) {Cache passwords}
set t(cache_timeout) {Cache timeout}
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) Font
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) {Changes since you last used 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) Cancel
set t(wiz_finish) Finish
set t(wiz_import) Import
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
##############################################################################