summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-webteam/2011-June/001089.html
blob: cdafae68355dc0dba74e5f64d003ef62909c5552 (plain)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
 <HEAD>
   <TITLE> [Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTik0EkQegrZW5sPAGu90W0NM-6mfZw%40mail.gmail.com%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="001046.html">
   <LINK REL="Next"  HREF="001041.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language</H1>
    <B>MacXi - Ideias Linux</B> 
    <A HREF="mailto:mageia-webteam%40mageia.org?Subject=Re%3A%20%5BMageia-webteam%5D%20Translation%20of%20the%20download%20page%20%22Mageia%20RC%22%0A%20to%20portuguese%20language&In-Reply-To=%3CBANLkTik0EkQegrZW5sPAGu90W0NM-6mfZw%40mail.gmail.com%3E"
       TITLE="[Mageia-webteam] Translation of the download page &quot;Mageia RC&quot; to portuguese language">terraagua at gmail.com
       </A><BR>
    <I>Thu Jun  2 01:02:57 CEST 2011</I>
    <P><UL>
        <LI>Previous message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
</A></li>
        <LI>Next message: <A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#1089">[ date ]</a>
              <a href="thread.html#1089">[ thread ]</a>
              <a href="subject.html#1089">[ subject ]</a>
              <a href="author.html#1089">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Romain,

I send text  &quot;*downloads_locales.php*&quot; (Revision 569). I translate to
portuguese just tha language  &quot;'pt'=&gt; array, the latest language, of list.

Macxi




2011/5/31 Romain d'Alverny &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rda at mageia.org</A>&gt;

&gt;<i> 2011/5/31 R&#233;mi Verschelde &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">rverschelde at gmail.com</A>&gt;:
</I>&gt;<i> &gt; 2011/5/31 MacXi - Ideias Linux &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">terraagua at gmail.com</A>&gt;:
</I>&gt;<i> &gt;&gt; I already do the translation (to pt)  of the blog/news, how do I
</I>&gt;<i> translate
</I>&gt;<i> &gt;&gt; for the site?
</I>&gt;<i> &gt;
</I>&gt;<i> &gt; You can find the php array here:
</I>&gt;<i> &gt;
</I>&gt;<i> <A HREF="http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup">http://svnweb.mageia.org/web/www/trunk/contribute/contribute_locales.php?view=markup</A>
</I>&gt;<i> &gt; You can copy in a new file the 'en' array, i.e. from &quot; 'en' =&gt; array(
</I>&gt;<i> &gt; &quot; to &quot; ), &quot; before the 'de' array.
</I>&gt;<i> &gt; Then you change 'en' to 'pt' and you can translate every paragraphs.
</I>&gt;<i> &gt; If you send this file to Romain or Oliver it will be much easier for
</I>&gt;<i> &gt; them to implement the translation (they will just have to copy-paste
</I>&gt;<i> &gt; the contents of your file after the other translations).
</I>&gt;<i>
</I>&gt;<i> Yes.
</I>&gt;<i>
</I>&gt;<i> I just want to add that we (me, Oliver and certainly many others) do
</I>&gt;<i> know/realize that this is a messy process/platform to manage
</I>&gt;<i> translations. It could be much better than that, but at least we know
</I>&gt;<i> why/how. Hopefully during the Summer we'll get to something better for
</I>&gt;<i> both designing and translating pages.
</I>&gt;<i>
</I>&gt;<i> Romain
</I>&gt;<i> _______________________________________________
</I>&gt;<i> Mageia-webteam mailing list
</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">Mageia-webteam at mageia.org</A>
</I>&gt;<i> <A HREF="https://www.mageia.org/mailman/listinfo/mageia-webteam">https://www.mageia.org/mailman/listinfo/mageia-webteam</A>
</I>&gt;<i>
</I>-------------- next part --------------
An HTML attachment was scrubbed...
URL: &lt;/pipermail/mageia-webteam/attachments/20110601/789d05f6/attachment-0001.html&gt;
-------------- next part --------------
&lt;?php

$_t = array(
    'en' =&gt; array(
        'download' =&gt; 'download',
        'page_title' =&gt; 'Download %s',
        'page_desc' =&gt; 'Where you can download Mageia installable and live ISO images.',
        'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
        'page_h1' =&gt; 'Download %s',
        'warn_1' =&gt; 'Be Careful!
            This is NOT FOR: use, public review, personal or production evaluation.
            This is FOR: developers, packagers, test users ONLY.',
        'warn_2' =&gt; 'Whatever you may do with the provided ISO disc image
                will be done at your own risk, with your own responsibility.',
        'title_ok' =&gt; 'You still want to download and test Mageia 1?',
        'dl_help' =&gt; 'Just pick the ISO image that is best for you; if you are not sure, you should pick from the first two.',
        'changes_since_a2' =&gt; 'Changes since Beta 2',
        'release_docs' =&gt; 'Release Documents',
        'whatismageia' =&gt; 'What is Mageia?',
        'size' =&gt; 'Size',
        'flavour' =&gt; 'Flavour',
        'language' =&gt; 'Language',
        'link' =&gt; 'Direct link',
        'dl_shld_start' =&gt; 'Your download of %s should start within a few seconds',
        'dl_size' =&gt; '(download size is about %s).',
        'alt_download' =&gt; 'If the download does not start, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;click here&lt;/a&gt;.',
        'signs_check_1' =&gt; 'As soon as your download is complete, you should check that the signatures match:',
        'signs_check_2' =&gt; 'If signatures do not match, do not use this ISO. Double-check and try to download again.',
        'dl_mirror_loc' =&gt; 'This &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; download mirror is located in %s (%s).',
        'dl_alt_mirrors' =&gt; 'If it does not work well for you, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;check out these other mirrors&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'What do you think of it?',
        'give_feedback' =&gt; 'You are very welcome to give your impressions on Mageia 1, wherever you want:
                on &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;our forums&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;our blog&lt;/a&gt;, on &lt;em&gt;your&lt;/em&gt; blog,
                on Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                In any case, please link to &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'If you encounter a bug, please &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;see how to report it&lt;/a&gt;
                    in our bugs database so we can sort it out the best possible way.',
        'notify_web' =&gt; 'If you notice a problem with the download process/pages, please notify the Web team on
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC channel so we can sort it out as fast as possible.
Note that translations are on their way.',
        'wanttohelp?' =&gt; 'Want to help? %sJoin Us!%s',
        'ucanhelp' =&gt; 'Yes you can! Mageia is the result of the will and collaboration of many happy fellow volunteers across the world.',
        'wherehelp' =&gt; 'There is a lot of areas where one can contribute to the project.
            Be it for advocacy, prototyping,
            %scommunication%s, %sWeb design &amp;amp; development%s,
            for software design, development,
            %slocalization%s, %spackaging%s, %sQA &amp;amp; testing%s,
            delivery, for community support &amp;amp; animation,
            for %sdonating money%s,
            hardware, hosting, time, for sharing the fun.',
        'all_languages' =&gt; 'All supported: up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
            See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
        'euro_languages' =&gt; 'Europa set of languages: Deutsch, English (several variants), espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s do Brasil, ???????.
            More languages will be made available for the stable release.',
        'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
        'All supported' =&gt; 'All supported',
        'English' =&gt; 'English',
        'Limited' =&gt; 'Limited',
        'European set' =&gt; 'Europa set',
        'Europa set 1' =&gt; 'Europa 1',
        'Europa set 2' =&gt; 'Europa 2',
        'Asia set' =&gt; 'Asia',
        'Africa/India set' =&gt; 'Africa/India',
        'popularity' =&gt; 'Popularity',
        'for_full_install' =&gt; 'For a full installation:',
        'for_test_live' =&gt; 'For live test and install: LiveCD 32bit',
        'for_network' =&gt; 'For a network install:',
        'def-Europa set 1' =&gt; 'Europa set 1 of languages: Deutsch, English (several variants), greek, espa&#241;ol, fran&#231;ais, greek, italiano, Dutch, portugu&#234;s, portugu&#234;s do Brasil, Turkish.',
        'def-Europa set 2' =&gt; 'Europa set 2 of languages: Bulgarian, Czech, Danish, American English, Estonian,
            Finnish, Croatian, Hungarian, Lithuanian, Latvian, Norwegian Bokmaal, Norwegian Nynorsk, Polish,
            Romanian, Russian, Swedish, Ukrainian, Uzbek, Uzbek (cyrillic).',
        'def-Asia set' =&gt; 'Asia set 1 of languages: American English, Indonesian, Japanese, Korean,
            Thai, Vietnamese, Chinese Simplified, Chinese Traditional.',
        'def-Africa/India set' =&gt; 'Africa/India set of languages: Afrikaans, Amharic, Arabic, Assamese, Berber, Bengali, American English,
            Hausa, Hebrew, Hindi, Igbo, Kannada, Malayalam, Marathi,
            Punjabi, Tamil, Tswana, Tsonga, Venda, Xhosa, Yoruba, Zulu.',
        'dl_migrate_instead' =&gt; 'If you are using Mandriva Linux 2010.1 or 2010.2,
            you may directly &lt;a href=&quot;/en/1/migrate/&quot;&gt;upgrade your system to Mageia 1&lt;/a&gt; as well.&lt;/p&gt;'
    ),
    'fr' =&gt; array(
        'download' =&gt; 't&#233;l&#233;charger',
        'page_title' =&gt; 'T&#233;l&#233;charger %s',
        'page_desc' =&gt; 'Pour t&#233;l&#233;charger les images ISO live et d?installation de Mageia.',
        'page_kw' =&gt; 'mageia, software, download, t&#233;l&#233;charger, syst&#232;me, ordinateur, ISO, torrent, ftp',
        'page_h1' =&gt; 'T&#233;l&#233;charger %s',
        'warn_1' =&gt; 'Attention&amp;nbsp;!
        Ce logiciel n&amp;rsquo;est PAS pr&#233;vu pour un usage quotidien, une &#233;valuation publique ou un environnement de production.
        Ce logiciel est pr&#233;vu pour des TESTS, par des d&#233;veloppeurs ou empaqueteurs.',
        'warn_2' =&gt; 'Quel que soit l&amp;rsquo;usage que vous ferez des images ISO mises &#224; votre disposition, cela sera fait en votre pleine conscience des risques encourus, avec vos propres responsabilit&#233;s.',
        'title_ok' =&gt; 'Vous voulez toujours t&#233;l&#233;charger et tester Mageia 1&amp;nbsp;?',
        'dl_help' =&gt; 'Choisissez l&amp;rsquo;image qui vous convient&amp;nbsp;; si vous n&amp;rsquo;&#234;tes pas s&#251;r, prenez-en une parmi les premi&#232;res.',
        'changes_since_a2' =&gt; 'Modifications depuis la version Beta 2',
        'release_docs' =&gt; 'Documents',
        'whatismageia' =&gt; 'Qu&amp;rsquo;est-ce que Mageia&amp;nbsp;?',
        'size' =&gt; 'Taille',
        'flavour' =&gt; 'Variante',
        'language' =&gt; 'Langues',
        'link' =&gt; 'Lien',
        'dl_shld_start' =&gt; 'Le t&#233;l&#233;chargement de %s va d&#233;marrer dans quelques secondes',
        'dl_size' =&gt; '(taille d&amp;rsquo;environ %s).',
        'alt_download' =&gt; 'Si le t&#233;l&#233;chargement ne d&#233;marre pas, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;cliquez ici&lt;/a&gt;.',
        'signs_check_1' =&gt; 'D&#232;s que votre ISO est t&#233;l&#233;charg&#233;e, vous pouvez v&#233;rifier que les signatures correspondent bien&amp;nbsp;:',
        'signs_check_2' =&gt; 'Si elles ne correspondent pas, l&amp;rsquo;image n&amp;rsquo;est pas bonne.',
        'dl_mirror_loc' =&gt; 'Le miroir de t&#233;l&#233;chargement &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; est en %s (%s).',
        'dl_alt_mirrors' =&gt; 'S&amp;rsquo;il ne fonctionne pas bien, vous pouvez aussi &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;essayer un autre miroir&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Qu&amp;rsquo;en pensez-vous&amp;nbsp;?',
        'give_feedback' =&gt; 'Donnez-nous vos impressions sur Mageia 1, par le moyen que vous pr&#233;f&#233;rez&amp;nbsp;: sur les &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot; hreflang=&quot;en&quot;&gt;forums&lt;/a&gt;, sur &lt;a href=&quot;<A HREF="http://blog.mageia.org/fr/">http://blog.mageia.org/fr/</A>&quot;&gt;notre blog&lt;/a&gt;, sur &lt;em&gt;votre&lt;/em&gt; blog, sur Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
        Dans tous les cas, n&amp;rsquo;oubliez pas de pointer vers &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Si vous remarquez un bug, merci de &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;nous en informer&lt;/a&gt; afin que nous puissions le corriger.',
        'notify_web' =&gt; 'Si vous rencontrez un probl&#232;me pour t&#233;l&#233;charger cette beta,
        merci d&amp;rsquo;en informer l&amp;rsquo;&#233;quipe Web sur le canal IRC Freenode
        &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt;.',
        'wanttohelp?' =&gt; 'Vous voulez %sparticiper%s&amp;nbsp;?',
        'ucanhelp' =&gt; 'Vous le pouvez&amp;nbsp;! Mageia est le r&#233;sultat des volont&#233;s et travaux de nombreux et joyeux contributeurs &#224; travers le monde.',
        'wherehelp' =&gt; 'Il y a de multiples fa&#231;ons de contribuer &#224; Mageia.
        Par la %scommunication%s, le %sdesign et d&#233;veloppement Web%s,
        la conception et le d&#233;veloppement de logiciels,
        la %straduction%s, le %spackaging%s, les %stests et la qualit&#233;%s,
        la livraison, le support et l&amp;rsquo;animation communautaires,
        en %soffrant de l&amp;rsquo;argent%s, du mat&#233;riel, de l&amp;rsquo;h&#233;bergement,
        du temps, ou simplement en partageant cette exp&#233;rience passionante avec nous.',
        'all_languages' =&gt; 'Toutes inclues&amp;nbsp;: environ 167 langues ou dialectes sont disponibles&amp;nbsp;: fran&#231;ais, allemand, anglais, espagnol, italien,
        portugais, roumain, grec, esperanto, turque, su&#233;dois, finlandais, n&#233;erlandais, polonais, russe, danois, chinois, breton, bulgare
        et tant d&amp;rsquo;autres&amp;nbsp;! Consultez la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;liste compl&#232;te&lt;/a&gt;.',
        'euro_languages' =&gt; 'Langues europ&#233;ennes&amp;nbsp;: allemand, anglais, espagnol, fran&#231;ais, italien, polonais, portugais br&#233;silien, russe.
        Davantage de langues seront disponibles dans la version finale.',
        'All supported' =&gt; 'Toutes',
        'limited_languages' =&gt; 'Limit&#233;&amp;nbsp;: bi&#233;lo-russe, catalan, allemand, anglais, espagnol, fran&#231;ais, hongrois, italien, polonais, portugais, ukrainien.',
        'English' =&gt; 'Anglais',
        'Limited' =&gt; 'Limit&#233;',
        'European set' =&gt; 'Langues europ&#233;ennes',
        'Europa set 1' =&gt; 'Europe / Am&#233;rique',
        'Europa set 2' =&gt; 'Europe de l\'est',
        'Asia set' =&gt; 'Asie',
        'Africa/India set' =&gt; 'Afrique / Inde',
        'popularity' =&gt; 'Popularit&#233;',
        'for_full_install' =&gt; 'Pour une installation compl&#232;te&amp;nbsp;:',
        'for_test_live' =&gt; 'LiveCD 32 bits pour essayer et installer&amp;nbsp;:',
        'for_network' =&gt; 'Pour installer via le r&#233;seau&amp;nbsp;:',
        'def-Europa set 1' =&gt; 'Europe / Am&#233;rique&amp;nbsp;: allemand, anglais, grec, espagnol, fran&#231;ais, italien, hollandais, portugais, br&#233;silien, turque.',
        'def-Europa set 2' =&gt; 'Europe de l\'est&amp;nbsp;:: bulgare, tch&#232;que, danois, anglais, estonien,
            finnois, croate, hongrois, lituanien, latvian, norv&#233;gien (Bokmaal &amp;amp; Nynorsk), polonais,
            roumain, russe, su&#233;dois, ukrainien, ouzb&#232;que (latin &amp;amp; cyrillique).',
        'def-Asia set' =&gt; 'Asie&amp;nbsp;: anglais, indon&#233;sien, japonais, cor&#233;en, tha&#239;landais, vietnamien, chinois simplif&#233; et traditionnel.',
        'def-Africa/India set' =&gt; 'Afrique / Inde&amp;nbsp;:: afrikaans, amharic, arabe, Assamese, berb&#232;re, bengali, anglais,
            Hausa, h&#233;breu, hindi, Igbo, Kannada, Malayalam, marathi,
            punjab, tamil, Tswana, tsonga, Venda, Xhosa, Yoruba, zoulou.',
        'dl_migrate_instead' =&gt; 'Si vous utilisez Mandriva Linux 2010.1 ou 2010.2,
            vous pouvez aussi &lt;a href=&quot;/fr/1/migrate/&quot;&gt;migrer votre syst&#232;me vers Mageia 1&lt;/a&gt;.&lt;/p&gt;'
    ),
    'de' =&gt; array(
        'download' =&gt; 'herunterladen',
        'page_title' =&gt; '%s herunterladen',
        'page_desc' =&gt; 'Wo man die Mageia-Installer- und -Live-ISOs herunterladen kann.',
        'page_kw' =&gt; 'Mageia, Software, Download, Herunterladen, Betriebssystem, ISO, Computer, torrent, ftp',
        'page_h1' =&gt; '%s herunterladen',
        'warn_1' =&gt; 'Seien Sie vorsichtig!
            Diese Version ist NICHT GEDACHT F&#220;R: t&#228;gliche Benutzung, Testberichte, pers&#246;nliche oder Produkt-Evaluierung.
            Diese Version ist GEDACHT F&#220;R: Tests von Entwicklern und Paketbauern.',
        'warn_2' =&gt; 'Alles, was Sie mit den angebotenen ISO-Abbildern machen geschieht 
                auf Ihr eigenes Risiko, in Ihrer eigenen Verantwortung.',
        'title_ok' =&gt; 'Sie wollen jetzt Mageia 1 herunterladen und testen?',
        'dl_help' =&gt; 'Suchen Sie sich das f&#252;r Sie passende ISO-Abbild aus. Falls Sie nicht sicher sind, sollten Sie eines der ersten Abbilder ausw&#228;hlen.',
        'changes_since_a2' =&gt; '&#196;nderungen seit Beta 2',
        'release_docs' =&gt; 'Dokumente zum Release',
        'whatismageia' =&gt; 'Was ist Mageia?',
        'size' =&gt; 'Gr&#246;&#223;e',
        'flavour' =&gt; 'Variante',
        'language' =&gt; 'Sprache',
        'link' =&gt; 'Direktlink',
        'dl_shld_start' =&gt; 'Der Download von %s sollte innerhalb weniger Sekunden starten',
        'dl_size' =&gt; '(Gr&#246;&#223;e des Downloads betr&#228;gt %s).',
        'alt_download' =&gt; 'Falls der Download nicht starten sollte, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klicken Sie hier&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Sobald der Download abgeschlossen ist, sollten Sie die Signaturen vergleichen:',
        'signs_check_2' =&gt; 'Verwenden Sie dieses ISO-Abbild nicht, falls die Signaturen nicht &#252;bereinstimmen. Vergleichen Sie sie erneut und starten Sie den Download erneut.',
        'dl_mirror_loc' =&gt; 'Dieser &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; Download-Server befindet sich in %s (%s).',
        'dl_alt_mirrors' =&gt; 'Falls dieser nicht zufriedenstellend funktioniert, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;k&#246;nnen Sie einen der anderen Server nutzen&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Was halten Sie davon?',
        'give_feedback' =&gt; 'Schildern Sie uns Ihre Eindr&#252;cke von Mageia 1 Beta 2 auf einer der folgenden Plattformen:
                in &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;unserem Forum&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/de">http://blog.mageia.org/de</A>&quot;&gt;unserem Blog&lt;/a&gt;, in &lt;em&gt;Ihrem&lt;/em&gt; Blog,
                auf Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                Bitte verlinken Sie es in jedem Fall zu &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Wenn Sie einen Bug (= Fehlverhalten) feststellen, finden Sie &lt;a href=&quot;&quot;&gt;hier eine Anleitung&lt;/a&gt;
                    zur Eintragung des Fehlers in unsere Bug-Datenbank, so dass wir ihn in der bestm&#246;glichen Art bearbeiten k&#246;nnen.',
        'notify_web' =&gt; 'Falls Sie Probleme mit dem Download oder der Download-Seite feststellen, informieren Sie bitte das Webteam im
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC Kanal, so dass wir den Fehler so schnell wie m&#246;glich beseitigen k&#246;nnen.
Beachten Sie, dass an der &#220;bersetzung noch gearbeitet wird.',
        'wanttohelp?' =&gt; 'Wollen Sie mithelfen? %sMachen Sie bei uns mit!%s',
        'ucanhelp' =&gt; 'Ja, Sie k&#246;nnen das! Mageia ist das Resultat der &#220;berzeugung und der Zusammenarbeit vieler gl&#252;cklicher Freiwilliger aus allen Teilen der Welt.',
        'wherehelp' =&gt; 'Es gibt eine Menge von Gebieten, auf denen Sie dem Projekt helfen k&#246;nnen.
            Diese reichen vom Eintreten f&#252;r das Projekt, der Produktentwicklung,
            %sKommunikation%s und %sWeb Design &amp;amp; Entwicklung%s &#252;ber
            Softwaredesign, Entwicklung , %sLokalisierung%s,
            %sPaketbau%s und %sQA &amp;amp; Testen%s bis hin zum Vertrieb, der
            Community-Unterst&#252;tzung &amp;amp; -Unterhaltung, sowie dem %sSpenden von
            Geld%s, Hardware, Hosting, Zeit und die Teilnahme an dem ganzen Spa&#223;.',
        'all_languages' =&gt; 'Bis zu 167 Sprachen werden unterst&amp;uuml;tzt: Deutsch, Englisch, Spanisch, Franz&amp;ouml;sisch, Italienisch, Portugiesisch, Schwedisch, Niederl&amp;auml;ndisch, Polnisch, D&amp;auml;nisch und viele weitere!
            Eine erweiterte Liste k&amp;ouml;nnen Sie &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;hier&lt;/a&gt; einsehen.',
        'euro_languages' =&gt; '&quot;Europ&amp;auml;ische Sprachliste&quot; bedeutet: Deutsch, Englisch, Spanisch, Franz&#246;sisch, Italienisch, Portugiesisch, ???????.
            Weitere Sprachen werden im finalen Release zur Verf&#252;gung stehen.',
        'All supported' =&gt; &quot;Alle unterst&#252;tzten Sprachen&quot;,
        'limited_languages' =&gt; 'Eingeschr&amp;auml;nkte Sprachliste: Wei&amp;szlig;russisch, Katalonisch, Deutsch, Englishc, Spanisch, Franz&amp;ouml;sisch, Ungarisch, Italienisch, Polnisch, Portugiesisch, Ukrainisch',
        'English' =&gt; 'Englisch',
        'Limited' =&gt; 'Eingeschr&amp;auml;nkte Sprachliste',
        'European set' =&gt; 'Europ&amp;auml;ische Sprachliste'
        
    ),
    'nl' =&gt; array(
        'download' =&gt; 'download',
        'page_title' =&gt; 'Download %s',
        'page_desc' =&gt; 'Waar u Mageia installeerbare en live ISO-images kunt downloaden.',
        'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
        'page_h1' =&gt; 'Download %s',
        'warn_1' =&gt; 'Voorzichtig!
            Dit is NIET BEDOELD VOOR: dagelijks gebruik, publieke recencies, evaluatie voor persoonlijk gebruik of in een produktieomgeving.
            Dit is WEL BEDOELD VOOR: Mageia ontwikkelaars en het testen door packagers.',
        'warn_2' =&gt; 'Het gebruik van de aangeboden ISO-image is geheel voor uw eigen risico en rekening, en voor eigen verantwoordelijkheid.',
        'title_ok' =&gt; 'U wilt nog steeds Mageia 1 downloaden?',
        'dl_help' =&gt; 'Kies het ISO-bestand welke voor u het beste is; Mocht u twijfelen dan kunt u het beste een van de eersten kiezen.',
        'changes_since_a2' =&gt; 'Veranderingen sinds Beta 2',
        'release_docs' =&gt; 'Release Documenten',
        'whatismageia' =&gt; 'Wat is Mageia?',
        'size' =&gt; 'Omvang',
        'flavour' =&gt; 'Smaak',
        'language' =&gt; 'Taal',
        'link' =&gt; 'Directe link',
        'dl_shld_start' =&gt; 'Uw download van %s behoort binnen enkele seconden te starten',
        'dl_size' =&gt; '(download grootte is ongeveer %s).',
        'alt_download' =&gt; 'Wanneer de download niet start, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klikt u hier&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Wanneer de download klaar is dient u te controleren dat de ondertekeningen overeenkomen:',
        'signs_check_2' =&gt; 'Als de ondertekeningen niet overeenkomen dient u deze ISO niet te gebruiken. Controleer nogmaals de ondertekeningen en of u het goede bestand heeft en probeert u de download dan nogmaals.',
        'dl_mirror_loc' =&gt; 'Deze &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; spiegelserver bevindt zich in %s (%s).',
        'dl_alt_mirrors' =&gt; 'Mocht deze server voor u niet goed bereikbaar zijn, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;kijkt u dan eens naar deze andere spiegelservers&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Wat vindt u ervan?',
        'give_feedback' =&gt; 'Graag horen wij uw bevindingen met Mageia 1, waar u dat het beste uitkomt:
                op &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;onze fora&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;ons blog&lt;/a&gt;, op &lt;em&gt;uw&lt;/em&gt; blog,
                op Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                Linkt u alstublieft naar &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Mocht u een fout (bug) tegenkomen, ziet u dan &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;hoe deze te rapporteren&lt;/a&gt;
                    naar onze foutendatabase zodat wij dit zo goed en snel als mogelijk kunnen oplossen.',
        'notify_web' =&gt; 'Mocht u een probleem ondervinden met het proces van downloaden of deze download pagina\'s, neemt u dan alstublieft contact op met het Web-team op het
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC-kanaal zodat we het zo snel mogelijk kunnen oplossen.
Wij zijn druk bezig met vertalingen naar andere talen.',
        'wanttohelp?' =&gt; 'Wilt u ons helpen? %sDoe met ons mee!%s',
        'ucanhelp' =&gt; 'U kunt ons helpen! Mageia is het resultaat van de motivatie van en samenwerking tussen vele vrijwilligers van over de hele wereld.',
        'wherehelp' =&gt; 'Er zijn een hoop dingen waarmee u kunt bijdragen aan de ontwikkeling en het succes van Mageia.
            Zoals: promotie akties, prototypes,
            %scommunicatie%s, %sWeb design &amp;amp; ontwikkelen%s,
            software ontwerpen, software ontwikkeling,
            %slocalisatie%s, %srpm-pakketten maken%s, %sQA &amp;amp; testen%s,
            gebruikersondersteuning,
            %sgelddonaties%s,
            hardware donaties, hosting, tijd, en delen in het plezier!',
        'all_languages' =&gt; 'Up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
            See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
        'euro_languages' =&gt; 'Europa set of languages is: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, polski, ???????.
            More languages will be made available for the stable release.',
        'All supported' =&gt; 'All supported',
        'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
        'English' =&gt; 'English',
        'Limited' =&gt; 'Limited',
        'European set' =&gt; 'European set'
        
    ),
    'el' =&gt; array(
        'download' =&gt; '????',
        'page_title' =&gt; '???? ??? %s',
        'page_desc' =&gt; '???? ???????? ?? ?????? ???? ?????????????? ??? live ??????? ISO ??? Mageia.',
        'page_kw' =&gt; 'mageia, ?????????, ????, ??????????? ???????, ISO, ???????????, torrent, ftp',
        'page_h1' =&gt; '???? ??? %s',
        'warn_1' =&gt; '???????!
        ???? ??? ????? ???: ?????, ??????? ??????????, ?????????? ???????.
        ???? ????? ???: ???????????????, ??????????? ???????, ??????? ??????? ????.',
        'warn_2' =&gt; '??????????? ??? ?? ????? ? ????? ??? ?? ?????? ??? ??????? ISO ??? ?????????? ???? ??????? ???, ???? ?? ????? ?? ???? ??? ?????? ??? ?? ????? ???????? ??? ????? ???????? ??? ?????? ?? ????????.',
        'title_ok' =&gt; '?????? ????? ?? ?????? ???? ??? ?? ?????????? ?? Mageia 1?',
        'dl_help' =&gt; '???? ???????? ??? ?????? ISO ??? ????? ????????????? ??? ????. ?? ??? ????? ????????, ???????? ?? ????????? ??? ?? ??? ??? ??????.',
        'changes_since_a2' =&gt; '??????? ??? Beta 2',
        'release_docs' =&gt; '?????????? ???????????',
        'whatismageia' =&gt; '?? ????? ? Mageia?',
        'size' =&gt; '???????',
        'flavour' =&gt; '?????',
        'language' =&gt; '??????',
        'link' =&gt; '?????? ?????????',
        'dl_shld_start' =&gt; '? ???? ??? %s ?? ????????? ?? ???? ????????????',
        'dl_size' =&gt; '(?? ??????? ??? ????????? ??????? ????? ??????? %s).',
        'alt_download' =&gt; '?? ? ???? ??? ????????, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;??????? ???&lt;/a&gt;.',
        'signs_check_1' =&gt; '????? ? ???? ?????????, ???? ?? ????? ?? ???????? ??? ?? ????????? ??????????:',
        'signs_check_2' =&gt; '?? ?? ????????? ??? ??????????, ?? ??????????????? ???? ?? ISO. ??????? ???? ??? ????????? ?? ?????? ???? ????.',
        'dl_mirror_loc' =&gt; '????? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ? ???????????? ????? ????????? ???(?)/???(?) %s (%s).',
        'dl_alt_mirrors' =&gt; '?? ?? ???????? ???? ??? ???, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????? ?????? ???? ?????????????&lt;/a&gt;.',
        'whatdouthink?' =&gt; '???? ????? ? ????? ??? ??\'????;',
        'give_feedback' =&gt; '????? ???????????? ?? ????????? ??? ?????????? ??? ??? ?? Mageia 1, ???? ??????:
        ??? &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forums ???&lt;/a&gt;,
        &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;??? ????????? ???&lt;/a&gt;, ???  &lt;em&gt;???? ???&lt;/em&gt; ?????????,
        ??? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
        ?? ??????????? ?????????, ??????????? ????????? ??? &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; '?? ?????????????? ?????? ??????, ??????????? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;????? ??? ?? ?? ?????????&lt;/a&gt;
        ??? ???? ?????????? ????????? ???? ?? ?? ??????????????? ??? ?? ??????? ????????.',
        'notify_web' =&gt; '?? ???????????? ?????? ???????? ??? ??????????/?????? ?????, ??????????? ??????????? ?? Web team ???
        &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC ?????? ???? ?? ?? ??????? ??? ?? ??????? ??? ???????.
        ????????? ??? ?? ??????????? ???????????????.',
        'wanttohelp?' =&gt; '?????? ?? ?????????; %s????? ???? ???!%s',
        'ucanhelp' =&gt; '??? ????????! ? Mageia ????? ?? ?????????? ??? ??????? ??? ??? ??????????? ?????? ?????????? ????????? ??\'??? ??? ?????.',
        'wherehelp' =&gt; '???????? ?????? ?????? ??? ?????? ?? ????????? ??????? ??? ????.
        ?????? ?? ????? ??? ??????????, ?????????? ??????????,
        %s???????????%s, %s?????????? ??????????? &amp;amp; ???????????????%s,
        ??? ????????? ??????????, ??????????????,
        %s???????????%s, %s?????????? ???????%s, %sQA &amp;amp; ???????%s,
        ????????, ?????????? ??? ?????????? &amp;amp; animation,
        ??? %s????? ????????%s,
        ????? ?????????, ????????? ????????????, ?????, ??? ?? ????????? ?? ??????????.',
        'all_languages' =&gt; '?????????????? ????: ?????????????? ????? ??? 167 ???????????: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk ??? ?????? ?????!
        ????? ??? &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;????? ?????&lt;/a&gt;.',
        'euro_languages' =&gt; '?????? ?????????? ???????: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s, ???????.
        ???????????? ??????? ?? ?????? ?????????? ??? ?? ??????? ??????.',
        'limited_languages' =&gt; '?????????????: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
        'All supported' =&gt; '?????????????? ????',
        'English' =&gt; '???????',
        'Limited' =&gt; '?????????????',
        'European set' =&gt; '????????? ??????'
    ),
    'es' =&gt; array(
        'download' =&gt; 'descargar',
        'page_title' =&gt; 'Descargue %s',
        'page_desc' =&gt; 'Donde puede descargar im&#225;genes ISO de Mageia instalables y live.',
        'page_kw' =&gt; 'mageia, software, aplicaciones, descarga, sistema operativo, ISO, computador, torrent, ftp',
        'page_h1' =&gt; 'Descargue %s',
        'warn_1' =&gt; '&#161;Tenga cuidado!
            Esto NO ES PARA: uso, revisi&#243;n p&#250;blica, evaluaci&#243;n personal o en ambientes de producci&#243;n.
            Esto es PARA: desarrolladores, empaquetadores, usuarios de prueba SOLAMENTE.',
        'warn_2' =&gt; 'Todo lo que realice con la imagen de disco ISO provista
                ser&#225; bajo su propio riesgo y bajo su responsabilidad.',
        'title_ok' =&gt; '&#191;A&#250;n desea descargar y probar Mageia 1?',
        'dl_help' =&gt; 'Seleccione la imagen ISO que mejor se ajusta a usted;; si no est&#225; seguro, deber&#237;a elegir entre las dos primeras.',
        'changes_since_a2' =&gt; 'Cambios desde Beta 2',
        'release_docs' =&gt; 'Documentos de la versi&#243;n',
        'whatismageia' =&gt; '&#191;Qu&#233; es Mageia?',
        'size' =&gt; 'Tama&#241;o',
        'flavour' =&gt; 'Sabor',
        'language' =&gt; 'Idioma',
        'link' =&gt; 'Enlace directo',
        'dl_shld_start' =&gt; 'La descarga de %s comenzar&#225; dentro de pocos segundos',
        'dl_size' =&gt; '(el tama&#241;o de descarga es de alrededor de %s).',
        'alt_download' =&gt; 'Si la descarga no comienza, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;haga click aqu&#237;&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Tan pronto como su descarga termine, deber&#237;a revisar que las firmas coinciden:',
        'signs_check_2' =&gt; 'Si las firmas no coinciden, no utilice esta imagen ISO. Revise nuevamente e intente descargar de nuevo.',
        'dl_mirror_loc' =&gt; '&#201;ste &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; servidor espejo de descarga est&#225; ubicado en %s (%s).',
        'dl_alt_mirrors' =&gt; 'Si no funciona bien para usted, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;pruebe estos otros servidores espejo&lt;/a&gt;.',
        'whatdouthink?' =&gt; '&#191;Qu&#233; le parece?',
        'give_feedback' =&gt; 'Nos interesa conocer su opini&#243;n sobre Mageia 1, como usted prefiera:
                en &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;nuestros foros&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/es">http://blog.mageia.org/es</A>&quot;&gt;nuestro blog&lt;/a&gt;, en &lt;em&gt;su&lt;/em&gt; blog,
                en Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                En cualquier caso, por favor enlace a &lt;a href=&quot;<A HREF="http://mageia.org/es">http://mageia.org/es</A>&quot;&gt;mageia.org/es&lt;/a&gt;.',
        'report_bug' =&gt; 'Si encuentra un fallo, por favor &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;vea c&#243;mo reportarlo&lt;/a&gt;
                    en nuestra base de datos de fallos para que podamos corregirlo de la mejor manera posible.',
        'notify_web' =&gt; 'Si encuentra un problema con el proceso o las p&#225;ginas de descarga, por favor notifique al equipo Web en
el canal de IRC de Freenode &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; para que podamos correjirlo lo mas r&#225;pido posible.
Note que las traducciones est&#225;n en progreso.',
        'wanttohelp?' =&gt; '&#191;Quiere ayudar? %s!&#218;nasenos!%s',
        'ucanhelp' =&gt; '&#161;Usted puede! Mageia es el resultado de la voluntad y colaboraci&#243;n de muchos voluntarios felices de todo del mundo.',
        'wherehelp' =&gt; 'Hay muchas &#225;reas en las que uno puede conrtibuir al proyecto.
            Ya sea para apoyo, construcci&#243;n de prototipos,
            %scomunicaci&#243;n%s, %sdise&#241;o y desarrollo Web &amp;amp;%s,
            para dise&#241;o &amp;amp; desarrollo de aplicaciones,
            %slocalizaci&#243;n%s, %sempaquetamiento%s, %sQA &amp;amp; pruebas%s,
            entrega, para animaci&#243;n &amp;amp; soporte de la comunidad,
            para %sdonaci&#243;n de dinero%s,
            hardware, hosting, tiempo, para compartir la entretenci&#243;n.',
        'all_languages' =&gt; 'Todos soportados: hasta 167 locales est&#225;n soportados: Alem&#225;n, Ingl&#233;s, Espa&#241;ol, Franc&#233;s, Italiano, Portugu&#233;s, Suizo, Holand&#233;s, Polaco, Dan&#233;s &#161;y muchos m&#225;s!
            Vea la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista detallada&lt;/a&gt;.',
        'euro_languages' =&gt; 'Conjunto de idiomas de Europa: Alem&#225;n, Ingl&#233;s, Espa&#241;ol, Franc&#233;s, Italiano, Polski, Portugu&#233;s, ???????.
            Mas idiomas estar&#225;n disponibles para la versi&#243;n estable.',
        'limited_languages' =&gt; 'Ingl&#233;s, Espa&#241;ol, Franc&#233;s, H&#250;ngaro, Italiano, Poliaco, Portugu&#233;s, Ukrainiano',
        'All supported' =&gt; 'Todos soportados',
        'English' =&gt; 'Ingl&#233;s',
        'Limited' =&gt; 'Limitado',
        'European set' =&gt; 'Conjunto Europeo'
    ),
    'et' =&gt; array(
        'download' =&gt; 'laadi alla',
        'page_title' =&gt; '%s allalaadimine',
        'page_desc' =&gt; 'Mageia ISO-t&#245;mmiste allalaadimine paigaldamiseks ja kasutamiseks Live-s&#252;steemina.',
        'page_kw' =&gt; 'mageia, tarkvara, allalaadimine, operatsioonis&#252;steem, ISO, arvuti, torrent, ftp',
        'page_h1' =&gt; '%s allalaadimine',
        'warn_1' =&gt; 'Ettevaatust!
            See EI OLE: igap&#228;evaseks kasutamiseks, avalikuks tutvustamiseks, isiklikuks v&#245;i t&#246;&#246;alaseks p&#252;sitarbimiseks.
            See ON: AINULT arendajatele, pakendajatele ja testijatele.',
        'warn_2' =&gt; 'Mida te ka ei v&#245;taks pakutava ISO-t&#245;mmisega ette,
                teete te seda t&#228;ielikult omal riisikol ja ise vastutades.',
        'title_ok' =&gt; 'Kas soovite ikka veel Mageia 1 alla laadida ja testida?',
        'dl_help' =&gt; 'Valige lihtsalt k&#245;ige paremini sobiv ISO-t&#245;mmis. Kui te pole kindel, valige &#252;ks kahest esimesest.',
        'changes_since_a2' =&gt; 'Muudatused p&#228;rast Beta 2',
        'release_docs' =&gt; 'V&#228;ljalaskedokumendid',
        'whatismageia' =&gt; 'Mis on Mageia?',
        'size' =&gt; 'Suurus',
        'flavour' =&gt; 'Variant',
        'language' =&gt; 'Keel',
        'link' =&gt; 'Otselink',
        'dl_shld_start' =&gt; '%s allalaadimine peaks algama m&#245;ne sekundi p&#228;rast',
        'dl_size' =&gt; '(alla tuleb laadida umbes %s).',
        'alt_download' =&gt; 'Kui allalaadimine ei alga, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;kl&#245;psake siia&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Niipea kui allalaadimine on l&#245;petatud, tuleks kontrollida signatuuride vastavust:',
        'signs_check_2' =&gt; 'Kui signatuurid ei klapi, &#228;rge kasutage seda ISO-t. Kontrollige veel kord ja p&#252;&#252;dke ISO uuesti alla laadida.',
        'dl_mirror_loc' =&gt; 'Selle &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; allalaadimise peegelsaidi asukohaks on %s (%s).',
        'dl_alt_mirrors' =&gt; 'Kui see teie puhul ei toimi, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;proovige kasutada teisi peegelsaite&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Kuidas see teile meeldib?',
        'give_feedback' =&gt; 'Me ootame v&#228;ga teie muljeid Mageia 1 kohta, mida te v&#245;ite jagada n&#228;iteks j&#228;rgmistes kohtades:
                &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;meie foorumites&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;meie ajaveebis&lt;/a&gt;, &lt;em&gt;oma&lt;/em&gt; ajaveebis,
                Twitteris (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                Igal juhul viidake palun aadressile &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Kui satute silmitsi veaga, vaadake palun, &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;kuidas sellest teada anda&lt;/a&gt;
                    meie vigade andmebaasis, et v&#245;iksime probleemi lahendada parimal viisil.',
        'notify_web' =&gt; 'Kui satute silmitsi probleemiga allalaadimise edenemise ajal v&#245;i allalaadimiste lehek&#252;lgedel, teavitage palun sellest
veebimeeskonda Freenode IRC-kanalil &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt;, et v&#245;iksime probleemi lahendada v&#245;imalikult ruttu.',
        'wanttohelp?' =&gt; 'Kas soovite aidata? %s&#220;hinege meiega!%s',
        'ucanhelp' =&gt; 'Jah, ka teie saate aidata! Mageia kujutab endast kogu maailma paljude &#245;nnelike vabatahtlike soovide ja koost&#246;&#246; tulemust.',
        'wherehelp' =&gt; 'Te saate projektile kaasa aidata mitmel moel.
            Selleks v&#245;ib olla reklaamimise vallas eeskuju andmine,
            %ssuhtlemine%s, %sveebikujundus ja arendamine%s,
            tarkvara vallas selle v&#228;ljat&#246;&#246;tamine ja arendamine,
            %st&#245;lkimine%s, %spakendamine%s, %skvaliteedikontroll ja testimine%s,
            levitamine, kogukonna puhul toetus ja kogukonna elavdamine,
            %sraha annetamine%s,
            riistvara, majutuse ja aja pakkumine, kas v&#245;i lihtsalt l&#245;bu p&#228;rast kaasal&#246;&#246;mine.',
        'all_languages' =&gt; 'Toetatud on kuni 167 keelt: eesti, hispaania, hollandi, inglise, itaalia, poola, portugali, prantsuse, rootsi, saksa, taani ja veel palju teisi!
            Vaadake &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;t&#228;ielikku nimekirja&lt;/a&gt;.',
        'euro_languages' =&gt; 'Euroopa keelevalik on j&#228;rgmine: saksa, inglise, hispaania, prantsuse, itaalia, portugali.
            Stabiilses v&#228;ljalaskes tuleb keelevalik suurem.',
        'All supported' =&gt; 'K&#245;ik toetatud',
        'limited_languages' =&gt; 'Piiratud: hispaania, inglise, itaalia, katalaani, poola, portugali, prantsuse, saksa, ukraina, ungari, valgevene',
        'English' =&gt; 'Inglise',
        'Limited' =&gt; 'Piiratud',
        'European set' =&gt; 'Euroopa keeled'
    ),
    'nb' =&gt; array(
        'download' =&gt; 'last ned',
        'page_title' =&gt; 'Last ned %s',
        'page_desc' =&gt; 'Her kan du laste ned Mageias installerbare og direkte kj&#248;rbare ISO-avtrykk.',
        'page_kw' =&gt; 'mageia, programvare, nedlasting, operativsystem, ISO, datamaskin, torrent, ftp',
        'page_h1' =&gt; 'Last ned %s',
        'warn_1' =&gt; 'Advarsel.
            Dette avtrykket er laget med tanke p&#229; utviklere, pakkere, testbrukere og andre involvert i milj&#248;et rundt Mageia. Det er ikke laget for normal bruk.',
        'warn_2' =&gt; 'Dette ISO-avtrykket brukes p&#229; eget ansvar.',
        'title_ok' =&gt; 'Vil du fortsatt laste ned og teste Mageia 1 beta1?',
        'dl_help' =&gt; 'Velg ISO-avtrykket som best passer dine behov. Hvis du er usikker, anbefaler vi at du velger et av de &#248;verste p&#229; lista.',
        'changes_since_a2' =&gt; 'Endringer siden Alpha 2',
        'release_docs' =&gt; 'Utgivelsesdokumenter',
        'whatismageia' =&gt; 'Hva er Mageia?',
        'size' =&gt; 'St&#248;rrelse',
        'flavour' =&gt; 'Variant',
        'language' =&gt; 'Spr&#229;k',
        'link' =&gt; 'Direkte lenke',
        'dl_shld_start' =&gt; 'Nedlastingen av %s starter om noen f&#229; sekunder',
        'dl_size' =&gt; '(nedlastingsst&#248;rrelsen er omtrent %s).',
        'alt_download' =&gt; 'Dersom nedlastingen ikke starter, kan du &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klikke her&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Kontroller at sjekksummene samsvarer n&#229;r nedlastingen er ferdig.',
        'signs_check_2' =&gt; 'Dersom sjekksummene ikke samsvarer, m&#229; du laste ned dette avtrykket p&#229; nytt og gjenta steget over.',
        'dl_mirror_loc' =&gt; 'Dette &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; Speilet for nedlastinga er plassert i %s (%s).',
        'dl_alt_mirrors' =&gt; 'Dersom dette ikke virker for deg, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;kan du velge et av disse speilene&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Hva synes du om dette?',
        'give_feedback' =&gt; 'Vi trenger din tilbakemelding om Mageia 1 beta1. Bruk derfor
                &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumet&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;bloggen&lt;/a&gt;, &lt;em&gt;din egen blogg&lt;/em&gt;,
                eller &lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt; p&#229; Twitter, for &#229; fortelle oss hva du mener.
                Ikke glem &#229; lenke til &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Dersom du finner en feil, kan du rapportere den i v&#229;rt feilrapporteringsverkt&#248;y. Fremgangsm&#229;ten finner du &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;her&lt;/a&gt;.',
        'notify_web' =&gt; 'Hvis du oppdager et problem med nedlastingssidene, kan du ta kontakt med de ansvarlige i kanalen
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; p&#229; IRC-nettverket Freenode.
V&#230;r klar over at vi fortsatt lokaliserer infrastrukturen v&#229;r.',
        'wanttohelp?' =&gt; '&#216;nsker du &#229; hjelpe til? %sDelta!%s',
        'ucanhelp' =&gt; 'Selvf&#248;lgelig kan du! Mageia er resultatet av viljen og samarbeidet til mange friviligge bidragsytere over hele verden.',
        'wherehelp' =&gt; 'Det er mange oppgaver som skal utf&#248;res og vi trenger dine bidrag.
            Du kan for eksempel v&#230;re en talsperson, teste prototyper,
            h&#229;ndtere %skommunikasjon%s, bidra til %snettdesignet &amp;amp; utviklingen av denne%s,
            involvere deg i programvaredesign, utvikling,
            %slokalisering%s, %spakking%s, %skvalitetssikring &amp;amp; testing%s,
            levering, felleskapsst&#248;tte &amp;amp; animasjon, donasjoner som 
            %spenger%s, maskinvare og lagringsplass for &#229; dele moroa',
        'all_languages' =&gt; 'S&#229; mange som 167 spr&#229;k er st&#248;ttet; tysk, engelsk, spansk, fransk, italiensk, norsk, portugisisk, svensk, nederlandsk, polsk, dansk og mange flere.
            Se lista over &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;st&#248;ttede spr&#229;k&lt;/a&gt; for mer informasjon.',
        'euro_languages' =&gt; 'Europeiske spr&#229;k som tysk, engelsk, spansk, fransk, italiensk, portugisisk.
            Flere spr&#229;k vil v&#230;re tilgjengelige i den stabile versjonen.',
        'limited_languages' =&gt; 'Begrenset st&#248;tte for hviterussisk, katalansk, tysk, engelsk, spansk, fransk, ungarsk, italiensk, polsk, portugisisk, ukrainsk',
        'All supported' =&gt; 'Full st&#248;tte',
        'English' =&gt; 'Engelsk',
        'Limited' =&gt; 'Begrenset',
        'European set' =&gt; 'Europeisk sett'
    ),
    'ro' =&gt; array(
        'download' =&gt; 'desc?rcare',
        'page_title' =&gt; 'Desc?rca?i %s',
        'page_desc' =&gt; 'Locul &#238;n care pute?i desc?rca imaginile ISO instalabile ?i ISO.',
        'page_kw' =&gt; 'mageia, software, desc?rcare, sistem de operare, ISO, calculator, torrent, ftp',
        'page_h1' =&gt; 'Desc?rca?i %s',
        'warn_1' =&gt; 'Aten?ie!
            Aceast? versiune NU ESTE PENTRU: utilizare, recenzii, evaluare personal? sau &#238;n produc?ie.
            Aceast? versiune este PENTRU: dezvoltatori, &#238;mpachetatori ?i testori.',
        'warn_2' =&gt; 'Indiferent ce dori?i s? face?i cu imaginea ISO furnizat?
               o face?i pe propriul risc ?i pe propria voastr? r?spundere.',
        'title_ok' =&gt; 'Sigur dori?i s? desc?rca?i ?i s? testa?i Mageia 1?',
        'dl_help' =&gt; 'Alege?i imaginea ISO care vi-se potrive?te; dac? nu s&#238;nte?i sigur, alege?i dintre primele dou?.',
        'changes_since_a2' =&gt; 'Modific?ri fa?? de Alfa 2',
        'release_docs' =&gt; 'Documentele edi?iei',
        'whatismageia' =&gt; 'Ce este Mageia?',
        'size' =&gt; 'M?rime',
        'flavour' =&gt; 'Variant?',
        'language' =&gt; 'Limb?',
        'link' =&gt; 'Leg?tur? direct?',
        'dl_shld_start' =&gt; 'Desc?rcarea lui %s ar trebui s? &#238;nceap? &#238;n c&#238;teva secunde',
        'dl_size' =&gt; '(m?rimea desc?rc?rii este &#238;n jur de %s).',
        'alt_download' =&gt; 'Dac? desc?rcarea nu se lanseaz?, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;ap?sa?i aici&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Imediat ce s-a &#238;ncheiat desc?rcarea, ar trebui s? verifica?i semn?turile:',
        'signs_check_2' =&gt; 'Dac? nu se potrivesc, nu utiliza?i acest ISO. Reverifica?i ?i &#238;ncerca?i s?-l desc?rca?i din nou.',
        'dl_mirror_loc' =&gt; 'Acest server alternativ &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; este localizat &#238;n %s (%s).',
        'dl_alt_mirrors' =&gt; 'Dac? nu func?ioneaz? bine, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;&#238;ncerca?i ?i aceste servere alternative&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Ce p?rere ave?i?',
        'give_feedback' =&gt; 'S&#238;nte?i bine venit s? ne spune?i ce p?rere ave?i despre Mageia 1, oric&#238;nd dori?i:
                pe &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumurile noastre&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;blogul nostru&lt;/a&gt;, pe blogul &lt;em&gt;vostru&lt;/em&gt;,
                pe Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                &#206;n orice caz, nu uita?i s? face?i o timitere la &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Dac? &#238;nt&#238;lni?i o eroare, v? rug?m s? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;ne inforrma?i&lt;/a&gt;
                    ca s-o putem corecta.',
        'notify_web' =&gt; 'Dac? remarca?i vreo problem? cu procesul/pagina de desc?rcare, v? rug?m s? &#238;nforma?i echipa Web pe
canalul IRC &lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; de pe Freenode, ca s-o putem trata.
De remarcat c? traducerile s&#238;nt &#238;n curs.',
        'wanttohelp?' =&gt; 'Vre?i s? ajuta?i? %sAl?tura?i-v? nou?!%s',
        'ucanhelp' =&gt; 'Da, se poate! Mageia este rezultatul dorin?ei ?i a muncii multor contribuitori bucuro?i din &#238;ntreaga lume.',
        'wherehelp' =&gt; 'Exist? o mul?ime de modalit??i prin care pute?i contribui la acest proiect.
            Fie prin %scomunicare%s, %sconcep?ie ?i dezvoltare Web%s,
            concep?ia ?i dezvoltarea de aplica?ii,
            %straducere%s, %s&#238;mpachetare%s, %steste de calitate%s,
            livrarea, suportul ?i animarea comunit??ii,
            oferind %sdona?ii%s &#238;n bani, componente, g?zduire, sau
            din timpul vostru, pentru partajarea distrac?iei.',
        'all_languages' =&gt; 'Toate incluse: &#238;n jur de 167 de limbi ?i dialecte s&#238;nt disponibile: german?, englez?, spaniol?, francez?, italian?, portughez?, suedez?, olandez?, polonez?, danez? ?i multe altele!
            Consulta?i &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista complet?&lt;/a&gt;.',
        'euro_languages' =&gt; 'Setul de limbi europene: german?, englez?, spaniol?, francez?, italian?, portughez?.
            ?i mai multe limbi vor fi disponibile pentru versiunea final?.',
        'limited_languages' =&gt; 'Limitate: bielorus?, catalan?, german?, englez?, spaniol?, francez?, maghiar?, italian?, polonez?, portughez?, ucrainian?',
        'All supported' =&gt; 'Toate incluse',
        'English' =&gt; 'Englez?',
        'Limited' =&gt; 'Limitat?',
        'European set' =&gt; 'Limbi europene'
    ),
    'ru' =&gt; array(
        'download' =&gt; '?????????',
        'page_title' =&gt; '???????? %s',
        'page_desc' =&gt; '????? ?? ?????? ????????? ???????????? ? ??????????? ISO ?????? Mageia.',
        'page_kw' =&gt; 'mageia, ?????????, ???????, ?????????, ???????????? ???????, ?????, ?????????, ???????, ftp',
        'page_h1' =&gt; '????????? %s',
        'warn_1' =&gt; '????????!
            ??? ?? ???: ????????? ???????, ??????? ??? ????????????????? ?????????????.
            ??? ???: ???????????? ?????????????? ? ????????????.',
        'warn_2' =&gt; '????? ?? ?? ?????? ? ??????????????? ??????? ?????
                ?? ??????? ??? ?? ???? ????? ? ????.',
        'title_ok' =&gt; '?? ??? ??? ?????? ??????? ? ?????????????? Mageia 1?',
        'dl_help' =&gt; '?????? ???????? ?????????? ??? ?????; ???? ?? ?? ????????, ??? ????? ??????? ???? ?? ??????.',
        'changes_since_a2' =&gt; '????????? ?? ????????? ? Beta 2',
        'release_docs' =&gt; '???????????? ?? ??????',
        'whatismageia' =&gt; '??? ????? Mageia?',
        'size' =&gt; '??????',
        'flavour' =&gt; '???????',
        'language' =&gt; '????',
        'link' =&gt; '?????? ??????',
        'dl_shld_start' =&gt; '???????? %s ?????? ???????? ????? ????????? ??????',
        'dl_size' =&gt; '(?????? ??????????? ????? ????? %s).',
        'alt_download' =&gt; '???? ???????? ?? ??????????, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;??????? ?????&lt;/a&gt;.',
        'signs_check_1' =&gt; '?? ?????????? ???????? ?????????? ????????? ? ?????????? ??????????? ????:',
        'signs_check_2' =&gt; '???? ??????????? ????? ?? ????????? ?? ??????????? ?????. ????????? ??? ???, ? ?????????? ??????? ??? ?????.',
        'dl_mirror_loc' =&gt; '??? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ??????? ???????? ???????????? ? %s (%s).',
        'dl_alt_mirrors' =&gt; '???? ??? ??? ?? ???????, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????????? ?????? ????????? ??????&lt;/a&gt;.',
        'whatdouthink?' =&gt; '??? ?? ?? ???? ????????',
        'give_feedback' =&gt; '?? ????? ???? ????? ??????? ? ???????????? ? Mageia 1, ??? ?? ?? ?? ????:
                ?? &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;????? ???????&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;????? ?????&lt;/a&gt;, ?? &lt;em&gt;?????&lt;/em&gt; ?????,
                ? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                ? ????? ??????, ?????????? ?????????? ?????? ?? &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; '???? ?? ????? ??????, ?????????? &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;??????????, ??? ???????? ? ???&lt;/a&gt;
                    ? ???? ???? ??????, ????? ?? ????? ?????? ?? ?????????.',
        'notify_web' =&gt; '???? ? ??? ???? ???????? ? ?????????/?????????? ????????, ??????????, ???????? ?? ???? Web ??????? ? ?????? 
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; ?? Freenode IRC, ????? ?? ????? ?????? ??? ???????? ??? ????? ??????.
???????, ??? ???????? ??? ? ????????.',
        'wanttohelp?' =&gt; '?????? ??????? %s???????????????!%s',
        'ucanhelp' =&gt; '??, ?? ??????! Mageia ??? ????????? ???? ? ?????????????? ????????? ??????? ??????????? ?????????? ?? ???? ??????? ????.',
        'wherehelp' =&gt; '???? ????????? ???????? ? ??????? ?? ?????? ?????? ???? ????? ? ??????.
            ???? ?? ??????????, ?????????????,
            %s?????%s, %s??? ?????? ? ??????????%s,
            ?????? ???????????? ???????????, ????????????????,
            %s???????????%s, %s?????? ???????%s, %s???????? ???????? ? ????????????%s,
            ??????????????: ????????? ??????????,
            %s???????? ???????%s,
            ????????????, ????????, ???????, ?????????? ?????? ????????????.',
        'all_languages' =&gt; 'Up to 167 locales are supported: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
            See the &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;comprehensive list&lt;/a&gt;.',
        'euro_languages' =&gt; 'Europa set of languages is: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, polski, portugu&#234;s, ???????.
            More languages will be made available for the stable release.',
        'All supported' =&gt; 'All supported',
        'limited_languages' =&gt; 'Limited: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
        'English' =&gt; 'English',
        'Limited' =&gt; 'Limited',
        'European set' =&gt; 'European set'
        
    ),
    'tr' =&gt; array(
        'download' =&gt; 'indir',
        'page_title' =&gt; '%s indirin',
        'page_desc' =&gt; 'Mageia\' n?n kurulabilir ve &#231;al??an ISO kal?plar?n? indirebilece?iniz yerler.',
        'page_kw' =&gt; 'mageia, yaz?l?m, indir, i?letim sistemi, ISO, bilgisayar, torrent, ftp',
        'page_h1' =&gt; '%s s&#252;r&#252;m&#252;n&#252; indirin',
        'warn_1' =&gt; 'Uyar?!
            Bu s&#252;r&#252;m ?unlar i&#231;in UYGUN DE??LD?R: genel kullan?m, inceleme, ki?isel veya &#252;retime y&#246;nelik y&#252;kseltme.
            Bu s&#252;r&#252;m ?unlar i&#231;in UYGUNDUR: SADECE geli?tiriciler, paketleyiciler, deneme kullan?c?lar?.',
        'warn_2' =&gt; 'Sunulan ISO disk kal?b? ile ne yaparsan?z sadece
                kendiniz sorumlu olur ve risk alm?? olursunuz.',
        'title_ok' =&gt; 'Yine de Mageia 1 s&#252;r&#252;m&#252;n&#252; indirmek ve denemek istiyor musunuz?',
        'dl_help' =&gt; 'Size uygun olan ISO kal?b?n? se&#231;in; emin de?ilseniz ilk ikisinden se&#231;ebelirisiniz.',
        'changes_since_a2' =&gt; 'Alfa 2\' den beri yap?lan de?i?iklikler',
        'release_docs' =&gt; 'Yay?m belgeleri',
        'whatismageia' =&gt; 'Mageia nedir?',
        'size' =&gt; 'Boyut',
        'flavour' =&gt; 'T&#252;r',
        'language' =&gt; 'Dil',
        'link' =&gt; 'Do?rudan ba?lant?',
        'dl_shld_start' =&gt; '%s indirmeniz bir ka&#231; saniye i&#231;inde ba?layacakt?r',
        'dl_size' =&gt; '(indirme boyutu yakla??k olarak %s).',
        'alt_download' =&gt; '?ndirme i?lemi ba?lamad?ysa, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;buraya t?klay?n&lt;/a&gt;.',
        'signs_check_1' =&gt; '?ndirme i?leminiz tamamlan?r tamamlanmaz imazalar?n e?le?ip e?le?medi?ini denetleyin:',
        'signs_check_2' =&gt; '?mzalar e?le?miyorsa bu ISO kal?b?n? kullanmay?n. Bir kez daha denetleyin ve yeniden indirin.',
        'dl_mirror_loc' =&gt; 'Bu &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; indirme yans?s? %s (%s) &#252;zerinde yer almaktad?r.',
        'dl_alt_mirrors' =&gt; 'Bu yans? size hizmet veremiyorsa, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;di?er yans?lar? kullan?n&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Hakk?nda ne d&#252;?&#252;n&#252;yorsunuz?',
        'give_feedback' =&gt; 'Mageia 1 hakk?ndaki izlenimlerinizi bizimle payla??n::
                &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;forumlar?m?zda&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;web g&#252;nl&#252;m&#252;zde&lt;/a&gt;, &lt;em&gt;kendi&lt;/em&gt; web g&#252;nl&#252;?&#252;n&#252;zde,
                Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                Her durumda, l&#252;tfen &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt; adresimize ba?lant? verin.',
        'report_bug' =&gt; 'Bir hata ile kar??la??rsan?z, l&#252;tfen hata veritaban?m?zda 
                    &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;nas?l raporlayaca??n?za bak?n&lt;/a&gt; b&#246;ylece biz de en uygun &#231;&#246;z&#252;m&#252; sunabilelim.',
        'notify_web' =&gt; '?ndirme veya i?lem sayfalar?nda bir sorunla kar??la??rsan?z, l&#252;tfen
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC kanal?nda bildirin.
&#199;evirilerin yap?lmakta oldu?unu unutmay?n.',
        'wanttohelp?' =&gt; 'Yard?mc? olmak istiyor musunuz? %sBize kat?l?n!%s',
        'ucanhelp' =&gt; 'Evet, yapabilirsiniz! Mageia, d&#252;nya &#231;ap?nda bir &#231;ok mutlu g&#246;n&#252;ll&#252;n&#252;n i?birli?i ve ortak arzusunun neticesidir.',
        'wherehelp' =&gt; 'Projemize katk?da bulunabilece?iniz bir &#231;ok alan var:
            Projeyi tan?tmak, &#246;n geli?tirmeleri yapmak,
            %sileti?im sa?lamak%s, %sWeb tasar?m?n? yapmak &amp;amp; geli?tirmek%s,
            yaz?l?m tasar?m? ve geli?tirmesi i&#231;in,
            %syerelle?tirme%s, %spaketleme%s, %skalite denetimi &amp;amp; denemek%s,
            yayg?nla?t?rmak, topluluk deste?i sa?lamak i&#231;in &amp;amp; canland?rma yapmak,
            donan?m, sunucu hizmetleri, zaman harcama giderlerini kar??lamak i&#231;in
            %spara ba???lamak%s, e?lenceyi payla?mak.',
        'all_languages' =&gt; 'T&#252;m&#252; desteklenmektedir: 167 kadar dil desteklenmektedir: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk and so much more!
            Kar??la?t?rmal? bir liste i&#231;in &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;wiki sayfam?z? ziyaret edin&lt;/a&gt;.',
        'euro_languages' =&gt; 'Avrup dilleri: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s.
            Kararl? s&#252;r&#252;mde daha &#231;ok dil desteklenecektir.',
        'limited_languages' =&gt; 'S?n?rl?: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italian, Polish, Portuguese, Ukrainian',
        'All supported' =&gt; 'T&#252;m&#252; desteklenmektedir',
        'English' =&gt; 'English',
        'Limited' =&gt; 'S?n?rl?',
        'European set' =&gt; 'Europa set'
    ),
    'zh-tw' =&gt; array(
        'download' =&gt; '??',
        'page_title' =&gt; '?? %s',
        'page_desc' =&gt; '???????? Mageia ????? Live ???????',
        'page_kw' =&gt; 'mageia, software, download, operating system, ISO, computer, torrent, ftp',
        'page_h1' =&gt; '?? %s',
        'warn_1' =&gt; '????
            ????????????????????????????
            ???????????????????????',
        'warn_2' =&gt; '????????????????????????????',
        'title_ok' =&gt; '????????? Mageia 1 ??',
        'dl_help' =&gt; '???????? ISO ??????????????????????????',
        'changes_since_a2' =&gt; 'Beta 2 ?????',
        'release_docs' =&gt; '????',
        'whatismageia' =&gt; '??? Mageia?',
        'size' =&gt; '??',
        'flavour' =&gt; '????',
        'language' =&gt; '??',
        'link' =&gt; '????',
        'dl_shld_start' =&gt; '????? %s ??????????',
        'dl_size' =&gt; '(????????? %s).',
        'alt_download' =&gt; '?????????&lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;????&lt;/a&gt;?',
        'signs_check_1' =&gt; '?????????????? md5 ? sha1 ????? ISO ???????',
        'signs_check_2' =&gt; '?? md5 ? sha1 ?????????????? ISO? ?????????????',
        'dl_mirror_loc' =&gt; '?? &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; ???????? %s (%s)?',
        'dl_alt_mirrors' =&gt; '???????? &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;??????????&lt;/a&gt;?',
        'whatdouthink?' =&gt; '????????',
        'give_feedback' =&gt; '???????? Mageia 1 ?????????????
                &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;??????&lt;/a&gt;?
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;?????&lt;/a&gt;??&lt;em&gt;??&lt;/em&gt;???
                ?? Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;)?
                ?????????&lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;?',
        'report_bug' =&gt; '????????????&lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;???????&lt;/a&gt;
                    ???????????????????????',
        'notify_web' =&gt; '?????????/????????
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; Freenode IRC ??????????????????????????????????????????',
        'wanttohelp?' =&gt; '?????%s?????%s',
        'ucanhelp' =&gt; '????????Mageia ??????????????????????',
        'wherehelp' =&gt; '???????????????
            ???????????
            %s??%s?%s???????%s?
            ??????????
            %s???%s?%s??%s?%s?????%s?
            ?????????????
            ??%s????%s?
            ??????????????????????',
        'all_languages' =&gt; 'All supported: ???? 167 ???????????????????????????????????????????????
            ??&lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;?????&lt;/a&gt;?',
        'euro_languages' =&gt; '????????????????????????????????
            ?????????????',
        'limited_languages' =&gt; '????????????????????????????????????????????????????',
        'All supported' =&gt; '????',
        'English' =&gt; '??',
        'Limited' =&gt; '???',
        'European set' =&gt; '????'
    ),
    'it' =&gt; array(
        'download' =&gt; 'scarica',
        'page_title' =&gt; 'Scarica %s',
        'page_desc' =&gt; 'Dove puoi scaricare le immagini ISO live e installabili di Mageia.',
        'page_kw' =&gt; 'mageia, software, download, sistema operativo, ISO, computer, torrent, ftp',
        'page_h1' =&gt; 'Scarica %s',
        'warn_1' =&gt; 'Attenzione!
            NON &#200; PER: uso, recensioni pubbliche, valutazioni personali o di produzione.
            &#200; PER: sviluppatori, packager, SOLO per utenti che vogliono fare del test.',
        'warn_2' =&gt; 'Quasiasi cosa tu faccia con queste immagini ISO che forniamo,
                sar&#224; fatta a tuo rischio e pericolo e ti assumerai la piena responsabilit&#224;.',
        'title_ok' =&gt; 'Vuoi ancora scaricare e testare Mageia 1?',
        'dl_help' =&gt; 'Prendi semplicemente l immagine ISO pi&#249; adatta alle tue necessit&#224;; se non sei sicuro, dovresti scegliere tra le prime due.',
        'changes_since_a2' =&gt; 'Modifiche dalla Beta 2',
        'release_docs' =&gt; 'Documenti della Release',
        'whatismageia' =&gt; 'Cosa &#232; Mageia?',
        'size' =&gt; 'Dimensioni',
        'flavour' =&gt; 'Supporto',
        'language' =&gt; 'Lingua',
        'link' =&gt; 'Link diretto',
        'dl_shld_start' =&gt; 'Il tuo download di %s inizier&#224; fra pochi secondi',
        'dl_size' =&gt; '(la dimensione di download &#232; di circa %s).',
        'alt_download' =&gt; 'Se il download non inizia, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;fai clic qua&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Appena il download &#232; completo, dovresti controllare che le firme siano uguali:',
        'signs_check_2' =&gt; 'Se le firme non sono uguali, non usare questa ISO. Controlla nuovamente e prova il download nuovamente.',
        'dl_mirror_loc' =&gt; 'Questo &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; mirror per il download si trova in %s (%s).',
        'dl_alt_mirrors' =&gt; 'Se non funziona bene, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;prova questi altri mirror&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Che cosa ne pensi?',
        'give_feedback' =&gt; 'Sei il benvenuto per darci le tue impressioni su Mageia 1, in qualsiasi parte:
                nei &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;nostri forum&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;nel nostro blog&lt;/a&gt;, nel &lt;em&gt;tuo&lt;/em&gt; blog,
                su Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                In qualsiasi caso, fai riferimento a &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Se ti imbatti in un bug, scopri &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;come segnalarlo&lt;/a&gt;
                    nel nostro database dei bug in modo da risolverlo il prima possibile.',
        'notify_web' =&gt; 'Se noti un problema con le pagine/processo di download, segnalalo alla squadra Web sul canale Freenode IRC
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; in modo da risolverlo il prima possibile.
Ricorda che le traduzioni sono in corso.',
        'wanttohelp?' =&gt; 'Vuoi aiutare? %sUnisciti a Noi!%s',
        'ucanhelp' =&gt; 'Certo che puoi! Mageia &#232; il risultato della volont&#224; e della collaborazione di molte persone volontarie sparsi nel mondo.',
        'wherehelp' =&gt; 'Ci sono molte aree nelle quali si pu&#242; contribuire al progetto.
            Ad esempio avvocatura,
            %scomunicazione%s, %sWeb design &amp;amp; sviluppo%s,
            per design del software, sviluppo,
            %slocalization%s, %spackaging%s, %sQA &amp;amp; testing%s,
            delivery, per il supporto alla comunit&#224; &amp;amp; animazione,
            per %sdonare soldi%s,
            hardware, hosting, tempo, per condividere il divertimento.',
        'all_languages' =&gt; 'Tutte supportate: sono supportate fino a 167 localizzazioni: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s, svenska, nederlands, polski, dansk e molte altre! 
            Vedi la &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;lista completa&lt;/a&gt;.',
        'euro_languages' =&gt; 'Set di lingue europee: Deutsch, English, espa&#241;ol, fran&#231;ais, italiano, portugu&#234;s.
            Per la release finale saranno disponibili pi&#249; lingue.',
        'limited_languages' =&gt; 'Limitate: Belarussian, Catalan, German, English, Spanish, French, Hungarian, Italiano, Polish, Portuguese, Ukrainian',
        'All supported' =&gt; 'Tutte supportate',
        'English' =&gt; 'Inglese',
        'Limited' =&gt; 'Limitate',
        'European set' =&gt; 'Set europeo'
    ),
    'cs' =&gt; array(
        'download' =&gt; 'stahov&#225;n&#237;',
        'page_title' =&gt; 'St&#225;hnout %s',
        'page_desc' =&gt; 'Kde se daj&#237; st&#225;hnout instalovateln&#233; a ?iv&#233; ISO obrazy distribuce Mageia.',
        'page_kw' =&gt; 'mageia, software, stahov&#225;n&#237;, opera?n&#237; syst&#233;m, ISO, po?&#237;ta?, torrent, ftp',
        'page_h1' =&gt; 'St&#225;hnout %s',
        'warn_1' =&gt; 'Bu?te opatrn&#237;!
            Tato verze NEN&#205; ZAM&#221;?LENA PRO: denn&#237; pou?&#237;v&#225;n&#237;, recenzov&#225;n&#237;, osobn&#237; nebo produk?n&#237; nasazen&#237;.
            Tato verze JE ZAM&#221;?LENA PRO: v&#253;voj&#225;?e, tv?rce bal&#237;?k?, POUZE pro u?ivatele, kte?&#237; ji cht?j&#237; vyzkou?et.',
        'warn_2' =&gt; 'Cokoli hodl&#225;te ud?lat s poskytnut&#253;m ISO obrazem disku,
                ud?l&#225;te na sv&#233; vlastn&#237; riziko, na svou vlastn&#237; zodpov?dnost.',
        'title_ok' =&gt; 'Po?&#225;d je?t? chcete st&#225;hnout a vyzkou?et Mageia 1?',
        'dl_help' =&gt; 'Vyberte si vhodn&#253; ISO obraz. Pokud si n&#225;hodou nejste jisti, m?li byste si vybrat z prvn&#237;ch dvou.',
        'changes_since_a2' =&gt; 'Zm?ny od Beta 2',
        'release_docs' =&gt; 'Dokumenty k vyd&#225;n&#237;',
        'whatismageia' =&gt; 'Co je Mageia?',
        'size' =&gt; 'Velikost',
        'flavour' =&gt; 'Varianta',
        'language' =&gt; 'Jazyk',
        'link' =&gt; 'P?&#237;m&#253; odkaz',
        'dl_shld_start' =&gt; 'Stahov&#225;n&#237; %s by m?lo za?&#237;t b?hem n?kolika sekund',
        'dl_size' =&gt; '(velikost stahov&#225;n&#237; je %s).',
        'alt_download' =&gt; 'Pokud stahov&#225;n&#237; neza?alo, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;klepn?te zde&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Jakmile stahov&#225;n&#237; skon?&#237;, m?l byste porovnat podpisy:',
        'signs_check_2' =&gt; 'Pokud se podpisy neshoduj&#237;, tento ISO obraz nepou?&#237;vejte. Znovu je porovnejte, p?&#237;padn? jej zkuste st&#225;hnout znovu.',
        'dl_mirror_loc' =&gt; 'Tento &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; stahovac&#237; server je um&#237;st?n na %s (%s).',
        'dl_alt_mirrors' =&gt; 'Pokud tento ve va?em p?&#237;pad? nepracuje uspokojiv?, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;m??ete pou?&#237;t jin&#253; server&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'Co si o tom mysl&#237;te?',
        'give_feedback' =&gt; 'Pod?lte se s n&#225;mi o sv&#233; dojmy z Mageia 1 kdekoli budete cht&#237;t:
                na &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;na?ich f&#243;rech&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;na?em blogu&lt;/a&gt;, na &lt;em&gt;sv&#233;m&lt;/em&gt; blogu,
                na Twitteru (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                V ka?d&#233;m p?&#237;pad? uve?te odkaz na &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Pokud objev&#237;te n?jakou chybu, pod&#237;vejte se, pros&#237;m, &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;jak ji nahl&#225;sit&lt;/a&gt;
                    do na?&#237; datab&#225;ze chyb, abychom ji mohli opravit t&#237;m nejlep?&#237;m mo?n&#253;m zp?sobem.',
        'notify_web' =&gt; 'Pokud si pov?imnete n?jak&#253;ch pot&#237;?&#237; se stahov&#225;n&#237;m nebo se str&#225;nkami pro stahov&#225;n&#237;, uv?domte o tom, pros&#237;m, internetov&#253; t&#253;m na
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; kan&#225;lu Freenode IRC, abychom ji mohli opravit tak rychle, jak jen to je mo?n&#233;.
M?jte na pam?ti, ?e na p?ekladech se je?t? pracuje.',
        'wanttohelp?' =&gt; 'Chcete pomoci? %sP?idejte se k n&#225;m!%s',
        'ucanhelp' =&gt; 'Ano, m??ete! Mageia je v&#253;sledkem p?esv?d?en&#237; a spolupr&#225;ce mnoha dobrovoln&#237;k? z cel&#233;ho sv?ta.',
        'wherehelp' =&gt; 'Je zde mnoho oblast&#237;, ve kter&#253;ch se d&#225; projektu p?isp?t.
            Od p?edstavov&#225;n&#237; projektu ve?ejnosti, v&#253;voje produktu,
            %skomunikace%s, %sn&#225;vrhu internetov&#253;ch str&#225;nek &amp;amp; v&#253;voje%s,
            v oblasti n&#225;vrhu software, v&#253;voje,
            %slokalizace%s, %stvorby bal&#237;?k?%s, %sQA &amp;amp; testov&#225;n&#237;%s,
            podpory spole?enstv&#237; &amp;amp; baven&#237; se,
            po %sdarov&#225;n&#237; pen?z%s,
            za?&#237;zen&#237;, hostov&#225;n&#237;, ?as, a pod&#237;l na cel&#233; t&#233; z&#225;bav?.',
        'all_languages' =&gt; 'V?echny podporovan&#233;: je podporov&#225;no a? 167: ?e?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ital?tina, portugal?tina, ?v&#233;d?tina, nizozem?tina, pol?tina, d&#225;n?tina a mnoho dal?&#237;ch!
            Na jejich seznam se m??ete pod&#237;vat&lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;zde&lt;/a&gt;.',
        'euro_languages' =&gt; 'Seznam evropsk&#253;ch jazyk?: ?e?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ital?tina, portugal?tina, ?v&#233;d?tina, nizozem?tina, pol?tina, ru?tina.
            Dal?&#237; jazyky budou ve stabiln&#237;m vyd&#225;n&#237;.',
        'limited_languages' =&gt; 'Omezen&#233;: b?loru?tina, katal&#225;n?tina, n?m?ina, angli?tina, ?pan?l?tina, francouz?tina, ma?ar?tina, ital?tina, portugal?tina, ukrajin?tina',
        'All supported' =&gt; 'V?echny podporovan&#233;',
        'English' =&gt; 'Angli?tina',
        'Limited' =&gt; 'Omezen&#233;',
        'European set' =&gt; 'Seznam evropsk&#253;ch jazyk?'
    ),
    'pt' =&gt; array(
        'download' =&gt; 'download',
        'page_title' =&gt; 'Download %s',
        'page_desc' =&gt; 'Onde voc&#234; pode fazer download da imagens ISO da  Mageia instal&#225;vel e liveCDs.',
        'page_kw' =&gt; 'mageia, software, download, sistema operacional, ISO, computador, torrent, ftp',
        'page_h1' =&gt; 'Download %s',
        'warn_1' =&gt; 'Tenha cuidado!
            Isto N&#195;O &#201; PARA: uso, utiliza&#231;&#227;o publica, pessoal ou avalia&#231;&#227;o de produ&#231;&#227;o.
            Isto &#233; PARA: somente desenvolvedores, empacotadores e usu&#225;rios testadores.',
        'warn_2' =&gt; 'Basta escolher a imagem ISO que for melhor para voc&#234;. Se voc&#234; n&#227;o tiver certeza de qual &#233; a melhor para voc&#234;, voc&#234; deve escolher entre as duas primeiras.',
        'title_ok' =&gt; 'Voc&#234; ainda deseja fazer o download e teste com o Mageia 1?',
        'dl_help' =&gt; 'Basta escolher a imagem ISO que for melhor para voc&#234;. Se voc&#234; n&#227;o tiver certeza, voc&#234; deve escolher entre as duas primeiras.',
        'changes_since_a2' =&gt; 'Altera&#231;&#245;es desde o Beta 2',
        'release_docs' =&gt; 'Documentos de Lan&#231;amento',
        'whatismageia' =&gt; 'O que &#233; Mageia?',
        'size' =&gt; 'Tamanho',
        'flavour' =&gt; 'Op&#231;&#227;o',
        'popularity' =&gt; 'Popularidade',
        'language' =&gt; 'Idiomas',
        'link' =&gt; 'Link Direto',
        'dl_shld_start' =&gt; 'Seu download de %s deve iniciar dentro de alguns segundos',
        'dl_size' =&gt; '(o tamanho do download &#233; de aproximadamente %s).',
        'alt_download' =&gt; 'Se o download n&#227;o iniciar, &lt;a href=&quot;%s&quot; rel=&quot;nofollow&quot; title=&quot;%s&quot;&gt;clique aqui&lt;/a&gt;.',
        'signs_check_1' =&gt; 'Assim que o download estiver completo, voc&#234; deve verificar a assinatura correspondente:',
        'signs_check_2' =&gt; 'Se as assinaturas n&#227;o correponderem, n&#227;o use esta imagem ISO. Fa&#231;a dupla checagem e tente o download novamente.',
        'dl_mirror_loc' =&gt; 'Este &lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt; espelho de download est&#225; localizado em %s (%s).',
        'dl_alt_mirrors' =&gt; 'Se este n&#227;o funcionou bem para voc&#234;, &lt;a href=&quot;#om&quot; id=&quot;other_mirrors_btn&quot;&gt;verifique outro desses espelhos&lt;/a&gt;.',
        'whatdouthink?' =&gt; 'O que voc&#234; acha deste?',
        'give_feedback' =&gt; 'Voc&#234; &#233; muito bem-vindo para dar sua opini&#227;o sobre o Mageia 1, onde voc&#234; quiser:
                nos &lt;a href=&quot;<A HREF="http://forums.mageia.org/">http://forums.mageia.org/</A>&quot;&gt;our foruns&lt;/a&gt;,
                &lt;a href=&quot;<A HREF="http://blog.mageia.org/">http://blog.mageia.org/</A>&quot;&gt;our blog&lt;/a&gt;, em &lt;em&gt;seu&lt;/em&gt; blog,
                ou Twitter (&lt;a href=&quot;<A HREF="http://twitter.com/mageia_org">http://twitter.com/mageia_org</A>&quot;&gt;@mageia_org&lt;/a&gt;).
                Em qualquer caso, por favor, link para &lt;a href=&quot;<A HREF="http://mageia.org/">http://mageia.org/</A>&quot;&gt;mageia.org&lt;/a&gt;.',
        'report_bug' =&gt; 'Se voc&#234; encontrar um bug, por favor &lt;a href=&quot;/en/support/report-a-bug/&quot;&gt;veja como comunic&#225;-lo&lt;/a&gt;
                    em nosso banco de dados de bugs, para que n&#243;s possamos reoslv&#234;-lo da melhor maneira poss&#237;vel.',
        'notify_web' =&gt; 'Se voc&#234; observer um proplema com o processo/p&#225;gina de download, por favor, comunique a Equipe Web no
&lt;a href=&quot;<A HREF="irc://irc.freenode.net/#mageia-web">irc://irc.freenode.net/#mageia-web</A>&quot;&gt;#mageia-web&lt;/a&gt; canal Freenode IRC, para que possamos resolver isso o mais r&#225;pido poss&#237;vel.
Note que as tradu&#231;&#245;es est&#227;o no seu caminho',
        'wanttohelp?' =&gt; 'Precisa de ajuda? %sJunte-se a n&#243;s!%s',
        'ucanhelp' =&gt; 'Sim voc&#234; pode! Mageia &#233; o resultado da vontade e da colabora&#231;&#227;o de muitos volunt&#225;rios companheiros felizes em todo o mundo.',
        'wherehelp' =&gt; 'Existe uma s&#233;rie de &#225;reas onde se pode contribuir para o projeto.
           Seja na defesa, cria&#231;&#227;o,
            %scomunica&#231;&#227;o%s, %sWeb design &amp;amp; desenvolvimento%s,
            para design de software, desenvolvimento,
            %stradu&#231;&#227;o%s, %sempacotamento%s, %sQA &amp;amp; testando%s,
            fornecimento, para suporte comunit&#225;rio &amp;amp; anima&#231;&#227;o,
            for %sdonating money%s,
            hardware, hospedagem, tempo, para compartilhar divertimento.',
        'all_languages' =&gt; 'Todos os suportados&amp;nbsp;: at&#233; 167 idiomas s&#227;o suportados: 
            alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, italiano, portugu&#234;s, sueco, 
            holand&#234;s, polon&#234;s, dinamarqu&#234;s e muito mais! Veja &lt;a href=&quot;<A HREF="http://mageia.org/wiki/doku.php?id=tmp:supported_locales">http://mageia.org/wiki/doku.php?id=tmp:supported_locales</A>&quot;&gt;a lista completa&lt;/a&gt;.',
        'euro_languages' =&gt; 'Conjunto de idiomas europeu:
        alem&#227;o, espanhol (diversas variantes), espanhol, franc&#234;s, italiano,
        polon&#234;s, russo, portugu&#234;s do Brasil. Mais idiomas ser&#227;o
        disponibilizados para a vers&#227;o est&#225;vel.',
        'limited_languages' =&gt; 'Limitado: bielorrusso, catal&#227;o, alem&#227;o, ingl&#234;s, espanhol, franc&#234;s, h&#250;ngaro, polon&#234;s, italiano, portugu&#234;s, ucraniano',
        'All supported' =&gt; 'Todos suportados',
        'English' =&gt; 'Ingl&#234;s',
        'Limited' =&gt; 'Limitado',
        'European set' =&gt; 'Idiomas Europeus'
    ),
);
</PRE>


<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="001046.html">[Mageia-webteam] [Bug 1516] Last link of page &quot;For you&quot; is broken
</A></li>
	<LI>Next message: <A HREF="001041.html">[Mageia-webteam] [Bug 1365] URL field isn't shown in bug reports
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#1089">[ date ]</a>
              <a href="thread.html#1089">[ thread ]</a>
              <a href="subject.html#1089">[ subject ]</a>
              <a href="author.html#1089">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More information about the Mageia-webteam
mailing list</a><br>
</body></html>