-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
en.txt
1440 lines (1411 loc) · 71.1 KB
/
en.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== PeaZip language file ===
English
10.1
Translated by: Giorgio Tani
Last rev. by: Giorgio Tani
Last rev.: 20241105
=== PeaZip text group ===
txt_10_1_full: Full
txt_10_1_kdfw: KDF work load
txt_10_1_under: Underlined
txt_10_0_exptrash: Explore Trash
txt_10_0_ptarzst: Fastest compression, TAR.ZST
txt_10_0_ptarxz: High compression, TAR.XZ
txt_10_0_ptargz: Medium compression, TAR.GZ
txt_10_0_comp: Pure compression formats only accept a single file as input. Archive conversion towards those formats will fail if the source contains multiple files or folders, which cannot be determined in advance.
txt_10_0_save: Save
txt_10_0_tp: Text preview
txt_9_9_uac: Current user cannot write to this output path. Do you want to run PeaZip with UAC elevation?
txt_9_9_kdf: KDF rounds
txt_9_9_utc: Show timestamps as UTC
txt_9_8_alwaysflat: Always open archives in flat view
txt_9_8_fnew: Extract here (in new folder)
txt_9_8_fsmart: Extract here (smart new folder)
txt_9_7_tarpipe: 7z / p7zip use pipe
txt_9_7_smartsorting: Smart file name sorting
txt_9_6_centered: Centered
txt_9_6_cside: Compact side bar
txt_9_6_loadpconfirm: Do you want to load this profile? All the data of current profile will be overwritten, including saved scripts and Password Manager.
txt_9_6_loadp: Load profile
txt_9_6_saveppw: OPTIONAL: protect this profile with password / keyfile?
txt_9_6_savepoverwrite: Overwrite existing profile? All the data of the existing profile will be overwritten, including saved scripts and Password Manager.
txt_9_6_savep: Save profile
txt_9_6_scside: Show Compact side bar
txt_9_5_all: All
txt_9_5_precond: Pre-parse if errors are detected
txt_9_5_largea: Pre-parse large archives
txt_9_5_mediuma: Pre-parse medium archives
txt_9_5_smalla: Pre-parse small archives
txt_9_5_reopentab: Reopen last tab
txt_9_5_savetabs: Save tabs
txt_9_5_sb: Use binaries in system paths
txt_9_4_r: read
txt_9_4_rw: read/write
txt_9_4_savecomment: Save comment
txt_9_4_hintcomment: Type or paste comment, load or drag here comment file.
txt_9_3_continue: Continue anyway?
txt_9_3_contrast: Contrast
txt_9_3_fsd: Free space on destination may not be enough
txt_9_3_fsw: Free space on temporary work path may not be enough
txt_9_3_mrar: Manually set RAR binary
txt_9_3_canedit: This archive type can be edited
txt_9_3_canforce: This archive type can be edited (forced)
txt_9_3_cannotedit: This archive type cannot be edited
txt_9_2_7za: 7z / p7zip alias
txt_9_2_changelog: Change log
txt_9_2_tfaq: Check for Translations
txt_9_2_compact: Compact
txt_9_2_swt: Swap Tab bar / Address bar
txt_9_2_tos: TOS, Privacy
txt_9_2_doc: Verify documentation, Issue Tracker...
txt_9_2_updates: Verify updates, binaries, Plugins...
txt_9_1_7zs: 7z / p7zip syntax level
txt_9_1_ac: Archive conversion scripts allow user's interaction
txt_9_1_closeall: Close all
txt_9_1_enlargeicons: Enlarge file browser icons
txt_9_1_ef: Exclude empty folders from archiving and extraction operations (7z / p7zip)
txt_9_1_nw: Open in a new window
txt_9_1_qdup: Use quick deduplication routine
txt_9_0_autoexttar: Auto extract TAR archive from compressed TAR.* files
txt_9_0_accesstime: Do not change last access time
txt_9_0_mem: Maximum memory usage
txt_9_0_showmainmenu: Open Main menu
txt_9_0_navmenu: Open Navigation menu
txt_9_0_plugind: Open binaries and Plugin directory
txt_9_0_df: Sort dirs before files
txt_9_0_hl: Store hard links as links
txt_9_0_sl: Store symbolic links as links
txt_9_0_tnav: Toggle side bar, treeview, none
txt_8_9_empty: Archive seems empty
txt_8_9_disp: Displaying archive content
txt_8_9_parsing: Parsing archive content
txt_8_9_stoptest: Stop to inspect report for error, list, test, auto-test
txt_8_9_ttb: Toggle tool bar
txt_8_8_ca: Accent color
txt_8_8_btn: Button
txt_8_8_cb: Button color
txt_8_8_centered: Centered buttons
txt_8_8_light: Light
txt_8_8_lnk: Link
txt_8_8_intnote: Please note that "Extract then move" option (in Options > Settings > Archive manager) is ignored for composing the command line in Console tab.
txt_8_8_snz: Propagate Zone.Identifier stream (Windows)
txt_8_8_sm: Small icons size
txt_8_8_solcol: Breadcrumb bar
txt_8_8_snoi: Store owner/group ids (TAR, Linux)
txt_8_8_snon: Store owner/group names (TAR, Linux)
txt_8_8_tab: Tab
txt_8_8_altt: Tabs style
txt_8_8_autotest: Test archives after creation, if supported by the format
txt_8_8_cw: Window color
txt_8_7_csvhelp: "," international standard, ";" common in Latin locales
txt_8_7_after: After archiving / extraction
txt_8_7_bintest: binaries tested.
txt_8_7_csv: CSV separator
txt_8_7_hok: Hash of binaries used by PeaZip match with expected values
txt_8_7_mo: Set archive manager options
txt_8_7_showhm: Open Browser header menu
txt_8_7_showsearchbar: Show search bar
txt_8_7_showsm: Open Style menu
txt_8_7_hnotok: Some hash of binaries used by PeaZip do not match with expected values:
txt_8_7_verifybin: Verify hash of binaries
txt_8_6_clear: "Clear" option removes temp edited files, otherwise available for further editing.
txt_8_6_noclear: Discard all changes without updating the archive
txt_8_6_nosimple: Do not update archive, keep temp edited files for further editing
txt_8_6_immediate: Immediate execution
txt_8_6_yessimple: Update archive, keep temp edited files for further editing
txt_8_5_advbrowser: Apply filters to archive browser
txt_8_5_detailslarge: Details, large
txt_8_5_intext: Extract to temporary working directory then move to output destination, interactively ask before overwriting
txt_8_5_listlarge: List, large
txt_8_5_loadlayout: Load layout at startup
txt_8_5_samplescripts: Sample scripts
txt_8_4_keepopenerrorslist: Stop to inspect report for error, list
txt_8_3_mbubin: Binary
txt_8_3_cw: Change working directory? This will reset temporary work files and restart the application.
txt_8_3_temperature: Color temperature
txt_8_3_mbudec: Decimal
txt_8_3_htab: Highlight tabs
txt_8_3_maxarg: Maximum length of arguments
txt_8_3_mbu: Multiple-byte unit
txt_8_3_prefalgo: Preferred algorithms
txt_8_3_skipdel: Skip deletion of locked temp files (use reset to delete on demand)
txt_8_3_lw: Some files in working directory are locked and cannot be removed automatically
txt_8_3_noupx: This binary cannot be compressed (may be already compressed)
txt_8_2_slower: (slower)
txt_8_2_df: 7z / p7zip display content of folders
txt_8_2_vreport: 7z / p7zip non-verbose report
txt_8_2_ta: Accessed
txt_8_2_tc: Created
txt_8_2_keep: Keep files
txt_8_2_tm: Modified
txt_8_2_skipet: Skip testing for encryption
txt_8_2_alltimes: Store all timestamps
txt_8_2_supportedby: Supported by
txt_8_1_preparse: Always pre-parse archives
txt_8_1_bo: Browser optimization
txt_8_1_bop: Browser optimization options can be set from Options > Settings > General tab, in order to allow browser to display archives containing a very large number of items.
txt_8_1_nopreparse: Do not pre-parse archives
txt_8_1_ed: error(s) detected.
txt_8_1_togglearc: Listing flat view of archive content may take long time, continue anyway?
txt_8_1_preparsehint: Optimize performances limiting pre-parsing of large archives. Pre-parsing is meant to detect in advance possible issues in archive content.
txt_8_1_slow: Slow
txt_8_1_vslow: Very slow
txt_8_1_volumes: volumes
txt_8_0_altcol: Alternate grid color
txt_8_0_forcebrowse: Browse non-canonical archive types (containers, disk images, installers,...)
txt_8_0_commonalgo: Common algorithms
txt_8_0_forceconvert: Convert non-canonical archive types
txt_8_0_defaultactionhint: Default action double-clicking a file associated with PeaZip from the system
txt_8_0_defaultaction: Default action on input (open, auto-extract...)
txt_8_0_enableextand: Enable "Extract and open with" submenu
txt_8_0_forcetyping: Force typing passwords interactively
txt_8_0_setpwopt: Set password / keyfile options
txt_8_0_forcetypinghelp: If supported by the backend, the task will prompt interactively for password. LIMITATIONS: task will run in console, will not run unattended, and cannot browse archives with encrypted filenames.
txt_7_9_spacing: Spacing
txt_7_9_zooming: Zoom
txt_7_8_changelocalization: Change PeaZip language
txt_7_8_custext: Custom extension
txt_7_8_destexistfile: Destination already contains processed files. Replace files with same name?
txt_7_8_dd: Drag and Drop
txt_7_8_priorityhigh: High
txt_7_8_priorityidle: Idle
txt_7_8_rel: Extract then move to destination
txt_7_8_prioritynormal: Normal
txt_7_8_priorityrealtime: Real time
txt_7_8_requirerestart: [requires restarting PeaZip]
txt_7_8_tpriority: Tasks priority
txt_7_8_update: Update
txt_7_7_noneall: None: disable preview, edit, drag&drop and interactive extraction
txt_7_7_nonetemp: None, user's temp if necessary
txt_7_7_outtemp: Output, preview in user's temp
txt_7_7_sys7zreq: Requires 7z, 7-Zip, or p7zip, or equivalent package to be installed
txt_7_7_tw: Temporary work folder for archive creation, editing, preview and drag&drop extraction
txt_7_7_sys7z: Use system 7z if available
txt_7_6_zipenc: ZIP filenames encoding
txt_7_6_color: Color
txt_7_6_custenc: Custom code page
txt_7_6_dark: Darker
txt_7_6_tno: Do not sync archive tree
txt_7_6_forcelocalenc: Force local
txt_7_6_forceutf8enc: Force UTF-8
txt_7_6_cpnote: If the chosen custom code page is unsupported, tasks will always end in error (most likely memory allocation error). In case that happens, change code page or reset the application.
txt_7_6_defaultenc: Local, UTF-8 for extra symbols
txt_7_6_dim: Dark
txt_7_6_setcurdef: Set current path as default output path
txt_7_6_setdef: Set default output path
txt_7_6_tadvanced: Sync archive tree, keep visited nodes
txt_7_6_tsimple: Sync archive tree, simple
txt_7_6_tacolor: Text accent
txt_7_5_always: Always
txt_7_5_ask: Ask
txt_7_5_autoclosesingle: Auto close after extraction if no browsing actions took place
txt_7_5_cutlen: Cut name at specified length
txt_7_5_cutlenw: Cut name at specified length (4..255) naming conflicts can be fixed manually later
txt_7_5_dragnone: Do not lock target
txt_7_5_specialbrowse: Do you want to extract everything in order to provide the file with the extra data it may need?
txt_7_5_ee: Extract everything for special file types
txt_7_5_draghide: Hide drop target
txt_7_5_draglh: Lock and hide target
txt_7_5_draglock: Lock drop target
txt_7_5_never: Never
txt_7_5_repnascii: Replace/remove non-ASCII characters
txt_7_4_comment: Comment
txt_7_4_7zfbrotlicomp: Fastest compression, 7Z Brotli
txt_7_4_7zfzstandardcomp: Fastest compression, 7Z Zstandard
txt_7_4_presetrar: High compression, RAR
txt_7_4_tkeep: Keep original archive timestamp
txt_7_4_lock: Lock archive
txt_7_4_locked: locked
txt_7_4_lockconfirm: Locked archives cannot be further modified, proceed locking this archive?
txt_7_4_recover: Repair archive
txt_7_4_tcurr: Set archive timestamp from current system time
txt_7_4_setarc: Set advanced archiving options
txt_7_4_setext: Set advanced extraction options
txt_7_4_swzipx: Switch to zipx extension for non-Deflate zip archives
txt_7_3_archiveerrors: [archive may contain errors]
txt_7_3_archiveerrorshint: Archive may not be valid (due missing, corrupted, or out of standard data), it is possible to run Test for detailed information. If archive's table of content is encrypted, password is needed before browsing it.
txt_7_3_clickextall: Click "Extract all" to enable
txt_7_3_noconfdel: Do not ask confirmation for delete after archiving / extraction
txt_7_3_profile7zfastest: Fast compression, 7Z fastest
txt_7_3_maxbr: Maximize Brotli compression using more memory (may be incompatible with some extractors)
txt_7_3_maxzstd: Maximize Zstandard compression using more memory
txt_7_3_profile7zfast: Medium compression, 7Z fast
txt_7_3_stl: Set archive timestamp from most recent file
txt_7_2_altcomp: High compression, ARC
txt_7_2_clearnoupdate: Clear edited files
txt_7_2_autoclosepeazip: Close PeaZip when task completes
txt_7_2_zpaqall: Extract all revisions
txt_7_2_extcomp: Extreme compression, ZPAQ
txt_7_2_extcompultra: Extreme compression, ZPAQ ultra
txt_7_2_fbrotlicomp: Fastest compression, Brotli
txt_7_2_fzstandardcomp: Fastest compression, Zstandard
txt_7_2_loadcompsettings: Load compression settings
txt_7_2_savecompsettings: Save compression settings
txt_7_2_source: Source
txt_7_2_updateclear: Update archive, clear temp edited files
txt_7_1_type_description_brotli: Brotli: fast compressor from Google, very fast decompression
txt_7_1_new: Extract all here (in new folder)
txt_7_1_smart: Extract all here (smart new folder)
txt_7_1_profileintermediate: Medium compression, ZIP/BZip2 fast
txt_7_1_renfilesonly: Rename only files
txt_7_1_typetosearch: Type to search in current path
txt_7_1_type_description_zstd: Zstandard: fast compressor from Facebook, very fast decompression
txt_7_0_af: Analyze content of folders
txt_7_0_autoopentar: Auto open TAR archive inside compressed TAR.* files
txt_7_0_exttmppath: Content will be extracted outside the temporary work path, in:
txt_6_9_autou: Auto update modified files in archives
txt_6_9_forceu: Update edited files in archive
txt_6_9_opuns: Operation not supported for current archive type
txt_6_9_overarch: Overwrite file(s) with same name already existing inside the archive?
txt_6_9_uconf: Previewed file has been modified. Update the current archive?
txt_6_8_ndrop: Use native Drag and Drop on Windows
txt_6_7_nop: (no preview)
txt_6_6_pdupfound: possible duplicates found (quick approximate test)
txt_6_6_rsh: Reset search history
txt_6_6_pdupfind: Suggest duplicates
txt_6_6_forcemodify: Edit non-canonical archive types as
txt_6_5_mandatory: (mandatory)
txt_6_5_abort: Abort
txt_6_5_askp: Ask to set password at startup
txt_6_5_chp: Change password
txt_6_5_def: Definition
txt_6_5_nop: Don't ask to set password at startup
txt_6_5_error: Error
txt_6_5_seqerr: Error(s) detected, original files will not be deleted
txt_6_5_sni: Include NT security information
txt_6_5_sns: Include NTFS Alternate Data Stream
txt_6_5_privacy: Privacy and Security
txt_6_5_showvolatile: Show which options are volatile / context dependent
txt_6_5_force: Try to open archives containing errors
txt_6_5_warning: Warning
txt_6_5_yes: Yes
txt_6_5_yesall: Yes to all
txt_6_5_np: You can now change password of converted archive(s) to a new one, or blank the password to skip encryption
txt_6_4_absolute: Absolute paths
txt_6_4_appdirn: Append directory name
txt_6_4_closeallother: Close all other tabs
txt_6_4_closeright: Close tabs on the right
txt_6_4_collapse: Collapse tabs
txt_6_4_expand: Expand tabs
txt_6_4_full: Full paths
txt_6_4_new: New
txt_6_4_openintab: Open in a new tab
txt_6_4_paths: Paths
txt_6_4_prepdirn: Prepend directory name
txt_6_4_relative: Relative paths
txt_6_4_tabbar: Tab bar
txt_6_3_autoadjust: Auto adjust columns
txt_6_3_cinfo: Info and comments
txt_6_3_syn: Synchronize archive with disk
txt_6_3_uar: Update only files already in archive
txt_6_2_encext: Add ".enc" suffix to encrypted archives
txt_6_2_archive: Archive file type
txt_6_2_container: Container file type
txt_6_1_ec: Expand / collapse archive tree
txt_6_0_msq: Sort by file type for solid compression
txt_5_9_lff: Analyze files and folders
txt_5_9_pff: Analyze, show files header/EOF
txt_5_9_start: Start from
txt_5_8_l0: Allow any supported component/format
txt_5_8_l1: Allow only Free Software components
txt_5_8_l2: Allow only open archive formats
txt_5_8_ascii: ASCII safe, scripts are safe on legacy environments
txt_5_8_cp: Code Page safe, scripts may trigger problems on legacy environments with different Code Pages
txt_5_8_fs: Free Software compliance
txt_5_8_utf: Scripts need full UTF-8 / Unicode environment
txt_5_8_fsr: This format is not supported due Free Software compliance restrictions (Options > Settings > Advanced)
txt_5_7_pinstalled: INSTALLED
txt_5_7_pmissing: MISSING
txt_5_7_plugin: Plugin missing, can be installed from Help > Check for Plugins
txt_5_6_basic: Basic
txt_5_6_exarc: Extract archive
txt_5_6_tab: Open in new tab
txt_5_6_rc: Right click for options
txt_5_6_layouts: Saved layouts
txt_5_6_upexisting: Update existing archive
txt_5_6_verbose: Verbose
txt_5_5_case: (case sensitive)
txt_5_5_add: Add string at specified position
txt_5_5_addsel: Add to current selection
txt_5_5_ext: Change files extension
txt_5_5_plugin: Check for Plugins
txt_5_5_copypath: Copy path
txt_5_5_delete: Delete characters at specified position
txt_5_5_halt: Halt system when task completes
txt_5_5_positionw: Hint: 1 add before first char, 2 second, etc... "z" for end of file name
txt_5_5_positionwd: Hint: 1 delete from first char included, 2 second, ... "z" for end of file name
txt_5_5_replaceneww: Hint: provide an empty new string to simply remove the old string
txt_5_5_lower: lowercase
txt_5_5_replaceoldw: Modify all occurrences of this string or character in the file name
txt_5_5_newext: New extension
txt_5_5_new: New string
txt_5_5_n: Number of characters to delete
txt_5_5_old: Old string
txt_5_5_position: Position (number or "z" for end)
txt_5_5_intdir: Smart new folder
txt_5_5_replacestr: Replace/remove string
txt_5_5_datesameday: Same day of selected object
txt_5_5_datesamehour: Same hour of selected object
txt_5_5_datesamemonth: Same month of selected object
txt_5_5_datesameweek: Same week of selected object
txt_5_5_datesameyear: Same year of selected object
txt_5_5_scan: Scan
txt_5_5_select: Select
txt_5_5_similar: Similar to selected object
txt_5_5_starting: Starting with same character
txt_5_5_string: String to add
txt_5_5_subtractsel: Subtract from current selection
txt_5_5_datehour: This hour
txt_5_5_datemonth: This month
txt_5_5_dateweek: This week
txt_5_5_dateyear: This year
txt_5_5_dateday: Today
txt_5_5_upper: UPPERCASE
txt_5_5_extw: Warning: changing file extension the file may become unusable
txt_5_4_da: Date added
txt_5_4_deletearchives: Delete archives after extraction
txt_5_4_deletefiles: Delete files after archiving
txt_5_4_deleteoriginal: Deletion procedure, as set in main screen, will be appended to the script.
txt_5_4_lv: Last visited
txt_5_4_deletearchivesconfirm: Confirm deletion of original archives?
txt_5_4_deletefilesconfirm: Confirm deletion of original files?
txt_5_4_used: Used
txt_5_3_profilebest: Extreme compression, 7Z ultra
txt_5_3_profileadvanced: High compression, 7Z
txt_5_3_profilenormal: Medium compression, ZIP (compatible with most extractors)
txt_5_3_profileveryfast: Fast compression, ZIP fast (compatible with most extractors)
txt_5_3_profilepassword: Protect with password, 7Z format
txt_5_3_profile10mb: Keep output under 25 MB, for mail attachment limitations
txt_5_3_profilesfx: Auto extracting, recipient will not need an extraction software
txt_5_3_cml: System context menu language
txt_5_3_cmlmessage: Double click on desired context menu language and confirm registry merging. This setting needs to be re-applied when the application is installed/updated or after System integration wizard is used.
txt_5_3_exc: Exclusion filters prevail on inclusion filters
txt_5_3_ia: Include also
txt_5_3_io: Include only
txt_5_3_rec: Recurse subdirs
txt_5_3_resetsi: Re-configure system integration (context menu, SendTo, file associations)?
txt_5_2_oadd: Archive to original path
txt_5_2_zerodelete: Do you want to delete and overwrite with all 0 selected file(s)? The operation can't be undone and files will be not recoverable
txt_5_2_zfree: Do you want to overwrite with all 0 free space on this drive?
txt_5_2_sdfree: Do you want to securely delete free space on this drive?
txt_5_2_oext: Extract to original path
txt_5_2_securedeletefree: Secure delete free space
txt_5_2_free: This operation can take some minutes and, if performed often, it can quickly wear flash-based disks
txt_5_2_zerofiles: Zero delete
txt_5_2_zerofree: Zero delete free space
txt_5_1_schedadd: Add schedule
txt_5_1_schederr: Cannot create schedule
txt_5_1_daily: Daily
txt_5_1_day: Day
txt_5_1_days: Days
txt_5_1_enddate: End date
txt_5_1_every: Every
txt_5_1_w6: Friday
txt_5_1_hourly: Hourly
txt_5_1_hours: Hours
txt_5_1_last: Last
txt_5_1_schedmanage: Task Scheduler, manage tasks saved in PeaZip branch
txt_5_1_scriptmanage: Manage saved scheduled scripts
txt_5_1_w2: Monday
txt_5_1_monthly: Monthly
txt_5_1_months: Months
txt_5_1_onlogin: On login
txt_5_1_onstart: On start
txt_5_1_once: Once
txt_5_1_w7: Saturday
txt_5_1_schedule: Schedule
txt_5_1_schedexplain: Creates a plain text script from GUI task definition and schedule it. Scheduled tasks' scripts are saved in "Scheduled scripts" folder. To edit or delete scheduled tasks you can use system's Task Scheduler, all scheduled tasks created by PeaZip are collected in "PeaZip" branch of the tasks library.
txt_5_1_schedok: Schedule created successfully
txt_5_1_schedscripts: Saved scheduled scripts
txt_5_1_startdate: Start date
txt_5_1_starttime: Start time
txt_5_1_w1: Sunday
txt_5_1_schedname: Task name, identify both the saved scheduled script and the system's scheduled task
txt_5_1_ts: Task Scheduler
txt_5_1_w5: Thursday
txt_5_1_w3: Tuesday
txt_5_1_w4: Wednesday
txt_5_1_weekly: Weekly
txt_5_1_weeks: Weeks
txt_5_0_bc: Breadcrumb
txt_5_0_resetpm: Do you confirm resetting Password Manager? All passwords stored in PeaZip's Password Manager will be lost if confirmed.
txt_5_0_enum: Enumerate folder content
txt_5_0_music: Music
txt_5_0_ps: Open PowerShell here
txt_5_0_perf: Performance
txt_5_0_pictures: Pictures
txt_5_0_removeall: Remove all
txt_5_0_resetbookmarks: Reset Bookmarks to default? (Bookmarks can then be customized with Bookmarks > Organize)
txt_5_0_sh: Session history
txt_5_0_skip: Skip enumerating directories' content in layout
txt_5_0_videos: Videos
txt_4_9_frame: Frame
txt_4_9_listth: List and thumbnails
txt_4_9_shadow: Shadow
txt_4_9_style: Style
txt_4_8_attach25: 25 MB attachment
txt_4_8_crop: Crop
txt_4_8_detailsno: Details
txt_4_8_details: Details and thumbnails
txt_4_8_fit: Fit to
txt_4_8_fitl: Fit to largest
txt_4_8_flip: Flip
txt_4_8_fullscreen: Full screen
txt_4_8_fun: Functions
txt_4_8_h: Height
txt_4_8_keeparchive: Keep archive
txt_4_8_noresize: Keep original size
txt_4_8_iconl: Large images
txt_4_8_iconm: Icons and images
txt_4_8_imagemanager: Image manager
txt_4_8_immersive: Immersive
txt_4_8_listno: List
txt_4_8_aspect: Maintain aspect ratio
txt_4_8_mirror: Mirror
txt_4_8_presets: Presets
txt_4_8_replace: Replace original image(s)? "No" apply the transformation in new file(s).
txt_4_8_resize: Resize
txt_4_8_rl: Rotate left
txt_4_8_rr: Rotate right
txt_4_8_stop: Stop
txt_4_8_t: Transform
txt_4_8_w: Width
txt_4_7_pk: Create random password / keyfile
txt_4_7_spchar: Limit characters to letters and numbers
txt_4_7_recycleask: Move selected file(s) to Trash?
txt_4_7_recycle: Move to Trash
txt_4_7_pcomp: Potential compression
txt_4_6_am: Archive manager
txt_4_6_fm: File manager
txt_4_6_users: Users
txt_4_5_goupdate: A new version is available. Open PeaZip's official website to download the update?
txt_4_5_b: Bottom
txt_4_5_koupdate: Cannot check for updates, no connection with update server
txt_4_5_update: Check for updates
txt_4_5_dock: Dock
txt_4_5_l: Left
txt_4_5_noupdate: PeaZip is up to date
txt_4_5_properties: Properties
txt_4_5_r: Right
txt_4_5_pj: Saved scripts
txt_4_5_shaddress: Show Address bar
txt_4_5_shnav: Show Side bar
txt_4_5_shstatus: Show Status bar
txt_4_5_shtool: Show Tool bar
txt_4_5_upxpj: Sorry, cannot export task definition since this action or option requires performing multiple distinct commands
txt_4_5_t: Top
txt_4_4_confremoveall: Remove all PeaZip customization files (Applications, Bookmarks)?
txt_4_4_confremove: Remove PeaZip configuration?
txt_4_3_pwmanhint: Double click to edit items in password list, rightclick for options, Ctrl+C to copy passwords
txt_4_3_exppl: Export password list
txt_4_3_expple: Encrypted (backup Password Manager)
txt_4_3_keeppw: Keep password/keyfile for current session
txt_4_3_pwmanpwhint: Setting a password/keyfile (optional) to encrypt password list is recommended, in this way authentication will be required to access to the Password Manager. Password/keyfile can be changed at any time from this form.
txt_4_3_pwmanmaster: Set/change PM master password
txt_4_3_pwmanlist: Password list
txt_4_3_pwman: Password Manager
txt_4_3_pwmancorr: Password Manager seems tampered or corrupted. Keep Password Manager anyway and try to recover current password list, if you trust it? (No will reset Password Manager, recommended)
txt_4_3_expplp: Plain text (all uses)
txt_4_3_recsrc: Recursive search by default
txt_4_3_resetpm: Reset Password Manager? All saved passwords will be deleted
txt_4_3_breadcrumb: Show Address as breadcrumb
txt_4_2_arcabspath: Use absolute paths
txt_4_1_duplicateshint: "size"/"checksum" string is reported in CRC column for all duplicate candidates found in current directory or search filter
txt_4_1_adminhint: (HINT: alternatively, you can request UAC elevation to work in protected paths, Alt+F10 or Options > Run as administrator)
txt_4_1_selected: (selected)
txt_4_1_duplicatesfound: duplicates found
txt_4_1_duplicatesfind: Find duplicates
txt_4_1_runasadmin: Run as administrator
txt_4_1_simplesearch: Simple search
txt_4_0_thim: Show picture thumbnails
txt_3_8_type_description_wim: WIM: Microsoft's disk image format
txt_3_8_type_description_xz: XZ: powerful file compression based on LZMA2
txt_3_7_donations: Donations
txt_3_7_nameasparent: Name archive as selected item's parent folder, if multiple items are added
txt_3_7_tracker: Issue Tracker
txt_3_7_sort: Sort by
txt_3_7_swapbars: Swap Tool bar / Address bar
txt_3_7_themedbars: Themed bars
txt_3_6_ignoredd: Always ignore paths for Drag and Drop extraction
txt_3_6_close: Close
txt_3_6_resetapps: Do you want to reset Applications (customizable group of programs and scripts to open files with, overriding file associations)?
txt_3_6_ethemes: Existing Themes
txt_3_5_td: Check for Themes
txt_3_5_managecustomthemes: Manage Themes
txt_3_4_nopaths: No paths
txt_3_4_smallicons: Icons
txt_3_3_skipunits: (Windows) Get volume information for network units, slower startup
txt_3_3_stralt: Alternative command, when no parameter is passed
txt_3_3_apps: Applications
txt_3_3_multi: Multiple selection
txt_3_3_runexp: Open a program, file, folder or website
txt_3_3_apppath: PeaZip's folder
txt_3_3_run: Run
txt_3_2_7zutf8nonascii: 7z / p7zip -mcu use UTF8 for file names containing non-ASCII symbols inside .zip files
txt_3_2_alltasks: All tasks
txt_3_2_conf: Configuration
txt_3_2_donations: Donate to charitable organizations
txt_3_1_sccenc: 7z / p7zip CONSOLE character encoding
txt_3_1_downloads: Downloads
txt_3_1_lib: Libraries
txt_3_1_more: More
txt_3_1_openasarchive: Open as archive
txt_3_1_sendto: User’s SendTo menu folder
txt_3_1_pathexc: Path exceeding maximum allowed size
txt_3_1_recent: Recent
txt_3_1_plsmartmin: Run minimized, show/keep open only if needed
txt_3_1_src: Searches
txt_3_1_systmp: User's temp
txt_3_1_languagetools: Translate
txt_3_1_workingdir: Working directory
txt_3_0_nonreadableorpw: Archive is not readable. The archive may not be valid, volumes may be missing, or its table of content could be encrypted. Would you like to try a password?
txt_3_0_readablepw: Archive is unreadable, may be password protected
txt_3_0_configure: File associations and system menu integration
txt_3_0_resettmp: Reset temporary work files
txt_2_9_address: Address bar
txt_2_9_adv: Advanced filters are applied when managing any file supported through 7z or FreeArc backends, see documentation, and overrides basic filters (that are used for search functions and are displayed in Bookmarks and History panels)
txt_2_9_columns: Columns
txt_2_9_copyhere: Copy here
txt_2_9_noscan: Don't scan files being added to layout
txt_2_9_extconsole: Extraction console is available only while browsing archives
txt_2_9_thl: Highlight buttons
txt_2_9_home: Home
txt_2_9_lt: Large
txt_2_9_mt: Medium
txt_2_9_movehere: Move here
txt_2_9_nav: Navigation
txt_2_9_navbar: Side bar
txt_2_9_none: None
txt_2_9_organize: Organize
txt_2_9_public: Public
txt_2_9_rec: Recursive: search in subdirectories, may take some time
txt_2_9_selected: Selected
txt_2_9_setapps: Organize Applications
txt_2_9_showmenu: Show Menu bar
txt_2_9_st: Small
txt_2_9_test_pw2G: Test for encryption <2GB archives
txt_2_9_vst: Text only
txt_2_9_toolbar: Tool bar
txt_2_9_tree: Tree
txt_2_9_views: Views
txt_2_8_experimental: (experimental)
txt_2_8_zcopy: (Windows) Copy files in restartable mode, slower copy
txt_2_8_addvol: Adding entire volume(s) to archive may take long time, continue anyway?
txt_2_8_uniterror: Cannot access the unit
txt_2_8_cannotconvert: Cannot convert selected archives
txt_2_8_convertbegin: Continue with compression stage to finalize the conversion?
txt_2_8_convert: Convert
txt_2_8_convertexisting: Convert existing archives
txt_2_8_convertdelete: Delete files and folders created temporarily for conversion?
txt_2_8_details: Details
txt_2_8_parallel: Execute tasks in parallel when possible
txt_2_8_convertnote: In any case original archives were not modified, to let the user in control about keeping or removing them
txt_2_8_custom: is not directly supported by PeaZip, but in extraction stage you can set PeaZip to handle custom file types in "Advanced" tab. Proceed opening this file?
txt_2_8_unitrecommend: It is recommended either to extract (rightclick > extract selected) or to open filesystems from computer's root (System tools > Open unit as archive)
txt_2_8_viewasarchive: Open unit as archive
txt_2_8_nounit: No unit selected
txt_2_8_rowselect: Row select
txt_2_8_statusbar: Status bar
txt_2_8_typeunit: Type logical or physical unit name
txt_2_8_usedefaultoutpath: Always use default output path
txt_2_7_experimental: (experimental, see documentation)
txt_2_7_optional: (optional)
txt_2_7_list_tryflatorpw: , possible solutions: try flat view (F6), provide password (F9), get a fresh copy of the archive
txt_2_7_separate: Add to separate archives
txt_2_7_pwsupported: archiving with password
txt_2_7_cancel: Cancel
txt_2_7_encfn: Encrypt also file names (if supported by the format)
txt_2_7_setpw: Set password / keyfile
txt_2_7_ext: Extracting:
txt_2_7_extfrom: Extracting from archive:
txt_2_7_es: Extract supported non-archive file types, i.e. executables, MS Office and OOo files
txt_2_7_eu: Extract unsupported file types, specifying custom extraction utility
txt_2_7_clipboard: Clipboard
txt_2_7_goarclayout: Go to archiving layout
txt_2_7_goextlayout: Go to extraction layout
txt_2_7_ok: OK
txt_2_7_drag_archive: open file as new archive? ("No" to add file to current archiving layout)
txt_2_7_oop: Open output path when task completes
txt_2_7_validatefn: Operation stopped, invalid file name detected:
txt_2_7_validatecl: Operation stopped, potentially dangerous command detected (i.e. command concatenation not allowed within the program):
txt_2_7_output: Output
txt_2_7_pwnotset: Password is not set
txt_2_7_pwarcset: Password is set
txt_2_7_pwextset: Password is set, it is possible to extract/list/test encrypted archives
txt_2_7_archivehint: Drag here files and folders to archive, or right-click for more options
txt_2_7_exthint: Drag here archives to extract, or right-click for more options
txt_2_7_setadvf: Set advanced filters
txt_2_7_selpath: Selected item's path
txt_2_7_separateerror: Sorry, cannot import task definition's command line while using "Add to a separate archives" switch, since the task is performed as multiple distinct commands
txt_2_7_noinput: The layout is empty: please use Add file(s) or Load Layout to populate the list of archives to be extracted
txt_2_7_dirsize: The size of the content of folders is not checked for calculating the total size
txt_2_7_un7z_browse_flat: try flat view (F6)
txt_2_7_updating: [Updating existing archive]
txt_2_6_folders: (folders)
txt_2_6_advanced: Advanced
txt_2_6_plalways: Always stop to inspect task report
txt_2_6_plsmart: Stop to inspect report for error, list, test
txt_2_5_sessionio: (this session)
txt_2_5_advanced: Advanced edit: place spaces between parameter strings and filename if needed
txt_2_5_basic: Basic edit: application and parameters before input name
txt_2_5_cannotrun: Cannot run
txt_2_5_custeditors: Custom editors, players, antivirus scanners, etc... (override system's file associations)
txt_2_5_delete: Delete
txt_2_5_delete_fromarchive: Delete from archive
txt_2_5_langflag: Display archived object's name as UTF-8 text; uncheck to replace extended characters with "?"
txt_2_5_encpj: Encode task definition as UTF-8 text
txt_2_5_execommand: Executable or command
txt_2_5_help: Help
txt_2_5_langhint: Hint: replacing extended characters with "?" jolly character can improve syntax if archive's character set cannot be successfully converted on the current machine
txt_2_5_mini_help: Localized Tutorial
txt_2_5_offline_help: PeaZip help
txt_2_5_tray: Reduce to tray
txt_2_5_remove: Remove
txt_2_5_hintpaths: Rightclick to open system's and user's paths
txt_2_5_selectapp: Select application
txt_2_5_strafter: String after input name
txt_2_5_strbefore: String before input name
txt_2_5_encoding: Text encoding
txt_2_5_nopw: this type of archives does not support encryption
txt_2_4_draghint: [drag to Explorer with enabled Address bar]
txt_2_4_tb: Adapt toolbar buttons (restarts PeaZip)
txt_2_4_adding: Adding
txt_2_4_advclip: Clipboard keeps multiple selections
txt_2_4_yanswers: Answers
txt_2_4_itemsheight: Auto-size items height
txt_2_4_clearclipboard: Clear clipboard (Esc)
txt_2_4_wcommons: Commons
txt_2_4_copyfrom: Copy from
txt_2_4_deletebookmarks: Do you want to delete the list of bookmarked files and folders?
txt_2_4_documents: Documents
txt_2_4_wenc: Encyclopedia
txt_2_4_extractfrom: Extract from
txt_2_4_hexp: Hex preview
txt_2_4_operation: Operation
txt_2_4_path: path is not writeable (i.e. full, or read-only). Do you want to select a writeable output path?
txt_2_4_removefromclipboard: Remove from clipboard
txt_2_4_stdclip: Standard: keep a single selection in clipboard, clear cut operations on paste
txt_2_4_totalmem: total memory
txt_2_4_gvideo: Video
txt_2_4_wbook: Wikibook
txt_2_4_wnews: Wikinews
txt_2_4_wsrc: Wikisource
txt_2_4_wdict: Wiktionary
txt_2_3_pw_errorchar: quote character is not recommended to be used in passwords (for PeaZip and scripts). If you need to create or extract an archive with this password you can dismiss the message and you will be asked to enter the password interactively in console.
txt_2_3_envstr: Display environment variables
txt_2_3_never_pw: Don't ask for password
txt_2_3_home: User's home
txt_2_3_on_pw: On extract/list/test operations from system's menus:
txt_2_3_test_pw100: Test for encryption <100MB archives
txt_2_3_test_pw: Test for encryption (may be slow)
txt_exclude_recourse: "exclude" recurse subdirs
txt_action_extopen: "Extract and open with associated application" action
txt_error_passwordnotmatch: "Password" and "Confirm" fields doesn't match, please correct them
txt_action_preview: "Preview with associated application" action
txt_preview_hint: "Preview" action perform the same task as "Extract and open" but to a temporary path in output directory, automatically removed when the archive is closed.
txt_better: (better)
txt_default2: (default)
txt_faster: (faster)
txt_fastermem: (faster, less memory)
txt_tempdir: (PeaZip's temporary work folder)
txt_stream: (set by "Stream control")
txt_slowermem: (slower, more memory)
txt_store: (store, fastest)
txt_newfolder: (in new folder)
txt_7z_exitcodeunknown: : Unknown error in task
txt_list_isfolder: [folder]
txt_none: <none>
txt_fd: 1.44 MB Floppy Disk
txt_7z_exitcode1: 1: Warning: non fatal error(s); i.e. some files missing or locked
txt_attach10: 10 MB attachment
txt_7z_exitcode2: 2: Fatal error occurred
txt_7z_exitcode255: 255: Task halted by the user
txt_fat32: 4 GB FAT32 file
txt_dvd: 4.7 GB DVD
txt_attach5: 5 MB attachment
txt_cd650: 650 MB CD
txt_7z_exitcode7: 7: Error: got incorrect command line
txt_cd700: 700 MB CD
txt_type_description_7z: 7Z: feature rich archive format with high compression ratio
txt_dvddl: 8.5 GB DVD DL
txt_7z_exitcode8: 8: Error: not enough memory for requested operation
txt_abort: Abort scheduled file copy/move operations?
txt_about: About
txt_action: Action
txt_action_hint: Action on open or preview with associated application
txt_add: Add
txt_add_existing_archive: Add (if archive exists)
txt_add_archive: Add archive
txt_add_files: Add files
txt_add_folder: Add folder
txt_add_path: Add path
txt_add_tolayout: Add selected files and folders to archive's layout
txt_add_toarchive: Add to archive
txt_add_tobookmarks: Add to bookmarks
txt_address_hint: Filter: accepts * and ? wildcards
txt_adv_filters: Advanced filters
txt_algo: Algorithm
txt_all: all
txt_all_default: All (default)
txt_all_type: Same type
txt_all_date: Date
txt_all_psize: Packed file size
txt_all_attributes: Same attributes
txt_all_size: File size
txt_error_input_upx: allows a single executable file as input
txt_always_pw: Always ask for password
txt_ignore_ext: Always ignore paths for "Extract and..."
txt_ignore_disp: Always ignore paths for "Extract displayed..."
txt_ignore_sel: Always ignore paths for "Extract selected..."
txt_key_hint: Append keyfile's hash to password; the archive can be decrypted by PeaZip and other applications following the same standard, or entering the hash as part of the password
txt_timestamp: Append timestamp to name
txt_appoptions: Application options
txt_type_description_arc: ARC: experimental archiver, powerful, efficient and feature-rich
txt_archive: Archive
txt_un7z_browse_ok: archive browsed successfully
txt_interface: Archive browser interface
txt_archivecreation: Archive creation
txt_tarbefore_hint: Archive data in TAR format before than in specified type.
txt_archive_hint: Archive, compress, split and keep private files, folders and volumes
txt_compressionratio_hint: Archive's compression ratio
txt_archiving: Archiving:
txt_cl_long: Arguments seem exceeding the maximum size that can be passed by PeaZip frontend, please select less input files (i.e. select dirs instead of single files)
txt_overwrite_askbefore: Ask before overwriting (in console)
txt_associated: Associated application
txt_attributes: Attributes
txt_author: Author
txt_ren_existing: Auto rename existing files
txt_ren_extracted: Auto rename extracted files
txt_autofolder: Automatically create new folder to extract the archive in?
txt_back: Back
txt_backend: Backend binaries
txt_backupexe: Backup executable (recommended)
txt_bettercompression: better compression
txt_blogs: Blogs
txt_blowfish: Blowfish448 (64 bit blocks)
txt_bookmarks: Bookmarks
txt_browse: Browse
txt_browser: Browser
txt_aborted_error: Browsing archive stopped, it would take too much time. You can narrow the selection using search (F3) or avoiding Flat view mode (F6). You can directly extract, list or test the archive.
txt_list_browsing: Browsing
txt_archive_root: Browsing: archive's root
txt_type_description_bzip2: BZip2: quite powerful compression, average speed
txt_pw_empty: Please provide a password (or a keyfile)
txt_add_error: Cannot add/update or delete object(s). The archive is not writeable, or cannot support this operation. Editing non-canonical archive types can be enabled in Archive manager options.
txt_un7z_browse_failure: cannot browse archive
txt_list_error: Cannot list archive's content, please check if the archive is password protected or corrupted.
txt_conf_cannotsave: Cannot save configuration file, check if the path is writeable and with some free space
txt_check_hint: Check for casual data corruption; hash algorithms are suitable to detect even malicious data tampering (see the documentation)
txt_check: Checksum/hash file(s)
txt_check_select: Checksum/hash
txt_clear: Clear
txt_clearlayout: Clear layout
txt_pj_hint: Click to import task, reset changes and load up to date task definition from GUI
txt_autoclose: Never stop to inspect task report
txt_cl: command line:
txt_compare: Compare files
txt_compress: Compress
txt_compress_executable: Compress executable
txt_compress_openforwriting: Compress files open for writing
txt_compression: Compression
txt_compmanagement: Computer management
txt_pw_confirm: Confirm
txt_console: Console
txt_console_interface: Console
txt_content: Content
txt_controlpanel: Control panel
txt_convert: Convert disk to NTFS
txt_copy: Copy
txt_copyto: Copy to...
txt_create: Create
txt_create_archive: Create new archive
txt_title_create: Create archive, compress, encrypt, split...
txt_create_keyfile: Create keyfile
txt_create_folder: Create new folder
txt_create_theme: Create Theme from current settings
txt_rr: Create recovery records
txt_create_sfx: Create self-extracting archive
txt_cr_current: Current path or filter compression ratio
txt_custom: Custom
txt_type_description_custom: Custom (advanced users): enter executable name and parameters
txt_customapp: Custom application
txt_custom_parameters: Custom parameters
txt_customsize: Custom size
txt_cut: Cut
txt_datetime: Date/time
txt_default: default
txt_default_compression: default compression
txt_default_format: Default format
txt_theme_default: Default theme
txt_hard_reset_hint: Delete bookmarks file
txt_desktop: Desktop
txt_dictionary: Dictionary
txt_dirs: dir(s),
txt_dis: Disambiguation:
txt_disk_cleanup: Disk cleanup
txt_disk_defrag: Disk defrag
txt_disk_management: Disk management
txt_dispaly: Display results as
txt_displayedmnu_obj: displayed
txt_displayedobjects: Displayed items
txt_nocompress: do not compress
txt_delete: Do you want to delete selected file(s)? The operation can't be undone and files will be not recoverable from Trash
txt_wipe: Do you want to securely delete selected file(s)? The operation can't be undone and files will be not recoverable
txt_done: Done
txt_edit: Edit
txt_elapsed: elapsed:
txt_error_emptycl: Empty command line!
txt_encrypt: Encrypt
txt_encrypted: encrypted
txt_encryption: Encryption
txt_note: Enter note / description
txt_random_keys: Enter random keys
txt_random_keys_hint: Enter random keys (you not have to remember)
txt_ent: Entropy evaluation
txt_ent_tools: Move the mouse or use additional entropy sampling tools
txt_eqorlarger: Same or larger than selected object
txt_eqorrecent: Same or more recent than selected object
txt_eqorolder: Same or older than selected object
txt_eqorsmaller: Same or smaller than selected object
txt_equal: Same of selected object
txt_erase_hint: Secure delete: overwrite with random data, mask size, rename, finally delete
txt_extraction_error: Error extracting the selected object. If the archive is password protected please provide it
txt_exclude_hint: Exclude file(s), one per line; use * and ? wildcards; " and ' delimiters are not needed
txt_exclusion_recourse: Exclusion filters recurse subdirs
txt_exclusion: Exclude
txt_exe: Executable
txt_overwrite_qry: exists in destination path; overwrite with file(s) with same name from source path? (Cancel: skip copying this object)
txt_confirm_overwrite: exists; overwrite it? (no to skip)
txt_explore_outpath: Explore output path
txt_explore_path: Explore path
txt_ext: Ext:
txt_caption_extract: Extract
txt_ext_nopath: Extract (without path)
txt_ext_all: Extract all
txt_ext_allhere: Extract all here
txt_ext_allto: Extract all to
txt_extopen_custom: Extract and open with custom application
txt_extopen_with: Extract and open with...
txt_ext_disp_here: Extract displayed here
txt_ext_disp: Extract displayed object(s)
txt_ext_disp_to: Extract displayed object(s) to...
txt_ext_here: Extract here
txt_ext_sel_here: Extract selected here
txt_ext_sel: Extract selected object(s)
txt_ext_sel_to: Extract selected object(s) to...
txt_extobj: Extract the object
txt_newfoldermenu: Extract in new folder
txt_extto: Extract to...
txt_level_fast: Fast
txt_fastcompr: fast compression
txt_fastopen: Fast open routine, stop browsing extremely large archives, use filters instead
txt_level_fastest: Fastest
txt_favformats: Favorite formats shortcuts
txt_file: File
txt_filebrowser: File browser
txt_filetools: File tools
txt_files: file(s),
txt_nfiles: Files
txt_fs: Filesystem
txt_filters_recourse: filter(s) recurse subdirs
txt_filters: Filters
txt_flat: Flat (show all)
txt_list_flat: Flat view
txt_unit_floppy: Floppy disk
txt_foldername: Folder name
txt_nfolders: Folders
txt_error_input_multi: format allows a single file as input; you can use "TAR before" switch to save input in a .TAR archive before, otherwise you can chose another format. HINT: chose archive format after had selected input data: "TAR before" switch will be automatically set
txt_fwd: Forward
txt_list_found: Found
txt_free: Free
txt_free2: free
txt_name_full: Full name
txt_function: Function
txt_general: General
txt_multithreading: Generic multithreading
txt_go_browser: Go to file browser
txt_go_path: Explore path (PeaZip)
txt_guicl: GUI + Console
txt_guipealauncher: GUI
txt_graphic: Graphic's folder
txt_gridaltcolor: Grids alternate color
txt_gridrowheight: Grids row height
txt_gui: GUI
txt_type_description_gzip: GZip: fast compression
txt_here: here
txt_list_history: History
txt_homeroot: Computer/archive's root level
txt_quickbrowse_hint: If browsing is stopped the user can narrow the selection using search or filter functions; extract/list/test functions are not affected in any way.
txt_backupexe_hint: If something goes wrong and lead to a non functional result, you may recover the original executable from the automatic backup copy
txt_attach: If the mail client supports that command, the archive will be attached to a new mail
txt_images: Images
txt_include_hint: Include file(s), one per line; use * and ? wildcards; " and ' delimiters are not needed
txt_filters_hint: Inclusion and exclusion filters for 7z binary, please carefully read 7-Zip documentation to understand how those filters works
txt_inclusion_recourse: Inclusion filters recurse subdirs
txt_inclusion: Include
txt_error_function: Incorrect function requested
txt_info: Info
txt_infoall: Info on all
txt_infodisp: Info on displayed object(s)
txt_infosel: Info on selected object(s)
txt_inputinfo: Input information
txt_input_list: Input list:
txt_iop: input, output, parameters
txt_ipo: input, parameters, output
txt_input: Input
txt_integrity: Integrity check
txt_chunk_size: Invalid custom size, please correct it in a numerical value
txt_invertsel: Invert selection
txt_type_exe: is a Windows executable, do you want to run it? ("No" to try open it as archive) HINT: some executables may not properly run unless the whole archive is extracted before
txt_return_to_archive: is currently open; do you want to browse it?
txt_not_accessible: is no longer accessible
txt_type_unsupported: is not a supported archive type
txt_checkname_failed: is not a valid name.
txt_not_accessible_list: is not accessible, please check if the file list provided is correct and up to date
txt_theme_create_error: It was not possible to create the theme, try to use a name valid for a folder as theme name and to chose a writeable path
txt_theme_exists: yet exists, please provide a different path
txt_job_code: task code:
txt_job_definition_saved: Task definition successfully saved in
txt_job_success: Task successfully completed!
txt_join: Join
txt_joinfiles: Join files
txt_keyfile: Keyfile
txt_keyfile_not_found: Keyfile cannot be found or read. Please chose a different Keyfile.
txt_keyfile_notcreated: KeyFile not created
txt_larger: Larger than selected object
txt_lastused: Last used
txt_launch: Launch task
txt_layout: Layout
txt_filelist_savedas: Layout saved as
txt_level: Level
txt_license: License
txt_caption_list: List
txt_list_details: List (with details)
txt_list_all: List all
txt_list_disp: List displayed object(s)
txt_list_sel: List selected object(s)
txt_toggle_warning: Listing flat view of path's content may take long time, continue anyway?
txt_loadfile: Load file
txt_loadlayout: Load layout
txt_unit_hd: Local disk
txt_localization: Localization
txt_lpaqver: LPAQ version
txt_type_description_lpaq: LPAQ: faster version of PAQ, very good compression
txt_maininterface: Main interface
txt_maxcomp: Max compression mode
txt_level_maximum: Maximum
txt_restartrequired: May require restarting the application to be applied
txt_required_memory: MB of memory required