~ubuntu-branches/ubuntu/dapper/file-roller/dapper-updates

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY legal SYSTEM "legal.xml">
<!ENTITY appversion "2.14.0">
<!ENTITY manrevision "2.6">
<!ENTITY date "April 2006">
<!ENTITY appname "Archive Manager">
<!ENTITY app "<application>Archive Manager</application>">
<!-- Information about the entities
       The legal.xml file contains legal information, there is no need to edit the file. 
       Use the appversion entity to specify the version of the application.
       Use the manrevision entity to specify the revision number of this manual.
       Use the date entity to specify the release date of this manual.
       Use the app entity to specify the name of the application. -->]>
<!-- 
      (Do not remove this comment block.)
  Maintained by the GNOME Documentation Project
  http://developer.GNOME.org/projects/gdp
  Template version: 2.0 beta
  Template last modified Jan 30, 2002
-->
<!-- =============Document Header ============================= -->
<article id="index" lang="uk">
<!-- please do not change the id; for translations, change lang to -->
<!-- appropriate code -->
  <articleinfo> 
    <title><application>Archive Manager</application> Manual</title>
     <abstract role="description">
       <para>You can use the Archive Manager, also known as File Roller, to create, view, modify, or unpack an archive.</para>
     </abstract>
    <copyright> 
      <year>2006</year> 
      <holder>Paolo Bacchilega</holder> 
    </copyright> 
     <copyright>
        <year>2003</year>
        <year>2004</year>
        <holder>Sun Microsystems</holder> 
    </copyright>
    <copyright> 
      <year>2003</year> 
      <holder>Paolo Bacchilega</holder> 
    </copyright> 
    <copyright> 
      <year>2002</year> 
      <holder>Олександр Кирилов</holder> 
    </copyright> 

<!-- translators: uncomment this:

  <copyright>
   <year>2002</year>
   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
  </copyright>

   -->
<!-- An address can be added to the publisher information.  If a role is 
     not specified, the publisher/author is the same for all versions of the 
     document.  -->
    <publisher> 
      <publishername>Проект документування GNOME</publishername> 
    </publisher> 

      <legalnotice id="legalnotice">
         <para>Дозволяється копіювати, розповсюджувати та/або змінювати цей документ на умовах ліцензії GNU Free Documentation License (GFDL), версії 1.1 або будь-якої старшої версії, що опублікована Free Software Foundation без інваріантних розділів, тексту титульної сторінки, та тексту фінальної сторінки. Копію GFDL можна знайти <ulink type="help" url="ghelp:fdl">за адресою</ulink> або у файлі COPYING-DOCS, що постачається з цією довідкою.</para>
          <para>Ця довідка є частиною збірки документації з GNOME, що постачається на умовах ліцензіїGFDL. Якщо ви бажаєте розповсюджувати цю довідку окремо від збірки, можете це зробити додавши до довідки копію ліцензії, як описано у пункті 66 ліцензії.</para>
 
         <para>Більшість назв, що використовуються компаніями для розповсюдження їх продуктів та послуг є торговими марками. Якщо такі назви зустрічаються у документації з GNOME та учасникам проекту документування GNOME відомо, що вони є торговими марками, тоді ці назви пишуться великими літерами або починаються з великої літери.</para>
 
         <para>ДОКУМЕНТ ТА ЗМІНЕНІ ВЕРСІЇ ЦЬОГО ДОКУМЕНТУ ПОСТАЧАЮТЬСЯ НА УМОВАХ ВІЛЬНОЇ ЛІЦЕНЗІЇ ДЛЯ ДОКУМЕНТАЦІЇ GNU З ПОДАЛЬШИМ РОЗУМІННЯМ ЩО: <orderedlist><listitem><para>ДОКУМЕНТ НАДАЄТЬСЯ "ЯК Є", БЕЗ БУДЬ-ЯКИХ ГАРАНТІЇ, ЯВНИХ ЧИ НЕЯВНИХ, ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ГАРАНТІЙ ЩО ЦЕЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ ДОКУМЕНТА ВІЛЬНІ ВІД ДЕФЕКТІВ, ПРИДАТНІ ДО ПРОДАЖУ, ВІДПОВІДАЮТЬ ПЕВНІЙ МЕТІ АБО НЕ ПОРУШУЮТЬ ЧИЇСЬ ПРАВА. ВЕСЬ РИЗИК ЗА ЯКІСТЬ, ТОЧНІСТЬ, ТА ЧИННІСТЬ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНИХ ВЕРСІЙ ЛЕЖИТЬ НА ВАС.  ЯКЩО БУДЬ-ЯКИЙ ДОКУМЕНТ ЧИ ЗМІНЕНА ВЕРСІЯ БУДУТЬ ВИЗНАНІ ДЕФЕКТНИМИ У БУДЬ-ЯКОМУ ВІДНОШЕННІ, ВИ (НЕ ПОЧАТКОВИЙ УКЛАДАЧ, АВТОР АБО БУДЬ-ЯКИЙ СПІВАВТОР) БЕРЕТЕ НА СЕБЕ ВИТРАТИ ЗА БУДЬ-ЯКЕ НЕОБХІДНЕ ОБСЛУГОВУВАННЯ, РЕМОНТ ЧИ ВИПРАВЛЕННЯ. ЦЯ ВІДМОВА ВІД ГАРАНТІЙ СКЛАДАЄ ВАЖЛИВУ ЧАСТИНУ ЦІЄЇ ЛІЦЕНЗІЇ. НЕ ДОПУСКАЄТЬСЯ ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ АБО ЙОГО ЗМІНЕНОЇ ВЕРСІЇ БЕЗ ПРИЙНЯТТЯ ЦІЄЇ ВІДМОВИ; ТА</para></listitem><listitem><para>НІ ЗА ЯКИХ ОБСТАВИН ТА ЗА БУДЬ-ЯКОГО ЗАКОНОДАВСТВА, ЧИ ТО ГРОМАДЯНСЬКОЇ ВІДПОВІДАЛЬНОСТІ (ВКЛЮЧАЮЧИ ХАЛАТНІСТЬ), ДОГОВОРУ, ЧИ ЧОГОСЬ ІНШОГО, АВТОР, ПОЧАТКОВИЙ УКЛАДАЧ, БУДЬ-ЯКИЙ СПІВАВТОР, АБО ДИСТРИБ'ЮТОР ДОКУМЕНТУ ЧИ ЗМІНЕНОЇ ВЕРСІЇ ДОКУМЕНТУ, АБО БУДЬ-ЯКИЙ ПОСТАЧАЛЬНИК БУДЬ-ЯКОЇ З ЦИХ СТОРІН, НЕ НЕСЕ ВІДПОВІДАЛЬНІСТЬ ПЕРЕД БУДЬ-ЯКОЮ ОСОБОЮ ЗА БУДЬ-ЯКІ ПРЯМІ, НЕПРЯМІ, ОСОБЛИВІ, ВИПАДКОВІ, АБО ІСТОТНІ ЗБИТКИ БУДЬ-ЯКОГО ХАРАКТЕРУ ВКЛЮЧАЮЧИ, АЛЕ НЕ ОБМЕЖУЮЧИСЬ, ЗБИТКАМИ ВІД ВТРАТИ ПРЕСТИЖУ, ЗУПИНКИ РОБОТИ, ЗБОЇВ АБО НЕСПРАВНОСТЕЙ КОМП'ЮТЕРА, АБО БУДЬ-ЯКІ ІНШІ ЗБИТКИ АБО ВТРАТИ ЩО ВИНИКЛИ БЕЗВІДНОСНО АБО ВНАСЛІДОК ВИКОРИСТАННЯ ЦЬОГО ДОКУМЕНТУ ТА ЗМІНЕНИХ ВЕРСІЙ ЦЬОГО ДОКУМЕНТУ, НАВІТЬ ЯКЩО ЦІ СТОРОНИ, МОЖЛИВО, БУЛИ ПРОІНФОРМОВАНІ ПРО МОЖЛИВІСТЬ ТАКИХ ЗБИТКІВ.</para></listitem></orderedlist></para>
   </legalnotice>
  <!-- This file contains link to license for the
   documentation (GNU FDL), and other legal stuff such as "NO
   WARRANTY" statement. Please do not change any of this. -->

    <authorgroup> 
       <author> 
         <firstname>Sun</firstname>
         <surname>Команда документування GNOME</surname>
         <affiliation> 
            <orgname>Sun Microsystems</orgname>
        </affiliation>
      </author>
      <author> 
	<firstname>Paolo</firstname> 
	<surname>Bacchilega</surname> 
	<affiliation> 
	  <orgname>Проект документування GNOME</orgname> 
	</affiliation> 
      </author> 
      <author> 
	<firstname>Олександр</firstname> 
	<surname>Кирилов</surname> 
	<affiliation> 
	  <orgname>Проект документування GNOME</orgname> 
	  <address> <email>kirillov@math.sunysb.edu</email> </address> 
	</affiliation> 
      </author> 
    </authorgroup>

         <revhistory>
                <revision>
                  <revnumber>Archive Manager Manual V2.6</revnumber>
                  <date>April 2006;</date>
                  <revdescription>
                         <para role="author">Paolo Bacchilega</para>
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>

                <revision>
                  <revnumber>File Roller Manual V2.5</revnumber>
                  <date>Березень 2004</date>
                  <revdescription>
                         <para role="author">Sun команда документування GNOME</para>
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
                <revision>
                  <revnumber>Довідник з програми Менеджер архівів версії 2.4</revnumber>
                  <date>Лютий 2004</date>
                  <revdescription>
                         <para role="author">Sun команда документування GNOME</para>
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
                <revision>
                  <revnumber>Довідник з програми Менеджер архівів версії 2.3</revnumber>
                  <date>Серпень 2003</date>
                  <revdescription>
                         <para role="author">Sun команда документування GNOME</para>
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
                <revision>
                  <revnumber>Довідник з програми Менеджер архівів версії 2.2</revnumber>
                  <date>Червень 2003</date>
                  <revdescription>
                         <para role="author">Sun команда документування GNOME</para>
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
                <revision>
                  <revnumber>Довідник з програми Менеджер архівів версії 2.1</revnumber>
                  <date>Січень 2003</date>
                  <revdescription>
                         <para role="author">Paolo Bacchilega</para>                         
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
                <revision>
                  <revnumber>Довідник з програми Менеджер архівів версії 2.0</revnumber>
                  <date>Липень 2002</date>
                  <revdescription>
                         <para role="author">Олександр Кирилов</para>                         
                         <para role="publisher">Проект документування GNOME</para>
                  </revdescription>
                </revision>
         </revhistory>

    <releaseinfo>This manual describes version 2.14.0 of Archive Manager.</releaseinfo> 
    <legalnotice> 
        <title>Зворотний зв'язок</title>
        <para>To report a bug or make a suggestion regarding the <application>Archive Manager</application> application or this manual, follow the directions in the <ulink url="ghelp:gnome-feedback" type="help">GNOME Feedback Page</ulink>.</para>
<!-- Translators may also add here feedback address for translations -->
    </legalnotice>
  </articleinfo> 
  <indexterm zone="index"> 
    <primary>Менеджер архівів</primary> 
  </indexterm> 
  <indexterm zone="index"> 
    <primary>file-roller</primary> 
  </indexterm>
  <indexterm zone="index"> 
    <primary>Архівація</primary> 
  </indexterm>
  <indexterm zone="file-roller-add-files"> 
    <primary>Архіви</primary> 
    <secondary>Додавання файлів</secondary>
  </indexterm> 
  <indexterm zone="file-roller-delete-files"> 
    <primary>Архіви</primary> 
    <secondary>Видалення файлів</secondary>
  </indexterm> 
  <indexterm zone="file-roller-open"> 
    <primary>Архіви</primary> 
    <secondary>Відкривання</secondary>
  </indexterm> 
  <indexterm zone="file-roller-view"> 
    <primary>Архіви</primary> 
    <secondary>Перегляд</secondary>
  </indexterm> 
  <indexterm zone="file-roller-extract"> 
    <primary>Архіви</primary> 
    <secondary>Розпаковування</secondary>
  </indexterm> 
  <indexterm zone="file-roller-create"> 
    <primary>Архіви</primary> 
    <secondary>Створення</secondary>
  </indexterm> 

<!-- ============= Document Body ============================= -->
<!-- ============= Introduction ============================== -->
<!-- Use the Introduction section to give a brief overview of what
     the application is and what it does. -->
<sect1 id="file-roller-intro"> 
    <title>Вступ</title> 
    <para>You can use the <application>Archive Manager</application> application to create, view, modify, or unpack an archive. An archive is a file that acts as a container for other files. An archive can contain many files, folders, and subfolders, usually in compressed form.</para>
    <para><application>Archive Manager</application> provides only a graphical interface, and relies on command-line utilities such as <command>tar</command>, <command>gzip</command>, and <command>bzip2</command> for archive operations.</para>
    <para>If you have the appropriate command-line tools installed on your system, <application>Archive Manager</application> supports RPM and Stuff files, as well as the archive formats listed in the following table.</para> 
      <informaltable frame="all">
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="COLSPEC0" colwidth="50*"/>
          <colspec colname="COLSPEC1" colwidth="50*"/>
          <thead>
            <row valign="top">
              <entry colname="COLSPEC0">
                <para>Формат</para></entry>
              <entry colname="COLSPEC1" align="left">
                <para>Розширення файлу</para></entry>
            </row>
          </thead>
          <tbody>
            <row valign="top">
              <entry><para>Архів ARJ</para></entry>
              <entry align="left"><para><filename>.arj</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Enterprise-архів</para></entry>
              <entry align="left"><para><filename>.ear</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Java-архів</para></entry>
              <entry align="left"><para><filename>.jar</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів LHA</para></entry>
              <entry align="left"><para><filename>.lzh</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>RAR-архів</para></entry>
              <entry align="left"><para><filename>.rar</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Не стиснутий архів tar</para></entry>
              <entry align="left"><para><filename>.tar</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів tar стиснутий <command>bzip</command></para></entry>
              <entry align="left"><para><filename>.tar.bz</filename> або <filename>.tbz</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів tar стиснутий <command>bzip2</command></para></entry>
              <entry align="left"><para><filename>.tar.bz2</filename> або <filename>.tbz2</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів tar стиснутий <command>gzip</command></para></entry>
              <entry align="left"><para><filename>.tar.gz</filename> або <filename>.tgz</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів tar стиснутий <command>lzop</command></para></entry>
              <entry align="left"><para><filename>.tar.lzo</filename> або <filename>.tzo</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів tar стиснутий <command>compress</command></para></entry>
              <entry align="left"><para><filename>.tar.Z</filename> або <filename>.taz</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Web-архів</para></entry>
              <entry align="left"><para><filename>.war</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів PKZIP або WinZip</para></entry>
              <entry align="left"><para><filename>.zip</filename></para></entry>
            </row>
            <row valign="top">
              <entry><para>Архів Zoo</para></entry>
              <entry align="left"><para><filename>.zoo</filename></para></entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    <para>Найбільш поширений формат архіву у системах UNIX та Linux - це архів tar стиснутий <command>gzip</command>.</para>  
    <para>У системах Microsoft Windows найбільше уживані архіви, що створені <application>PKZIP</application> чи <application>WinZip</application>.</para>
<sect2 id="file-roller-intro-nonarchive">
    <title>Стиснуті не-архівні файли</title> 
    <para>Стиснутий не-архівний файл - це файл, створений програмою стискання <command>bzip</command>, <command>bzip2</command>, <command>gzip</command>, <command>lzop</command>, чи <command>compress</command>. Наприклад, <filename>file.txt.gz</filename> створюється коли ви використовуєте <command>gzip</command> для стискання <filename>file.txt</filename>.</para>
    <para>You can use <application>Archive Manager</application> to create, open and extract a compressed non-archive file.</para> 
</sect2>
</sect1>

<!-- ============= Getting Started =========================== -->
<sect1 id="file-roller-get-start">
         <title>Початок роботи</title>
           <para>This section provides information on how to start <application>Archive Manager</application>, and describes the <application>Archive Manager</application> user interface.</para>

<!-- ============= To Start File Roller ============================ -->
         <sect2 id="file-roller-to-start">
                <title>To Start <application>Archive Manager</application></title>
                <para>You can start <application>Archive Manager</application> in the following ways:</para>
                <variablelist>
                <varlistentry>
                <term>з меню <guimenu>Програми</guimenu></term>
                <listitem>
                <para>Choose <menuchoice><guisubmenu>Accessories</guisubmenu><guimenuitem>Archive Manager</guimenuitem></menuchoice>.</para>
                </listitem>
                </varlistentry>
                <varlistentry>
                <term>з командного рядка</term>
                <listitem>
                <para>Виконайте наступну команду: <command>file-roller</command></para>
                </listitem>
                </varlistentry>
                </variablelist>
        </sect2>

         <sect2 id="file-roller-when-start">
                <title>When You Start <application>Archive Manager</application></title>
                <para>When you start <application>Archive Manager</application>, the following window is displayed:</para>

                <figure id="file-roller-FIG-main-window">
                  <title><application>Archive Manager</application> Window</title>
                  <screenshot>
                         <mediaobject>
                                <imageobject>
                                  <imagedata fileref="figures/file-roller_main_window.png" format="PNG"/>
                                         </imageobject>
                                <textobject> <phrase>Показано вікно програми Менеджер архівів.</phrase>
                                </textobject>
                        </mediaobject>
                  </screenshot>
                </figure>

                <para>The <application>Archive Manager</application> window contains the following elements:</para>
                <variablelist>
                  <varlistentry> <term>Панель меню</term>
                         <listitem>
                                <para>The menus on the menubar contain all of the commands that you need to work with archives in <application>Archive Manager</application>.</para>
                         </listitem>
                  </varlistentry>
                  <varlistentry> <term>Панель інструментів</term>
                         <listitem>
                                <para>The toolbar contains a subset of the commands that you can access from the menubar. <application>Archive Manager</application> displays the toolbar by default. To hide the toolbar, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Toolbar</guimenuitem></menuchoice>. To show the toolbar, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Toolbar</guimenuitem></menuchoice> again.</para>
                         </listitem>
                  </varlistentry>
                  <varlistentry> <term>Панель тек</term>
                         <listitem>
                                <para>The folderbar enables you to navigate among folders within an archive. <application>Archive Manager</application> displays the folderbar only in folder view. See <xref linkend="file-roller-view-type-folder"/> for more information.</para>
                         </listitem>
                  </varlistentry>
                  <varlistentry> <term>Область відображення</term>
                         <listitem>
                                <para>Область відображення показує вміст архіву.</para>
                         </listitem>
                  </varlistentry>
                  <varlistentry> <term>Рядок стану</term>
                         <listitem>
                                <para>The statusbar displays information about current <application>Archive Manager</application> activity and contextual information about the archive contents. <application>Archive Manager</application> displays the statusbar by default. To hide the statusbar, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Statusbar</guimenuitem></menuchoice>. To show the statusbar, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Statusbar</guimenuitem></menuchoice> again.</para>
                         </listitem>
                  </varlistentry>
                </variablelist>
                <para>When you right-click in the <application>Archive Manager</application> window, the application displays a popup menu. The popup menu contains the most common contextual archive commands.</para>

         <sect3 id="file-roller-bookmarks">
                <title>Закладки</title>
      <para>Several <application>Archive Manager</application> dialogs contain the following components, which enable you to bookmark frequently accessed folders:</para>
        <variablelist>
          <varlistentry>
            <term>Закладки</term>
            <listitem>
              <para>Використовуйте цей список для відкривання теки з закладкою.</para>
              <para><application>Archive Manager</application> provides the following default bookmarks:</para>
              <informaltable frame="all">
                <tgroup cols="2" colsep="1" rowsep="1">
                  <colspec colname="COLSPEC0" colwidth="50*"/>
                  <colspec colname="COLSPEC1" colwidth="50*"/>
                  <thead>
                    <row valign="top">
                      <entry colname="COLSPEC0">
                        <para>Закладка</para></entry>
                      <entry colname="COLSPEC1" align="left"> 
                        <para>Розташування</para></entry>
                    </row>
                  </thead>
                  <tbody>
                    <row valign="top">               
                      <entry><para><guilabel>Домашній каталог</guilabel></para></entry>
                      <entry><para><filename>$HOME</filename></para></entry>
                    </row>
                    <row valign="top">               
                      <entry><para><guilabel>Стільниця</guilabel></para></entry>
                      <entry><para><filename>$HOME/Desktop</filename></para></entry>
                    </row>
                    <row valign="top">               
                      <entry><para><guilabel>Файлова система</guilabel></para></entry>
                      <entry><para><filename>/</filename></para></entry>
                    </row>
                  </tbody>
                </tgroup>
              </informaltable>
              <note>
                <para>$HOME is the home directory specified in the <filename>/etc/passwd</filename> file. <application>Archive Manager</application> always uses this value, even if the user resets the value of $HOME after login.</para>
              </note>
            </listitem>
          </varlistentry>
          <varlistentry>
            <term>Файли та теки</term>
            <listitem><para>Використовуйте цей список для відкривання підтеки у теці із закладкою, або для вибору файла чи теки.</para></listitem>
          </varlistentry>
          <varlistentry>
            <term><guibutton>Додати</guibutton></term>
            <listitem><para>Натисніть на цю кнопку, щоб додати нову закладку до списку закладок.</para></listitem>
          </varlistentry>
          <varlistentry>
            <term><guibutton>Видалити</guibutton></term>
            <listitem><para>Натисніть на цю кнопку, щоб видалити закладку зі списку закладок.</para></listitem>
          </varlistentry>
        </variablelist>
     </sect3>
   </sect2>
</sect1>



<!-- ======= Working with archives ============= --> 

<sect1 id="file-roller-working">
      <title>Робота з архівами</title>
      <para>When you use <application>Archive Manager</application> to work with an archive, all changes are saved to disk immediately. For example, if you delete a file from an archive, <application>Archive Manager</application> deletes the file as soon as you click <guibutton>OK</guibutton>. This behavior is different to that of most applications, which save the changes to disk only when you quit the application or select <guimenuitem>Save</guimenuitem> in the menu.</para>
      <para>Якщо архів дуже великий, або ваша система надто повільна, деякі дії можуть виконуватись тривалий час. Для скасування поточної дії натисніть клавішу <keycap>Esc</keycap>. Або ж, виберіть <menuchoice><guimenu>Вигляд</guimenu><guimenuitem>Зупинити</guimenuitem></menuchoice>, чи натисніть <guibutton>Зупинити</guibutton> на панелі інструментів.</para>      
      <para>In <application>Archive Manager</application>, you can perform the same action in several ways. For example, you can open an archive in the following ways: <informaltable frame="all"><tgroup cols="2" colsep="1" rowsep="1"><colspec colname="COLSPEC0" colwidth="50*"/><colspec colname="COLSPEC1" colwidth="50*"/><thead><row valign="top"><entry colname="COLSPEC0"><para>Компонент інтерфейсу</para></entry><entry colname="COLSPEC1" align="left"><para>Дія</para></entry></row></thead><tbody><row valign="top"><entry><para>Вікно</para></entry><entry><para>Drag an archive into the <application>Archive Manager</application> window from another application such as a file manager.</para></entry></row><row valign="top"><entry><para>Панель меню</para></entry><entry><para>Виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Відкрити</guimenuitem></menuchoice>.</para><para>If you have recently opened the archive, it will be listed directly in the <menuchoice><guimenu>Archive</guimenu></menuchoice> menu.</para></entry></row><row valign="top"><entry><para>Панель інструментів</para></entry><entry><para>Натисніть на кнопку <guibutton>Відкрити</guibutton> у панелі інструментів.</para><para>If you have recently opened the archive, click on the down arrow near the <guibutton>Open</guibutton> toolbar button.</para></entry></row><row valign="top"><entry><para>Контекстне меню</para></entry><entry><para>Клацніть правою кнопкою миші на архіві, потім у контекстному меню виберіть <guilabel>Відкрити</guilabel>.</para></entry></row><row valign="top"><entry><para>Комбінація клавіш</para></entry><entry><para>Натисніть <keycombo><keycap>Ctrl</keycap><keycap>O</keycap></keycombo>.</para></entry></row></tbody></tgroup></informaltable></para>
      <para>У цьому документі описується робота з меню.</para>

    <sect2 id="file-roller-pattern">
      <title>Шаблони назв файлів</title>
      <para><application>Archive Manager</application> enables you to add, extract, or delete several files at once. To apply an action to all files that match a certain pattern, enter the pattern in the text box. The pattern can include standard wildcard symbols such as <keycap>*</keycap> to match any string, and <keycap>?</keycap> to match any single symbol. You can enter several patterns separated by semicolons. <application>Archive Manager</application> applies the action to all files that match at least one of the patterns. The examples in the following table show how to use filename patterns to select files.</para>
      <informaltable frame="all">
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="COLSPEC0" colwidth="50*"/>
          <colspec colname="COLSPEC1" colwidth="50*"/>
          <thead>
            <row valign="top">
              <entry colname="COLSPEC0">
                <para>Шаблон</para></entry>
              <entry colname="COLSPEC1" align="left"> 
                <para>Файли, що відповідають</para></entry>
            </row>
          </thead>
          <tbody>
            <row valign="top">               
              <entry><para><filename>*</filename></para></entry>
              <entry align="left"><para>Усі файли</para></entry>
            </row>
            <row valign="top">               
              <entry><para><filename>*.tar*</filename></para></entry>
              <entry align="left"><para>Усі файли з розширенням <filename>tar</filename>, включно з тими, у яких за розширенням <filename>tar</filename> йде будь-яка послідовність символів, наприклад <filename>filename.tar.gz</filename></para></entry>
            </row>
            <row valign="top">               
              <entry><para><filename>*.jpg; *.jpeg</filename></para></entry>
              <entry align="left"><para>Усі файли з розширенням <filename>jpg</filename> та усі файли з розширенням <filename>jpeg</filename></para></entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>

<!-- ======= To open an archive ============= --> 

<sect2 id="file-roller-open">
      <title>Відкривання архіву</title>
      <para>Щоб відкрити архів, виконайте наступні кроки: <orderedlist><listitem><para>Для відображення діалогового вікна <guilabel>Відкрити</guilabel> виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Відкрити</guimenuitem></menuchoice>.</para></listitem><listitem><para>Виберіть архів, який бажаєте відкрити.</para></listitem><listitem><para>Натисніть на кнопку <guibutton>Відкрити</guibutton>.</para></listitem></orderedlist></para>
      <para><application>Archive Manager</application> automatically determines the archive type, and displays: <itemizedlist><listitem><para>Назву архіву у заголовку вінка</para></listitem><listitem><para>Вміст архіву в області відображення</para></listitem><listitem><para>У рядку файлів - загальну кількість файлів у архіві, розмір архіву після розтиснення</para></listitem></itemizedlist></para>
      <para>To open another archive, choose <menuchoice><guimenu>Archive</guimenu><guimenuitem>Open</guimenuitem></menuchoice> again. <application>Archive Manager</application> opens each archive in a new window. To open another archive in the same window, you must first choose <menuchoice><guimenu>Archive</guimenu><guimenuitem>Close</guimenuitem></menuchoice> to close the current archive, then choose <menuchoice><guimenu>Archive</guimenu><guimenuitem>Open</guimenuitem></menuchoice>.</para>
      <para>If you try to open an archive that was created in a format that <application>Archive Manager</application> does not recognize, the application displays an error message. See <xref linkend="file-roller-intro"/> for a list of supported formats.</para>
  </sect2>

<!-- ======= Selecting files in an archive  ============= --> 
    <sect2 id="file-roller-select-files">
      <title>Виділяння файлів у архіві</title>
    <para>Для виділення файлів у архіві, виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Виділити все</guimenuitem></menuchoice>.</para>
      <para>Щоб зняти виділення з файлів архіву, виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Зняти виділення</guimenuitem></menuchoice>.</para>
    </sect2>

  <!-- =========== Extracting Files From an Archive ==================== -->

<sect2 id="file-roller-extract"> 
    <title>Розпаковування файлів з архіву</title> 
    <para>Для розпаковування файлів з відкритого архіву, виконайте наступні кроки: <orderedlist><listitem><para>Виділіть усі файли, які треба розпакувати.</para></listitem><listitem><para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Розпакувати у</guimenuitem></menuchoice> для відображення діалогового вікна <guilabel>Розпакувати</guilabel>.</para></listitem><listitem><para>Select the folder where <application>Archive Manager</application> extracts the files from the <guilabel>Extract in folder</guilabel> drop-down list. If the folder is not present in the list, choose <guilabel>Other...</guilabel> to select the folder from the <guilabel>Destination folder</guilabel> dialog, then click on <guibutton>Open</guibutton>.</para></listitem><listitem><para>Вкажіть необхідні параметри розпаковування. Додаткову інформацію про параметри розпаковування дивіться у <xref linkend="file-roller-extract-options"/>.</para></listitem><listitem><para>Натисніть <guibutton>Розпакувати</guibutton>.</para><note><para>If all of the files in the archive are protected by a password, and you have not specified the password, <application>Archive Manager</application> displays an error dialog.</para><para>If some but not all of the files in the archive are protected by a password, and you have not specified the password, <application>Archive Manager</application> does not display an error dialog. However, <application>Archive Manager</application> extracts only the unprotected files to the new archive.</para><para>Додаткову інформацію про паролі дивіться у <xref linkend="file-roller-encrypt-files"/>.</para></note></listitem></orderedlist></para>
      <para><application>Archive Manager</application> also provides ways of extracting files from an archive in a file manager window, without opening a <application>Archive Manager</application> window. See <xref linkend="file-roller-fmgr"/> for more information.</para>
    <para>Операція розпаковування створює <emphasis>копію</emphasis> вказаних файлів з архіву. Розпаковані файли мають такі ж самі права доступу та час зміни як і оригінальні файли, які були додані у архів.</para>
    <para>The Extract operation does not change the contents of the archive. For information on how to delete files from an archive, see <xref linkend="file-roller-delete-files"/>.</para>
</sect2>
    
<!-- ======= Closing the Archive ============= --> 
<sect2 id="file-roller-archive-close">
  <title>Закривання архіву</title>
  <para>To close the current archive but not the <application>Archive Manager</application> window, choose <menuchoice><guimenu>Archive</guimenu><guimenuitem>Close</guimenuitem></menuchoice>.</para>
  <para>To close the current archive and the current <application>Archive Manager</application> window, choose <menuchoice><guimenu>Archive</guimenu><guimenuitem>Quit</guimenuitem></menuchoice>.</para>
</sect2>
</sect1>


  <!-- =============  Creating Archives ============================= -->
<sect1 id="file-roller-creating"> 
    <title>Створення архіву</title> 
    <para>In addition to opening existing archives, you can also create new archives with <application>Archive Manager</application>.</para>
<sect2 id="file-roller-create"> 
    <title>Створення архіву</title> 
    <para>Для створення архіву виконайте наступні кроки: <orderedlist><listitem><para>Виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Створити</guimenuitem></menuchoice>, відкриється вікно <guilabel>Створити</guilabel>.</para></listitem><listitem><para>Specify the folder where <application>Archive Manager</application> places the new archive clicking on the entry in the <guilabel>Save in folder</guilabel> drop-down list. If the folder is not present in list, click on <guilabel>Browse for other folders</guilabel>, and select the folder. Alternatively, enter the path in the <guilabel>Name</guilabel> text box.</para></listitem><listitem><para>Enter the name of the new archive, including the file extension, in the <guilabel>Name</guilabel> text box.</para></listitem><listitem><para>Click <guibutton>New</guibutton>. <application>Archive Manager</application> creates an empty archive, but does not yet write the archive to disk.</para></listitem><listitem><para>Додайте файли у новий архів як описано у <xref linkend="file-roller-add-files"/>. <note><para><application>Archive Manager</application> writes a new archive to disk only when the archive contains at least one file. If you create a new archive and quit <application>Archive Manager</application> before you add any files to the archive, <application>Archive Manager</application> deletes the archive.</para></note></para></listitem></orderedlist></para>
</sect2>

    <!-- ======= Adding files to an archive  ============= --> 
  <sect2 id="file-roller-add-files">
    <title>Додавання файлів до архіву</title>
    <para>Для додавання файлів у архів виконайте наступні кроки: <orderedlist><listitem><para>Вирішіть куди ви бажаєте додавати файли, потім відкрийте цю теку у архіві.</para></listitem><listitem><para>Choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Add Files</guimenuitem></menuchoice> to display the <guilabel>Add Files</guilabel> dialog.</para></listitem><listitem><para>Select the files that you want to add.</para></listitem><listitem><para>Click <guibutton>Add</guibutton>. <application>Archive Manager</application> adds the files to the current folder in the archive.</para></listitem></orderedlist></para>
    <para>You cannot add folders to the archive with the <guilabel>Add Files</guilabel> dialog. To add a folder see <xref linkend="file-roller-add-folder"/>.</para>
    <para>The <guilabel>Add Files</guilabel> dialog provides the <guilabel>Add only if newer</guilabel> option, see <xref linkend="file-roller-add-options"/> for more information on this option.</para>
    <para>You can also add files to an archive in a file manager window, without opening an <application>Archive Manager</application> window. See <xref linkend="file-roller-fmgr"/> for more information.</para>
    <para>The Add operation adds a <emphasis>copy</emphasis> of the specified files or folders to the archive. <application>Archive Manager</application> does not remove the original files, which remain unchanged in the file system. The copies that are added to the archive have the same permissions and modification date as the original files.</para>
    </sect2>

<!-- ======= Adding files - Adding folder  ============= --> 
    <sect2 id="file-roller-add-folder">
      <title>To Add a Folder to an Archive</title>
    <para>To add a folder to an archive, perform the following steps: <orderedlist><listitem><para>Вирішіть куди ви бажаєте додавати файли, потім відкрийте цю теку у архіві.</para></listitem><listitem><para>Choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Add a Folder</guimenuitem></menuchoice> to display the <guilabel>Add a Folder</guilabel> dialog.</para></listitem><listitem><para>Select the folder that you want to add.</para></listitem><listitem><para>Click <guibutton>Add</guibutton>. <application>Archive Manager</application> adds the folder to the current folder in the archive.</para></listitem></orderedlist></para>
    <para>The <guilabel>Add a Folder</guilabel> dialog provides several advanced options. See <xref linkend="file-roller-add-options"/> for more information.</para>
    </sect2>

  <!-- ======= Converting an Archive to Another Format ============= --> 
  <sect2 id="file-roller-convert-archive">
    <title>Зміна формату архіву</title>
    <para>Для перетворення архіву у інший формат та збереження файлу з новою назвою, виконайте наступні кроки:</para>
    <orderedlist>
      <listitem>
        <para>Відкрийте архів, який бажаєте перетворити.</para>
      </listitem>
      <listitem>
        <para>Виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Зберегти як</guimenuitem></menuchoice>, відкриється вікно <guilabel>Збереження</guilabel>.</para>
      </listitem>
      <listitem>
        <para>Enter the new archive name in the <guilabel>Name</guilabel> text box.</para>
      </listitem>
      <listitem>
        <para>Select the new format from the <guilabel>Archive type</guilabel> drop-down list. Alternatively, enter the filename extension in the <guilabel>Name</guilabel> text box, and select <guilabel>Automatic</guilabel> from the <guilabel>Archive type</guilabel> drop-down list.</para>
      </listitem>
      <listitem>
        <para>Натисніть <guibutton>Зберегти</guibutton>.</para>
        <note>
          <para>If all of the files in the archive are protected by a password, and you have not specified the password, <application>Archive Manager</application> displays an error dialog.</para>
          <para>If some but not all of the files in the archive are protected by a password, and you have not specified the password, <application>Archive Manager</application> does not display an error dialog. However, <application>Archive Manager</application> copies only the unprotected files to the new archive.</para>
          <para>Додаткову інформацію про паролі дивіться у <xref linkend="file-roller-encrypt-files"/>.</para>
        </note>
      </listitem>
    </orderedlist>
  </sect2>
</sect1>

<!-- ======= Operations on Archive Contents ============= --> 
<sect1 id="file-roller-modify-contents">
  <title>Зміна вмісту архіву</title>
  <para>Змінити вміст архіву можна кількома шляхами.</para>

<!-- ======= Encrypting files in an archive  ============= --> 
    <sect2 id="file-roller-encrypt-files">
      <title>Шифрування файлів у архіві</title>
    <para>При необхідності можна зашифрувати додані у архів файли.</para>
      <para>Якщо формат архіву підтримує шифрування, ви можете вказати пароль для шифрування файлів, що додаються до архіву. Наразі, шифрування підтримується лише для архівів типу <filename>.zip</filename> та <filename>.arj</filename>.</para>
     <para>Для вказування паролю шифрування виконайте наступні кроки:</para>
       <orderedlist>
          <listitem><para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Пароль</guimenuitem></menuchoice>, відкриється вікно <guilabel>Пароль</guilabel>.</para></listitem> 
<listitem><para>Введіть пароль у текстовому полі <guilabel>Пароль</guilabel>.</para></listitem>
<listitem><para>Натисніть <guibutton>Гаразд</guibutton>.</para></listitem>
       </orderedlist>
    <para><application>Archive Manager</application> uses the password to encrypt the files that you add to the current archive, and to decrypt the files that you extract from the current archive. <application>Archive Manager</application> deletes the password when you close the archive.</para>
      <para>Як перевірити чи містить архів шифровані файли описано у <xref linkend="file-roller-extra-info"/>.</para>
      <note>
      <para>Алгоритм шифрування, що реалізовано в утилітах архівації слабкий, та не є безпечним. Якщо потрібна конфіденційність, користуйтесь спеціальними утилітами шифрування, наприклад <ulink url="http://www.gnupg.org" type="http">GNU Privacy Guard</ulink>.</para>
      </note>
    </sect2>

<!-- ======= Renaming files in an archive  ============= --> 
  <sect2 id="file-roller-rename-files">
    <title>Перейменування архіву</title>
    <para>Для перейменування файлів у архіві виконайте наступні дії:</para>
      <orderedlist>
        <listitem>
          <para>Виберіть файл, який треба перейменувати.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Перейменувати</guimenuitem></menuchoice>, відкриється діалогове вікно <guilabel>Перейменування</guilabel>.</para>
        </listitem>
        <listitem>
          <para>Введіть нову назву у текстовому полі <guilabel>Нова назва файлу</guilabel>.</para>
        </listitem>
        <listitem>
          <para>Натисніть <guibutton>Перейменувати</guibutton>.</para>
        </listitem>
      </orderedlist>
  </sect2>

<!-- ======= Copying files in an archive  ============= --> 
  <sect2 id="file-roller-copy-files">
    <title>Копіювання файлів у архів</title>
    <para>Для копіювання файлів у архів виконайте наступні кроки:</para>
      <orderedlist>
        <listitem>
          <para>Виберіть файли, які треба скопіювати.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Копіювати</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Відкрийте місце, куди скопіювати файли.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Вставити</guimenuitem></menuchoice>.</para>
        </listitem>
      </orderedlist>
  </sect2>

<!-- ======= Moving files in an archive  ============= --> 
  <sect2 id="file-roller-move-files">
    <title>Переміщення файлів у архів</title>
    <para>Для переміщення файлів у архів виконайте наступні дії:</para>
      <orderedlist>
        <listitem>
          <para>Виділіть файли, які треба перемістити.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Вирізати</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Відкрийте місце, куди перемістити файли.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Вставити</guimenuitem></menuchoice>.</para>
        </listitem>
      </orderedlist>
  </sect2>

<!-- ======= Deleting files from an archive  ============= --> 
  <sect2 id="file-roller-delete-files">
    <title>Видалення файлів з архіву</title>
    <para>Для видалення файлів з архіву виконайте наступні кроки:</para>
      <orderedlist>
        <listitem>
          <para>Виділіть файли, які треба видалити.</para>
        </listitem>
        <listitem>
          <para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Видалити</guimenuitem></menuchoice>, відкриється вікно <guilabel>Видалення</guilabel>.</para>
        </listitem>
        <listitem>
          <para>Виберіть один з варіантів видалення:</para>
          <variablelist>
            <varlistentry>
              <term><guilabel>Усі файли</guilabel></term>
              <listitem>
                <para>Видаляє усі файли з архіву.</para>
              </listitem>
            </varlistentry>
            <varlistentry>
              <term><guilabel>Виділені файли</guilabel></term>
              <listitem>
                <para>Видаляє виділені файли з архіву.</para>
              </listitem>
            </varlistentry>
            <varlistentry>
              <term><guilabel>Файли</guilabel></term>
              <listitem>
                <para>Виділяє з архіву усі файли, що відповідають вказаному шаблону. Додаткову інформацію про файлові шаблони дивіться <xref linkend="file-roller-pattern"/>.</para>
              </listitem>
            </varlistentry>
          </variablelist>
        </listitem>
        <listitem>
          <para>Натисніть <guibutton>Гаразд</guibutton>.</para>
        </listitem>
      </orderedlist>
  </sect2>

</sect1>


<!-- ======= Viewing an archive ============= --> 
<sect1 id="file-roller-view">
  <title>Перегляд архівів</title>
  <para><application>Archive Manager</application> enables you to view several aspects of an archive.</para>

<!-- ======= Archive Properties ============= --> 
    <sect2 id="file-roller-view-archive-properties">
      <title>Перегляд властивостей архіву</title>
      <para>Для перегляду властивостей архіву виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Властивості</guimenuitem></menuchoice>, відкриється діалогове вікно <guilabel>Властивості</guilabel>. Вікно <guilabel>Властивості</guilabel> відображає наступні відомості про архів: <variablelist><varlistentry><term><guilabel>Назва</guilabel></term><listitem><para>Назва архіву.</para></listitem></varlistentry><varlistentry><term><guilabel>Шлях</guilabel></term><listitem><para>Розташування архіву у файловій системі.</para></listitem></varlistentry><varlistentry><term><guilabel>Змінено</guilabel></term><listitem><para>Дата й час останньої зміни архіву.</para></listitem></varlistentry><varlistentry><term><guilabel>Archive size</guilabel></term><listitem><para>The size of the archive contents when compressed.</para></listitem></varlistentry><varlistentry><term><guilabel>Content size</guilabel></term><listitem><para>The size of the archive contents when uncompressed. This information is also available in the statusbar.</para></listitem></varlistentry><varlistentry><term><guilabel>Compression ratio</guilabel></term><listitem><para>The compression ratio is a value used to describe the reduction in size of the data. For example a compression ratio of 5 means that the compressed archive is 1/5th the size of the original data.</para></listitem></varlistentry><varlistentry><term><guilabel>Кількість файлів</guilabel></term><listitem><para>Кількість файлів у архіві.</para></listitem></varlistentry></variablelist></para>
    </sect2>
 

<!-- ======= Archive Contents ============= --> 
    <sect2 id="file-roller-view-archive-contents">
      <title>Перегляд вмісту архіву</title>

      <para><application>Archive Manager</application> displays the archive contents in the main window as a file list with the following columns: <variablelist><varlistentry><term><guilabel>Назва</guilabel></term><listitem><para>Назва файлу чи теки у архіві.</para></listitem></varlistentry><varlistentry><term><guilabel>Розмір</guilabel></term><listitem><para>Розмір файлу, у розпакованому стані. Для тек поле <guilabel>Розмір</guilabel> - порожнє. Спосіб відображення розміру файлу у стиснутому стані описано у <xref linkend="file-roller-extra-info"/>.</para></listitem></varlistentry><varlistentry><term><guilabel>Тип</guilabel></term><listitem><para>Тип файлу. Для тек поле <guilabel>Тип</guilabel> має значення <literal>Тека</literal>.</para></listitem></varlistentry><varlistentry><term><guilabel>Дата зміни</guilabel></term><listitem><para>Дата останньої зміни файлу. Для тек поле <guilabel>Дата зміни</guilabel> - порожнє.</para></listitem></varlistentry><varlistentry><term><guilabel>Розташування</guilabel></term><listitem><para>Шлях до файлу в середині архіву. Для тек поле <guilabel>Дата зміни</guilabel> - порожнє.</para></listitem></varlistentry></variablelist></para>
      <para>If another program has modified the archive since <application>Archive Manager</application> opened the archive, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Reload</guimenuitem></menuchoice> to reload the archive contents from disk.</para>
      <para>For information on how to customize the way that <application>Archive Manager</application> displays the archive contents, see <xref linkend="file-roller-archive-custom"/>.</para>
      <para>Для більш складних завдань користуйтесь встановленими у системі програмами. Докладніше про це у <xref linkend="file-roller-view-archive-file"/>.</para>

    </sect2>

  <!-- =============  Viewing a File in an Archive ==================== -->
  <sect2 id="file-roller-view-archive-file"> 
    <title>Перегляд файлу з архіву</title> 
    <para>Для перегляду файлу з архіву виконайте наступні кроки: <orderedlist><listitem><para>Виділіть файл.</para></listitem><listitem><para>Виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Переглянути файл</guimenuitem></menuchoice>.</para></listitem></orderedlist></para>
    <para><application>Archive Manager</application> uses information from the <guilabel>File Types and Programs</guilabel> section of Advanced Desktop Preferences to automatically determine the appropriate application for the file type, and then launches that application. If <application>Archive Manager</application> cannot determine the appropriate application, <application>Archive Manager</application> displays the <guilabel>Open Files</guilabel> dialog to let you choose an application, as described below.</para>
    <para>You can use an application specified by you, rather than the default application, to view a file. To use an external application to open a file, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Open Files</guimenuitem></menuchoice>. <application>Archive Manager</application> displays the <guilabel>Open Files</guilabel> dialog, which lists all of the applications that can open files of the specified type. To select one of the applications, click on the application name and then click <guibutton>Open</guibutton>. Alternatively, enter the application name in the <guilabel>Application</guilabel> text box and then click <guibutton>Open</guibutton> to launch the application of your choice.</para>
     <note>
      <para>You cannot use <application>Archive Manager</application> to change a file. If you use an application to open a file within a <application>Archive Manager</application> archive and make any changes to the opened file, <application>Archive Manager</application><emphasis>does not</emphasis> save the changes in the archive, even if you click <guibutton>Save</guibutton> in the application. <application>Archive Manager</application> creates a temporary copy of the file, and then passes the temporary copy to the file-editing application. When you close the file-editing application, <application>Archive Manager</application> deletes the temporary copy of the file and all changes are lost.</para>
      <para>To edit a file in a <application>Archive Manager</application> archive and save your changes in the archive: <orderedlist><listitem><para><link linkend="file-roller-extract">Розпакуйте</link> файл у тимчасовий каталог.</para></listitem><listitem><para>Відредагуйте створений у кроці №1 файл, потім збережіть зміни.</para></listitem><listitem><para><link linkend="file-roller-add-files">Додайте</link> відредагований файл назад у архів, тобто, перезапишіть оригінальну версію у архіві.</para></listitem></orderedlist></para>
    </note>
  </sect2>
</sect1>
    
<!-- ======= Customizing the Archive Display ============= --> 
<sect1 id="file-roller-archive-custom">
  <title>Налаштовування відображення архіву</title>
  <para>You can customize the way that <application>Archive Manager</application> displays the archive contents, as follows:</para>
  <itemizedlist>
    <listitem>
      <para>Перемикаючись між переглядом списку файлів чи переглядом теки. Докладніше про це у <xref linkend="file-roller-view-type"/>.</para>
    </listitem>
    <listitem>
      <para>Вказуючи порядок відображення списку. Докладніше про це у <xref linkend="file-roller-view-sort"/>.</para>
    </listitem> 
    <listitem>
      <para>Відображаючи додаткові подробиці про вміст архіву. Докладніше про це у <xref linkend="file-roller-extra-info"/>.</para>
    </listitem> 
  </itemizedlist>
  <para><application>Archive Manager</application> updates the display immediately, when you make any of the above customizations.</para>

  <sect2 id="file-roller-view-type">
    <title>Встановлення типу перегляду</title>
    <para>Якщо архів містить теки, ви можете переглядати архів або <link linkend="file-roller-view-type-folder">у вигляді тек</link>, або <link linkend="file-roller-view-type-file">у вигляді списку файлів</link>.</para>

    <sect3 id="file-roller-view-type-folder">
      <title>Перегляд тек</title>
      <para><application>Archive Manager</application> displays the archive contents in folder view by default. To explicitly select folder view, choose <menuchoice><guimenu>View</guimenu><guimenuitem>View as a Folder</guimenuitem></menuchoice>.</para>
      <para>In folder view, <application>Archive Manager</application> shows folders in the same way as a file manager shows folders. That is, <application>Archive Manager</application> indicates folders in the display area with a folder icon and the folder name. To view the contents of a folder, double-click on the folder name.</para>
      <para>The folderbar, which <application>Archive Manager</application> displays only in folder view, contains the components described in the following table.</para>
      <informaltable frame="all">
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="COLSPEC0" colwidth="50*"/>
          <colspec colname="COLSPEC1" colwidth="50*"/>
          <thead>
            <row valign="top">
              <entry colname="COLSPEC0">
                <para>Компонент</para></entry>
              <entry colname="COLSPEC1">
                <para>Опис</para></entry>
            </row>
          </thead>
          <tbody>
            <row valign="top">
              <entry>
                <para>
                  <inlinemediaobject>
                    <imageobject>
                      <imagedata fileref="figures/file-roller_leftarrow.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Показано значок для переходу назад у історії адрес.</phrase>
                    </textobject>
                  </inlinemediaobject>
                </para>
              </entry>
              <entry>
                <para>Натисніть на цю кнопку для переходу назад у історії адрес.</para>
              </entry>
            </row>
            <row valign="top">
              <entry>
                <para>
                  <inlinemediaobject>
                    <imageobject>
                      <imagedata fileref="figures/file-roller_rightarrow.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Показано значок для переходу вперед у списку історії адрес.</phrase>
                    </textobject>
                  </inlinemediaobject>
                </para>
              </entry>
              <entry>
                <para>Натисніть на цю кнопку для переходу вперед у списку історії адрес.</para>
              </entry>
            </row>
            <row valign="top">
              <entry>
                <para>
                  <inlinemediaobject>
                    <imageobject>
                      <imagedata fileref="figures/file-roller_uparrow.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Показано значок для переходу у теку, розташовану рівнем вище.</phrase>
                    </textobject>
                  </inlinemediaobject>
                </para>
              </entry>
              <entry>
                <para>Натисніть на цю кнопку, щоб перейти у теку, розташовану рівнем вище.</para>
              </entry>
            </row>
            <row valign="top">
              <entry>
                <para>
                  <inlinemediaobject>
                    <imageobject>
                      <imagedata fileref="figures/file-roller_home.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Показано значок для відкривання кореневої теки архіву.</phrase>
                    </textobject>
                  </inlinemediaobject>
                </para>
              </entry>
              <entry>
                <para>Натисніть на цю кнопку для відкривання кореневої теки архіву.</para>
              </entry>
            </row>
            <row valign="top">
              <entry>
                <para>
                  <guilabel>Розташування</guilabel>
                </para>
              </entry>
              <entry>
                <para>Це поле відображає повний шлях у архіві до поточної теки.</para>
                <para>To change to a different level in the folder tree, type the new location in the <guilabel>Location</guilabel> text box then press <keycap>Return</keycap>. <application>Archive Manager</application> displays the contents of the new location.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect3>

    <sect3 id="file-roller-view-type-file">
      <title>Перегляд файлів</title>
      <para>Щоб вибрати перегляд файлів, виберіть <menuchoice><guimenu>Вигляд</guimenu><guimenuitem>Показувати список файлів</guimenuitem></menuchoice>.</para>
      <para>In file view, <application>Archive Manager</application> displays all files in the archive, including files from subfolders, in a single list.</para>
    </sect3>

  </sect2>

  <sect2 id="file-roller-view-sort">
    <title>Сортування списку файлів</title>
    <para>Файли можна сортувати за назвою, розміром, типом, часом зміни, чи шляхами.</para>
    <para>Щоб вказати порядок сортування, виберіть <menuchoice><guimenu>Вигляд</guimenu><guisubmenu>Сортувати файли</guisubmenu></menuchoice> та вкажіть бажаний порядок. Або ж, клацніть на заголовку відповідного стовпчика.</para>
    <para>Для зміни порядку сортування на зворотний, клацніть на заголовку стовпчика знову, або виберіть <menuchoice><guimenu>Вигляд</guimenu><guisubmenu>Сортувати файли</guisubmenu><guisubmenu>у зворотному порядку</guisubmenu></menuchoice>.</para>
    <para>For example, to sort the file list by modification date, click on the <guilabel>Date modified</guilabel> heading. <application>Archive Manager</application> rearranges the file list to display the files by modification date, starting with the earliest. To display the latest files first, click on the <guilabel>Date modified</guilabel> heading again.</para>
    <para><application>Archive Manager</application> always performs a secondary sort based on the file name. In the above example, <application>Archive Manager</application> sorts by name any files that have the same modification date.</para>
  </sect2>

  <sect2 id="file-roller-extra-info">
    <title>Відображення додаткових відомостей</title>
      <para>Щоб перевірити наявність шифрованих фалів у архіві, виберіть <menuchoice><guimenu>Архів</guimenu><guimenuitem>Перевірити цілісність</guimenuitem></menuchoice>: <itemizedlist><listitem><para>If the archive contains no encrypted files, or if the archive contains encrypted files and you have entered the correct password in the <guilabel>Password</guilabel> text box, <application>Archive Manager</application> opens the <guilabel>Test Result</guilabel> dialog to list each file in the archive, and indicates that each file has status <literal>OK</literal>.</para></listitem><listitem><para>If the archive contains some encrypted and unencrypted files, and you have not entered the correct password in the <guilabel>Password</guilabel> text box, <application>Archive Manager</application> opens the <guilabel>Test Result</guilabel> dialog to list each file in the archive, and indicates that each unencrypted file has status <literal>OK</literal>, and each encrypted file has status <literal>incorrect password</literal>.</para></listitem><listitem><para>If the archive contains only encrypted files and you have not entered the correct password in the <guilabel>Password</guilabel> text box, <application>Archive Manager</application> displays an <guilabel>Error</guilabel> dialog.</para></listitem></itemizedlist> Докладніше про шифрування файлів дивіться у <xref linkend="file-roller-encrypt-files"/>.</para>
      <para>Щоб відкрити вікно <guilabel>Журнал повідомлень</guilabel>, виберіть <menuchoice><guimenu>Вигляд</guimenu><guimenuitem>Журнал повідомлень</guimenuitem></menuchoice>: <itemizedlist><listitem><para>If you tested the archive in the current <application>Archive Manager</application> session, the <guilabel>Last Output</guilabel> dialog displays the results of the last test.</para></listitem><listitem><para>If you did not test the archive in the current <application>Archive Manager</application> session, the <guilabel>Last Output</guilabel> dialog displays a list of all files in the archive, but does not indicate any status for the files. Instead, the <guilabel>Last Output</guilabel> dialog provides the compressed size of each file and the percentage of compression, and the date and time at which the file was last modified.</para></listitem></itemizedlist></para>
  </sect2>
</sect1>

<!-- ====== Using the File Manager Popup Menu to Manipulate an Archive ===== -->

<sect1 id="file-roller-fmgr"> 
    <title>Використання файлового менеджера для роботи з архівом</title> 
    <para>Для додавання файлів до архіву чи розпаковування файлів з архіву можна користуватись менеджером файлів.</para>

<!-- ======= Adding files Using File Manager Menu  ============= --> 
    <sect2 id="file-roller-fmgr-add">
      <title>Додавання файлів до архіву з файлового менеджера</title>
           <para>Додавати файли до архіву з файлового менеджера можна наступними способами: <itemizedlist><listitem><para>Drag the files into a <application>Archive Manager</application> window from a file manager window.</para></listitem><listitem><para>Для додавання файлів у архів використовуйте контекстне меню файлового менеджера.</para></listitem></itemizedlist></para>
      <para>Для додавання файлів до архіву з контекстного меню файлового менеджера виконайте наступні кроки:</para>
      <orderedlist>
        <listitem><para>Клацніть правою кнопкою миші на файлах чи теках у файловому менеджері.</para>
        </listitem>
        <listitem><para>Choose <guimenuitem>Create Archive</guimenuitem> from the file manager popup menu to display the <application>Archive Manager</application><guilabel>Create Archive</guilabel> dialog.</para>
        </listitem>
        <listitem><para>Введіть назву архіву у текстовому полі <guilabel>Архів</guilabel>.</para>
        </listitem>
        <listitem><para>Натисніть <guilabel>Створити</guilabel>, щоб додати виділені файли до кореневої теки вказаного архіву.</para>
                 <note><para>To select any of the advanced add options, you must invoke <application>Archive Manager</application> as described in <xref linkend="file-roller-to-start"/>.</para></note>
        </listitem>
      </orderedlist>
    </sect2>

<!-- ======= Extracting files Using File Manager Menu  ============= --> 
  <sect2 id="file-roller-fmgr-extract">
      <title>Розпаковування файлів з архіву з використанням файлового менеджера</title>
           <para>Файловий менеджер можна використовувати для розпаковування архіву наступним чином: <itemizedlist><listitem><para>Drag the files from a <application>Archive Manager</application> window into a file manager window.</para></listitem><listitem><para>Для розпаковування файлів зв архіву користуйтесь контекстним меню файлового менеджера.</para></listitem></itemizedlist></para>
      <para>Для розпаковування архіву з використанням контекстного меню файлового менеджер, виконайте наступні кроки:</para>
      <orderedlist>
        <listitem><para>Клацніть на архіві правою кнопкою миші у вікні файлового менеджера.</para>
        </listitem>
        <listitem><para>Виберіть <guimenuitem>Розпакувати сюди</guimenuitem>, щоб розпакувати весь вміст у каталог, де розташований архів.</para>
        </listitem>
      </orderedlist>
      <note><para>To extract encrypted files, you must invoke <application>Archive Manager</application> as described in <xref linkend="file-roller-to-start"/>.</para></note>
    </sect2>

</sect1>

<!-- ======= Add Advanced Options  ============= --> 
    <sect1 id="file-roller-add-options">
      <title>Add Options</title>
      <para>The <guilabel>Add Files</guilabel> and <guilabel>Add a Folder</guilabel> dialogs provide the following option:</para>
      <variablelist>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Додавати лише оновлені файли</guilabel></term>
	  <listitem>
            <para>Select this option to add the specified file to the archive only if the archive does not contain the specified file, or if the archive contains an older version of the specified file. <application>Archive Manager</application> uses the modification date to determine which file is the most recent. If the version of the file in the archive is the most recent, <application>Archive Manager</application> does not add the specified file to the archive.</para>
	    <para>If you do not select this option, <application>Archive Manager</application> adds the file to the archive and overwrites the previous archive contents.</para>
	    <tip>
	      <title>Підказка</title>
	      <para>If you use <application>Archive Manager</application> to create backups, the <guilabel>Add only if newer</guilabel> option is very useful. For example, the archive <filename>backup.tar.gz</filename> contains a week-old backup of your home folder. To update the archive to contain a current backup of your home folder, perform the following steps: <orderedlist><listitem><para>Open the <filename>backup.tar.gz</filename> archive in <application>Archive Manager</application>.</para></listitem><listitem><para>Choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Add</guimenuitem></menuchoice> to display the <guilabel>Add a Folder</guilabel> dialog.</para></listitem><listitem><para>Select your home folder.</para></listitem><listitem><para>Відмітьте параметр <guilabel>Додавати лише оновлені файли</guilabel>.</para></listitem><listitem><para>Натисніть <guibutton>Додати</guibutton>.</para></listitem></orderedlist><application>Archive Manager</application> automatically adds to the archive all files that you created during the last week, and updates all files that you modified during the last week. However, <application>Archive Manager</application> does not remove from the archive the files that you deleted during the last week. The archive update operation is much faster than doing a full backup of your home folder.</para>
	  </tip>
	</listitem>
      </varlistentry>
      </variablelist>
      <sect2 id="file-roller-add-folder-options">
      <title>Add to Folder Options</title>
      <para>The following options are available in the <guilabel>Add a Folder</guilabel> dialog and allow to automatically select and add all files that satisfy certain criteria:</para>
      <variablelist>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Включати файли</guilabel></term>
	  <listitem>
            <para>Введіть у цьому полі шаблон файлів, щоб включити файли, які відповідають вказаному шаблону. Додаткову інформацію про шаблони дивіться у <xref linkend="file-roller-pattern"/>.</para>
          </listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Не включати файли</guilabel></term>
	  <listitem>
            <para>Введіть у цьому полі шаблон файлів, щоб не включати файли з назвами, які відповідають шаблону. Додаткову інформацію про шаблони дивіться у <xref linkend="file-roller-pattern"/>.</para>
          </listitem>
	</varlistentry>
       <!-- ============= -->	
      <varlistentry>
	<term><guilabel>Включати підтеки</guilabel></term>
	<listitem>
          <para>Відмітьте цей параметр, щоб додати всі файли, які відповідають вказаному шаблону у цій теці, та у підтеках.</para>
          <note>
          <para>Шаблону має відповідати назва файлу, а не назва підтеки.</para>
          </note>
	  <para>If you do not select this option, <application>Archive Manager</application> adds the matching files from the current folder only.</para>
        </listitem>
      </varlistentry>
       <!-- ============= -->	
     <varlistentry>
	<term><guilabel>Виключати символьні посилання на каталоги</guilabel></term>
	  <listitem>
            <para>Виберіть цей параметр, щоб не включати файли з тек, які є символьними посиланнями. Символьні посилання вказують на інші каталоги.</para>
	    <para>If you do not select this option, <application>Archive Manager</application> adds the matching files from folders that are symbolic links.</para>
          </listitem>
	</varlistentry>
       <!-- ============= -->	
     <varlistentry>
	<term><guibutton>Зберегти параметри</guibutton></term>
	  <listitem>
            <para>Натисніть на цю кнопку, щоб зберегти у файл поточні значення додаткових параметрів. Відкриється діалогове вікно <guilabel>Збереження параметрів</guilabel>. Введіть описову назву файлу у текстовому полі <guilabel>Назва параметрів</guilabel>, потім натисніть <guibutton>Зберегти</guibutton>.</para>
          </listitem>
	</varlistentry>
       <!-- ============= -->	
     <varlistentry>
	<term><guibutton>Завантажити параметри</guibutton></term>
	  <listitem>
            <para>Натисніть на цю кнопку, щоб завантажити чи видалити раніше збережені набори додаткових параметрів. Відкриється діалогове вікно <guilabel>Завантаження параметрів</guilabel>.</para>
            <itemizedlist>
              <listitem>
                <para>Для завантаження набору параметрів, виберіть зі списку файл з параметрами, потім натисніть <guibutton>Застосувати</guibutton>.</para>
              </listitem>
              <listitem>
                <para>Видалити набір параметрів можна вибравши файл зі списку та натиснувши <guibutton>Видалити</guibutton>. Діалогове вікно <guilabel>Завантаження параметрів</guilabel> закривається натисканням кнопки <guibutton>Закрити</guibutton>.</para>
              </listitem>
            </itemizedlist>
          </listitem>
	</varlistentry>
      </variablelist>
    </sect2>
  </sect1>

<!-- ======= Extract Options  ============= --> 
  <sect1 id="file-roller-extract-options">
    <title>Параметри розпаковування</title>
      
    <para>The <guilabel>Extract</guilabel> dialog provides the following options, which are saved when you quit <application>Archive Manager</application>:</para>
      <variablelist>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Файли</guilabel></term>
	  <listitem>
            <para>Виберіть один з наступних параметрів розпаковування:</para>
            <variablelist>
              <varlistentry>
                <term><guilabel>Усі файли</guilabel></term>
                <listitem>
                  <para>Розпакувати усі файли з архіву.</para>
                </listitem>
              </varlistentry>
              <varlistentry>
                <term><guilabel>Виділені файли</guilabel></term>
                <listitem>
                  <para>Розпакувати виділені файли з архіву.</para>
                </listitem>
              </varlistentry>
              <varlistentry>
                <term><guilabel>Файли</guilabel></term>
                <listitem>
                  <para>Розпакувати з архіву файли, що відповідають вказаному шаблону. Докладніше про файлові шаблони дивіться у <xref linkend="file-roller-pattern"/>.</para>
                </listitem>
              </varlistentry>
            </variablelist>
	  </listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Відтворювати структуру каталогів</guilabel></term>
	  <listitem><para>Відмітьте цей параметр для відтворення структури каталогів при розпаковуванні файлів.</para> 
              <para>Наприклад, при розпаковуванні усіх файлів у текстовому полі <guilabel>Назва файлу</guilabel> ви вкажете <filename>/tmp</filename>. Архів містить підтеку з назвою <filename>doc</filename>. <itemizedlist><listitem><para>If you select the <guilabel>Re-create folders</guilabel> option, <application>Archive Manager</application> extracts the contents of the subfolder to <filename>/tmp/doc</filename>.</para></listitem><listitem><para>If you do not select the <guilabel>Re-create folders</guilabel> option, <application>Archive Manager</application> does not create any subfolders. Instead, <application>Archive Manager</application> extracts all files from the archive, including files from subfolders, to <filename>/tmp</filename>.</para></listitem></itemizedlist></para></listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Перезаписувати існуючі файли</guilabel> </term>
	  <listitem><para>Відмітьте цей параметр, щоб перезаписати у цільовій теці будь-які файли, що мають однакові з вказаними файлами назви.</para>
	    <para>If you do not select this option, <application>Archive Manager</application> does not extract the specified file if an existing file with the same name already exists in the destination folder.</para>
	  </listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Пропускати застарілі файли</guilabel> </term>
	  <listitem><para>Цей параметр не має дії, якщо відмічено параметр <guilabel>Перезаписувати існуючі файли</guilabel>.</para>
	    <para>Select the <guilabel>Do not extract older files</guilabel> option to extract the specified file only if the destination folder does not contain the specified file, or if the destination folder contains an older version of the specified file. <application>Archive Manager</application> uses the modification date to determine which file is the most recent. If the version of the file in the archive is older, <application>Archive Manager</application> does not extract the specified file to the destination folder.</para>
	    <para>If you do not select the <guilabel>Do not extract older files</guilabel> option while the <guilabel>Overwrite existing files</guilabel> option is selected, <application>Archive Manager</application> extracts the specified file from the archive and overwrites the previous contents of the destination folder.</para></listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Пароль</guilabel></term>
	  <listitem><para>Цей параметр доступний лише, якщо архів підтримує шифрування. Наразі, шифрування підтримують лише архіви типу <filename>.zip</filename> та <filename>.arj</filename>.</para>
          <para>Якщо архів містить шифровані файли, для розшифровування виділених файлів при їх розпаковуванні, введіть пароль у текстовому полі <guilabel>Пароль</guilabel>. Потрібно ввести пароль, що використовувався при створенні архіву.  Додаткову інформацію дивіться у <xref linkend="file-roller-encrypt-files"/>.</para>
          <para>Або ж, можна ввести потрібний пароль у діалоговому вікні <guilabel>Пароль</guilabel>. Щоб відкрити діалогове вікно <guilabel>Пароль</guilabel>, виберіть <menuchoice><guimenu>Правка</guimenu><guimenuitem>Пароль</guimenuitem></menuchoice>.</para>
        </listitem>
	</varlistentry>
       <!-- ============= -->	
	<varlistentry>
	  <term><guilabel>Відкрити теку призначення після розпаковування</guilabel></term>
	  <listitem><para>Відмітьте цей параметр, щоб після розпаковування виділених файлів вміст теки призначення було відкрито у файловому менеджері.</para>
          </listitem>
	</varlistentry>
      </variablelist>	
</sect1>


</article>