summaryrefslogtreecommitdiffstats
path: root/rescue/tree
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-07-13 18:05:16 +0000
committerThierry Vignaud <tv@mageia.org>2013-07-13 18:05:16 +0000
commit7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc (patch)
tree61afecd1035da11b51121a2fc174fe8064470000 /rescue/tree
parenteb26a07e8822447ea2c5b2639d38ad77c0048306 (diff)
downloaddrakx-7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc.tar
drakx-7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc.tar.gz
drakx-7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc.tar.bz2
drakx-7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc.tar.xz
drakx-7bff2cf09a2784d0ef894fdc27006cec4cf8a6bc.zip
/usr/X11R6/bin is dead for years
Diffstat (limited to 'rescue/tree')
-rw-r--r--rescue/tree/etc/profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/tree/etc/profile b/rescue/tree/etc/profile
index 800ce85ae..17f0700dc 100644
--- a/rescue/tree/etc/profile
+++ b/rescue/tree/etc/profile
@@ -6,7 +6,7 @@
PROFILE_LOADED=1
-PATH=/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/mnt/sbin:/mnt/bin:/mnt/usr/sbin:/mnt/usr/bin
+PATH=/usr/bin:/bin:/sbin:/usr/sbin:/mnt/sbin:/mnt/bin:/mnt/usr/sbin:/mnt/usr/bin
PS1="[root@rescue \w]\\$ "
ls () { /bin/ls --color=auto -F "$@";}
'n262' href='#n262'>262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
<?php

$_t = array(
    'en' => array(
        'page_title' => 'Contribute to Mageia',
        'page_desc' => 'Here you can find out, how to contribute to the Mageia project',
        'page_kw' => 'mageia, contribute, howto, operating system',
        'page_h1' => 'Contribute to Mageia',
        'mageia_intro' => 'Many people from all over the world gather to build Mageia
                        &ndash; a Linux-based operating system <em>and</em>
                        a <a href="/en/about/code-of-conduct/">lively, fun community</a>
                        for <a href="/en/about/values/">building Free Software projects</a>.',
        'contribute_intro' => 'Contributing is open to anyone, this is Free Software!
                        If you are curious and willing to join,
                        there are things you can do,
                        depending on your time and skills;
                        you will always find someone to welcome and help/mentor
                        you if needed so that your contribution to the project can be as good as it can be!',
        'check_can_do' => 'Check what you could do below!',
        'browse_role' => 'Browse by role',
        'browse_time' => 'Browse by time',
        'h2_role' => 'Roles',
        'h3_support' => 'Helping users &amp; advocating the project',
        'text_support' => 'Want to welcome and help new users or share tips with experienced ones?
                                In <a href="https://wiki.mageia.org/en/IRC">IRC channels</a>,
                                <a href="http://forums.mageia.org/">forums</a>,
                                <a href="http://mageia.org/mailman/">mailing-lists</a>,
                                local events? Just get in touch with us via one of these channels and share the fun!',
        'h3_docu' => 'Writing, copywriting and documenting',
        'text_docu' => 'You have a taste for practical, clear, concise, proofread, nice writing?
                                You like to take the challenge of explaining clearly
                                complex ideas or systems and teaching others?
                                You know how to mix form &amp; content to push the right message?
                                Get in touch with our <a href="https://wiki.mageia.org/en/Documentation_team">Documentation team</a>!',
        'h3_i18n' => 'Translating',
        'text_i18n' => 'Mageia is localized in more than 180 languages!
                                Clarifying, completing, improving
                                translations of software, guides, tutorials, Web sites, marketing material,
                                etc. happens thanks to the effort of so many contributors.
                                Join <a href="https://wiki.mageia.org/en/Internationalisation_Team_(i18n)">them</a>!',
        'h3_triage' => 'Triaging',
        'text_triage' => 'Bugs happen! And some get reported. So, logically they need to be triaged
                                to make the task of the packagers/developers fixing them easier: validation (is the bug reproducible?), collecting the needed debugging info from the reporter, assigning the report properly.
                                <a href="https://wiki.mageia.org/en/Bug_Squad">Grow the Triage team</a> and be the link between users who report bugs
                                in the forums or mailing-lists, and the <a href="http://bugs.mageia.org/">Mageia Bugzilla</a>
                                used by developers.',
        'h3_qa' => 'Testing &amp; <abbr title="Quality Assurance">QA</abbr>',
        'text_qa' => 'We can\'t ship software if we are not confident it works well!
                                <a href="https://wiki.mageia.org/en/QA_Team">Testers and QA</a>
                                people make sure what we do (software, packages, ISO\'s, Web sites)
                                match our expectations for quality before they reach users.',
        'h3_marketing' => 'Marketing, Communication &amp; Evangelism',
        'text_marketing' => 'Better understanding of who uses and contributes to the project
                                to help them even more, making sure the Mageia voice is consistent and heard,
                                that\'s a job for the <a href="https://wiki.mageia.org/en/Marcom_Team">marcomm team</a>
                                (Marketing and Communication), on both global and local scales.',
        'h3_graphic' => 'Graphic &amp; UI design',
        'text_graphic' => 'Software isn\'t only about code neither is Mageia only about technology.
                                So make it human, practical and beautiful!
                                If you have a talent and experience in graphic design, ergonomics
                                <a href="https://wiki.mageia.org/en/Artwork_team">join the artwork team</a>!',
        'h3_dev' => 'Coding &amp; packaging',
        'text_dev' => 'Contribute to the core of the distribution with your technical skills!
                                Adding, fixing, patching and maintaining software to be included
                                in the distribution, from upstream projects or from Mageia-specific
                                sources. Join the <a href="https://wiki.mageia.org/en/Packagers_Team">Packagers team</a>!',
        'h3_web' => 'Web, tools, systems design &amp; administration',
        'text_web' => 'Mageia depends on infrastructure and tools that enable everyone
                                to collaborate. These need experts to build, maintain, develop, provide
                                and manage servers, connections, security, applications, data flow, etc.
                                It takes from <a href="https://wiki.mageia.org/en/Sysadmin_Team">system administrators</a>
                                to <a href="https://wiki.mageia.org/en/Web_team">Web designers/developers/integrators</a>
                                to manage this huge task.',
        'h3_mirror' => 'Mirroring',
        'text_mirror' => 'Making all the software provided by Mageia available requires
                                <a href="http://mirrors.mageia.org/">several mirrors
                                around the world</a>, to distribute ISO\'s and software packages.
                                If you have some disk space and bandwidth to share, please <a href="https://wiki.mageia.org/en/Mirrors_policy#How_to_.28become_a.29_mirror.3F">see how you can
                                provide an official Mageia mirror</a>.',
        'h3_donation' => 'Donating',
        'text_donation' => 'Financial donations help us allocate specific tasks, secure our infrastructure,
                                fund events, goodies &amp; transportation.
                                <a href="/en/thank-you/">200+ persons already expressed their trust in us</a>
                                with their money, hardware or other resources.
                                We keep a <a href="/en/about/reports/">public record of what we get and
                                    how we use it</a>.',
        'h3_data' => 'Data mining',
        'text_data' => 'There are tons of data out there, most of which we don\'t use,
                                or even know about. If you like to grab and analyze data
                                to reveal &amp; visualize it to spot what we can do even better,
                                get in touch!',
        'h3_design' => 'Designing, experimenting, revealing the unknown',
        'text_design' => 'Ideas are great, actionable prototypes are even better.
                                The Mageia project is not only about making a different Linux
                                distribution but also about building new products and experiences
                                with it and with the data around it.',
        'h2_time' => 'Time',
        'intro_time' => 'How much free time do you have? and how much of it do you want to commit to Mageia?
                        See what you can do:',
        'h3_minutes' => 'A few minutes',
        'array_minutes' => array('Stop by the <a href="http://forums.mageia.org/">forums</a>
                                    support section and check if you can answer a question.',
                    'Talk about the project to people around you, on your blog, your Twitter account,
                                    at your work place.',
                    'If you encounter a bug you can reproduce consistently,
                                    <a href="http://bugs.mageia.org/">submit a bug report</a>.',
                    'Make a <a href="/en/donate/">donation</a>!'),
        'h3_hours' => 'A few hours',
        'array_hours' => array('Stop by a Mageia event, like a test day to find, reproduce and help resolve bugs.',
                    'Subscribe to a team discussion list and follow what happens there,
                                    try to see how you can bring something useful to it.'),
        'h3_weeks' => 'A few weeks or more',
        'array_weeks' => array('Learn about free software, open source collaboration in general,
                                    and Mageia in particular.',
                    'If you are a student, consider talking to your tutor
                                    about participating into the project as part of your studies;
                                    you don\'t specifically need to be studying Computer Science to do so.')
    ),
    'cs' => array(
        'page_title' => 'Spolupracovat na Mageii',
        'page_desc' => 'Zde naleznete, jakým způsobem můžete přispět do projektu Mageia',
        'page_kw' => 'mageia, contribute, howto, operating system',
        'page_h1' => 'Spolupracovat na Mageii',
        'mageia_intro' => 'Mnoho lidí ze všech částí světa se shromáždilo, aby společně vytvářelo Mageiu
                        &ndash; na Linuxu postavený operační systém <em>a</em>
                        živé <a href="/en/about/code-of-conduct/">společenství</a>
                        pro <a href="/en/about/values/">tvorbu svobodných softwarových projektů</a>.',
        'contribute_intro' => 'Přispět může každý, toto je otevřený software!
                        Pokud jste zvědaví a ochotní se přidat,
                        jsou tu věci, které můžete udělat,
                        v závislosti na vašem čase a dovednostech;
                        vždy najdete někoho, kdo vás přivítá a pomůže vám/povede vás,
                        pokud to budete potřebovat, takže váš příspěvek projektu může být tak dobrý, jak jen to je možné!',
        'check_can_do' => 'Níže se podívejte na své možnosti spolupráce!',
        'browse_role' => 'Procházet podle úloh',
        'browse_time' => 'Procházet podle času',
        'h2_role' => 'Úlohy',
        'h3_support' => 'Pomoc uživatelům a vysvětlování projektu',
        'text_support' => 'Chcete přátelsky vítat nové uživatele a pomáhat jim nebo vyměňovat rady se zkušenými?
                                V <a href="https://wiki.mageia.org/en/IRC">IRC kanálech</a>,
                                <a href="http://forums.mageia.org/">na fórech</a>,
                                <a href="http://mageia.org/mailman/">mailing listech</a>,
                                a při místních událostech? Jednoduše se s námi spojte pomocí některého z těchto kanálů a začněte se účastnit na naší práci!',
        'h3_docu' => 'Psaní a dokumentování',
        'text_docu' => 'Nacházíte zalíbení v praktickém, jasně srozumitelném, přesném a dobře napsaném textu?
                                Rádi se zúčastňujete na dobrodružství spojeném se srozumitelným vysvětlováním složitých myšlenek a technických systémů a učení druhých?
                                Víte, jak smysluplně představit podobu a obsah, aby se jasně předala správná výpověď?
                                Potom se spojte s naším <a href="https://wiki.mageia.org/en/Documentation_team">dokumentačním týmem</a>!',
        'h3_i18n' => 'Překládání',
        'text_i18n' => 'Mageia je přeložena do více než 180 jazyků!
                                Zlepšování a zdokonalování překladů programů,
                                příruček, návodů, internetových stránek, reklamních materiálů atd.,
                                se děje díky úsilí mnoha dobrovolných přispěvatelů.
                                Připojte se <a href="https://wiki.mageia.org/en/Internationalisation_Team_(i18n)">k nim</a>!',
        'h3_triage' => 'Třídění chyb',
        'text_triage' => 'Chyby se stávají! A některé z nich bývají nahlášeny. Takže logicky je potřeba je rozdělovat do skupin,
                                aby se tvůrcům balíčků/vývojářům usnadnilo jejich opravování: ověřování (je chyba zopakovatelná?), sběr nezbytných informací o chybě od ohlašovatele, správné přiřazení hlášení o chybě.
                                <a href="https://wiki.mageia.org/en/Bug_Squad">Zvětšete Triage tým</a> a buďte pojítkem mezi uživateli, kteří chyby hlásí ve fórech
                                nebo v poštovních seznamech, a <a href="http://bugs.mageia.org/">Bugzillou pro Mageiu</a>
                                používanou vývojáři.',
        'h3_qa' => 'Zkoušení a <abbr title="Quality Assurance">zajišťování kvality (QA)</abbr>',
        'text_qa' => 'Nemůžeme vydat software, u kterého si nejsme jisti, že pracuje dobře!
                                <a href="https://wiki.mageia.org/en/QA_Team">Testeři a lidé z QA týmu</a>
                                zajišťují, že naše práce (software, balíčky, ISO obrazy, internetové stránky)
                                odpovídá našim požadavkům na kvalitu předtím, než se dostane k uživatelům.',
        'h3_marketing' => 'Obchod, komunikace a přesvědčovací práce',
        'text_marketing' => 'Lepší porozumnění tomu, kdo projekt používá a přispívá do něj,
                                zajišťuje, že hlas Mageii je jednotný a slyšitelný.
                                To je úkol pro <a href="https://wiki.mageia.org/en/Marcom_Team">obchodní tým</a>
                                (obchod a komunikace), jak na celosvětové, tak na místní úrovni.',
        'h3_graphic' => 'Grafika a návrh rozhraní',
        'text_graphic' => 'Software nespočívá jen v kódu a ani Mageia není jen o technologii.
                                Mageia musí vypadat lidsky, prakticky a krásně!
                                Pokud máte talent a zkušenosti ohledně navrhování grafiky a ergonomie
                                <a href="https://wiki.mageia.org/en/Artwork_team">připojte se k designerskému týmu</a>!',
        'h3_dev' => 'Vývoj a tvorba balíčků',
        'text_dev' => 'Přispívejte za pomoci svých technických schopností do jádra distribuce!
                                Přidávání, opravy chyb a technická údržba programů, které mají být začleněny do
                                distribuce, ať již z nezávislých projektů nebo ze zvláštních zdrojů. 
                                Připojte se k <a href="https://wiki.mageia.org/en/Packagers_Team">týmu balíčkářů</a>!',
        'h3_web' => 'Internet, nástroje, návrh systému a administrace',
        'text_web' => 'Mageia závisí na zázemí a nástrojích, jež umožňují, aby mohl spolupracovat každý, kdo má zájem. 
                                Tyto nástroje si žádají odborníky, kteří postaví, udržují, vyvíjejí, poskytují
                                a spravují servery, síťové spojení, bezpečnost, programy, tok dat atd.
                                Tito lidé se soustředí v týmech <a href="https://wiki.mageia.org/en/Sysadmin_Team">systémových administrátorů</a>
                                a <a href="https://wiki.mageia.org/en/Web_team">v týmu web návrhářů a vývojářů</a>.',
        'h3_mirror' => 'Zrcadlení zdrojů',
        'text_mirror' => 'Aby byl veškerý software poskytovaný Mageiou dostupný, vyžaduje to
                                <a href="http://mirrors.mageia.org/">několik zrcadel (serverů) po celém světě</a> pro distribuci ISO obrazů a balíčků.
                                Pokud máte nějaké místo na disku a volnou šířku pásma, kterou můžete sdílet, podívejte se, prosím, na <a href="https://wiki.mageia.org/en/Mirrors_policy#How_to_.28become_a.29_mirror.3F">, jak můžete zprovoznit oficiální zrcadlo Mageii</a>.',
        'h3_donation' => 'Dary',
        'text_donation' => 'Peněžní dary nám pomáhají vyřídit zvláštní úkoly, zabezpečit naši infrastrukturu,
                                financovat události, pokrýt další výdaje a náklady na cesty.
                                <a href="/en/thank-you/">Již více než 200 osob vyjádřilo svoji důvěru v nás</a>
                                svými penězi, zařízením nebo jinými zdroji.
                                Máme <a href="/en/about/reports/">veřejný seznam toho, co jsme dostali a
                                    na co to používáme</a>.',
        'h3_data' => 'Vyhodnocování dat',
        'text_data' => 'Je tu plno dat, ale většinu z nich nepoužíváme,
                                nebo o nich ani nevíme. Pokud máte rádi data mining a rozbor dat, spojte se s námi a dejte nám vědět, co bychom mohli udělat lépe!',
        'h3_design' => 'Navrhování, rozvíjení a odhalování neznámého',
        'text_design' => 'Myšlenky jsou skvělé, nasaditelné prototypy jsou ještě lepší.
                                Projekt Mageia nebyl vytvořen jen kvůli vzniku nové linuxové
                                distribuce, ale také kvůli postavení nového projektu, kvůli zkušenostem a všemu, co s tím má co společného.',
        'h2_time' => 'Čas',
        'intro_time' => 'Kolik máte volného času a kolik z něj můžete dát Mageii?
                        Podívejte se, co můžete dělat:',
        'h3_minutes' => 'Několik minut',
        'array_minutes' => array('Zastavte se na <a href="http://forums.mageia.org/">fórech</a>
                                    v oddělení podpory a podívejte se, zda byste mohli zodpovědět nějakou otázku.',
                    'Mluvte o projektu s lidmi okolo sebe, pište o něm na svém blogu, informujte o něm na svém Twitteru,
                                    na svém pracovišti.',
                    'Pokud narazíte na chybu, kterou můžete zopakovat,
                                    <a href="http://bugs.mageia.org/">vytvořte hlášení o chybě</a>.',
                    'Učiňte <a href="/cs/donate/">dar</a>!'),
        'h3_hours' => 'Několik hodin',
        'array_hours' => array('Udělejte si čas na událost týkající se Mageii, jako je například den na zkoušení, hledání chyb a jejich opravu.',
                    'Přihlašte se do některého z týmových mailing listů a sledujte, co se tam v diskuzi děje,
                                    a pokuste se přijít na to, jak byste při tom mohli být užiteční.'),
        'h3_weeks' => 'Několik týdnů a více',
        'array_weeks' => array('Naučte se více o otevřeném software, spolupráci nad otevřeným softwarem a obzvláště o Mageii.',
                    'Pokud jste student, zvažte rozhovor se svým učitelem
                                    o své účasti v projektu jako součásti vašeho studia;
                                    je mnoho věcí, které můžete dělat a ani nemusíte studovat informatiku.')
    ),
    'de' => array(
                'page_title' => 'An Mageia mitarbeiten',
                'page_desc' => 'Hier können Sie herausfinden, wie Sie am Mageia-Projekt mitarbeiten können.',
                'page_kw' => 'mageia, contribute, mitarbeiten, howto, erklärung, Betriebsystem',
                'page_h1' => 'An Mageia mitarbeiten',
                'mageia_intro' => 'Viele Leute aus allen Teilen der Welt haben sich zusammengefunden, um zusammen
                        an Mageia, &ndash; einem Linux-basierten Betriebsystem <em>und</em>
                        einer <a href="/en/about/code-of-conduct/">lebendigen Community,</a>
                        die sich mit dem <a href="/en/about/values/">Aufbau freier Software-Projekte</a> befasst.',
                'contribute_intro' => 'Jeder kann mitarbeiten!
                        Wenn Sie neugierig sind und sich beteiligen wollen,
                        gibt es verschiedene Möglichkeiten hierzu,
                        je nachdem welche Fähigkeiten Sie haben und wieviel Zeit Sie aufbringen können.
                        Sie werden immer jemanden finden, der Sie freundlich begrüßt und bereit ist, Sie beim Einstieg
                        zu unterstützen, wenn dies notwendig ist, so dass Ihre Mitarbeit am Projekt so hilfreich wie
                        irgend möglich ist.',
                'check_can_do' => 'Unterhalb Sehen Sie Ihre Möglichkeiten, mitzuarbeiten!',
                'browse_role' => 'Auflistung nach Aufgaben',
                'browse_time' => 'Auflistung nach zeitlichem Engagement',
                'h2_role' => 'Aufgaben',
                'h3_support' => 'Den Benutzern helfen und das Projekt fördern',
                'text_support' => 'Sie wollen neue Benutzer freundlich begrüßen und Ihnen helfen oder Tipps mit erfahrenen
                        Benutzers austauschen?
                        In den <a href="https://wiki.mageia.org/en/IRC">IRC-Kanälen</a>,
                        <a href="http://forums.mageia.org/">Foren</a>,
                        <a href="http://mageia.org/mailman/">Mailinglisten</a>,
                        und bei regionalen Veranstaltungen? Nehmen Sie einfach über eine dieser Plattformen Kontakt
                        zu uns auf und beteiligen Sie sich an unserer Arbeit.',
                'h3_docu' => 'Schreiben und Dokumentieren',
                'text_docu' => 'Sie finden Geschmack an praktischen, klar verständlichen, präzisen und gut geschriebenen
                        Texten?
                        Sie mögen die Herausforderung, komplexe Ideen und technische Systeme verständlich zu
                        erklären und anderen etwas nahe zu bringen?
                        Sie wissen, wie man Form und Inhalt sinnvoll darstellt, um die richtige Aussage klar
                        darzustellen?
                        Dann nehmen Sie Kontakt mit unserem  <a href="https://wiki.mageia.org/en/Documentation_team">Dokumentationsteam
                        </a> auf.',
                'h3_i18n' => 'Übersetzen',
                'text_i18n' => 'Mageia ist in mehr als 180 Sprachen übersetzt. Verbesserungen und Vervollständigungen
                        der Übersetzungen der Software, Handbücher, Erklärungen, Webseiten, des Werbematerials usw. geschehen
                        dank der Anstrengungen vieler freiwilliger Mitarbeiter.
                        Werden Sie <a href="https://wiki.mageia.org/en/Internationalisation_Team_(i18n)">Teil dieser Gruppe</a>!',
                'h3_triage' => 'Fehler-Sichtung (Triaging)',
                'text_triage' => 'Fehler passieren! Und einige davon werden gemeldet. Logischerweise müssen sie kategorisiert
                        werden, um die Fehlerbehebung für die Packager / Entwickler zu vereinfachen: 
                        Verifizierung (ist der Fehler reproduzierbar?), Sammeln der benötigten Debug-Informationen vom
                        "Fehlermelder" (Reporter), korrekte Zuweisung der Fehlermeldung.
                        <a href="https://wiki.mageia.org/en/Bug_Squad">Vergrößern Sie das Triage-Team</a> und bilden Sie die Verbindung
                        zwischen den Anwendern, die Fehler in den Foren oder Mailinglisten melden und dem
                        <a href="http://bugs.mageia.org/">Mageia Bugzilla</a>
                        der von den Entwicklern benutzt wird. ',
                'h3_qa' => 'Testen und <abbr title="Quality Assurance">Qualitätssicherung</abbr>',
                'text_qa' => 'Wir können keine Software herausgeben, von der wir nicht sicher sind, dass sie funktioniert.
                        <a href="https://wiki.mageia.org/en/QA_Team">Tester und Qualitätssicherer</a>
                        stellen sicher, dass unsere Arbeit (Software, Pakete, ISO-Abbilder und Webseiten)
                        unseren Anforderungen entsprechen, bevor der Benutzer Zugriff auf sie erhält.',
                'h3_marketing' => 'Marketing, Kommunikation &amp; Überzeugungsarbeit',
                'text_marketing' => 'Besseres Verständnis dafür, wer unsere Software benutzt und zu dem Projekt beiträgt.
                        Das soll sicherstellen, dass die Mageia Stimme konsistent ist und auch gehört wird. Das ist eine
                        Aufgabe für das <a href="https://wiki.mageia.org/en/Marcom_Team">Marcomm-Team</a>
                        (Marketing und Kommunikation), sowohl weltweit als auch auf lokaler Ebene. ',
                'h3_graphic' => 'Grafik und Design der Oberfläche',
                'text_graphic' => 'Software besteht nicht nur aus Programmcode und genauso besteht Mageia nicht nur aus
                        Technologie.
                        Mageia muss menschlich, praktisch und schön aussehen.
                        Wenn Sie Talent und Erfahrung im grafischen Design und der Ergonomie haben, werden Sie Mitglied im
                        <a href="https://wiki.mageia.org/en/Artwork_team">Artwork-Team</a>!',
                'h3_dev' => 'Entwicklung und Paketierung',
                'text_dev' => 'Arbeiten Sie mit Ihren technischen Fähigkeiten am Kern der Distribution mit!
                        Software, die in der Distribution enthalten sein soll hinzufügen, Fehler beheben und sie warten,
                        sowohl aus Upstream-Projekten als auch aus Mageia-spezifischen Quellen. Werden Sie Mitglied des
                        <a href="https://wiki.mageia.org/en/Packagers_Team">Packager-Teams</a>.',
                'h3_web' => 'Web, Werkzeuge, System-Design &amp; Administration',
                'text_web' => 'Mageia benötigt Infrastruktur und Werkzeuge, die es ermöglichen, dass jeder, der das möchte,
                        beitragen kann. Diese Werkzeuge benötigen Experten zur Erstellung, Unterhaltung, Entwicklung,
                        Bereitstellung und Verwaltung der Server, Netzwerk-Verbindungen, Sicherheit, Anwendungen, Datenfluss
                        etc. Dafür benötigen wir von <a href="https://wiki.mageia.org/en/Sysadmin_Team">System- Administratoren</a>
                        bis <a href="https://wiki.mageia.org/en/Web_team">Web-Designer /  Entwickler / Integratoren</a>
                        um diese große Aufgabe zu bewältigen.',
                'h3_mirror' => 'Software spiegeln',
                'text_mirror' => 'Die Verbreitung der Software von Mageia erfordert
                        <a href="http://mirrors.mageia.org/">mehrere Spiegelserver
                        auf der ganzen Welt</a>, zum Verteilen von ISO-Abbildern und Software-Paketen.
                        Wenn Sie etwas Speicherplatz und Bandbreite zur Verfügung stellen können, schauen Sie bitte
                        <a href="https://wiki.mageia.org/en/Mirrors_policy#How_to_.28become_a.29_mirror.3F">wie Sie
                        einen ofiziellen Mageia-Mirror betreiben können</a>.',
                'h3_donation' => 'Spenden',
                'text_donation' => 'Geldspenden helfen uns, spezifische Aufgaben zu erledigen, sichern unsere Infrastruktur
                        und finanzieren Veranstaltungen, Werbematerialien und decken Versandkosten und Fahrtkostenzuschüsse.
                        <a href="/en/thank-you/">Mehr als 200 Personen haben bereits ihr Vertrauen in uns bewiesen </a>
                        mit ihrem Geld, Hardware oder anderen Materialien. 
                        Wir haben eine <a href="/en/about/reports/">öffentliche Liste, was wir erhalten haben und wofür wir
                        es benutzen</a>.',
                'h3_data' => 'Auswertung von Daten',
                'text_data' => 'Es gibt Unmengen an Daten, , von denen wir die meisten weder kennen
                        noch verwenden. Wenn Sie ein Gespür haben, Daten zu finden und zu analysieren,
                        lassen Sie uns wissen, was wir besser machen können,
                        und setzen Sie sich mit uns in Verbindeung!',
                'h3_design' => 'Entwerfen, Entwickeln, Entdecken von Unbekanntem',
                'text_design' => 'Ideen sind toll, umsetzbare Prototypen sind noch besser.
                        Das Mageia-Projekt wurde nicht nur für das Entstehen einer neuen Linux-Distribution geschaffen,
                        sondern auch für den Aufbau neuer Projekte
                        und allem, was mit Daten zu tun hat..',
                'h2_time' => 'Zeit',
                'intro_time' => 'Wieviel Zeit haben Sie und wieviel können Sie dabei für Mageia aufbringen ?
                        Schauen Sie, was Sie tun können:',
                'h3_minutes' => 'Ein paar Minuten',
                'array_minutes' => array('Aufsuchen des <a href="http://forums.mageia.org/">Foren</a>
                                            Supportbereiches und prüfen, ob Sie Fragen beantworten können.',
                                        'Sprechen Sie über das Projekt mit Menschen Ihrer Umgebung, in Ihrem Blog,
                                            in Ihrem Twitter Account, an Ihrem Arbeitsplatz.',
                                        'Wenn Sie Fehler aufspüren und veröffentlichen können,
                                            <a href="http://bugs.mageia.org/">verfassen Sie einen Bug-Report</a>.',
                                        '<a href="/de/Spende/">Spenden</a> Sie!'),
                'h3_hours' => 'Ein paar Stunden',
                'array_hours' => array('Nehmen Sie sich Zeit für eine Mageia-Veranstaltung, wie z.B. einen Test-Tag,
                                            um dabei zu helfen, Bugs zu veröffentlichen und zu beheben .',
                                        'Abonnieren Sie  eine Team-Mailingliste, verfolgen Sie die Diskussionen dort
                                            und versuchen Sie, etwas Sinnvolles dazu beizutragen.'),
                'h3_weeks' => 'Ein paar Wochen oder mehr',
                'array_weeks' => array('Erfahren Sie mehr über freie Software, Open-Source Zusammenarbeit im Allgemeinen,
                                            und Mageia im Speziellen.',
                                        'Sollten Sie ein Student sein, suchen Sie das Gespräch mit Ihrem Dozenten , um das
                                            Projekt als Teil in das Studium mit einzubinden,
                                            wobei Sie nicht unbeding Student der Informatik sein müssen.')
        ),
    'es' => array(
        'page_title' => 'Contribuye con Mageia',
        'page_desc' => 'Aquí puede encontrar como contribuir con el proyecto Mageia',
        'page_kw' => 'mageia, contribuir, como, sistema operativo',
        'page_h1' => 'Contribuye con Mageia',
        'mageia_intro' => 'Mucha gente de todo el mundo se reune para construir Mageia
                        &ndash; un sistema operativo de GNU/Linux <em>y</em>
                        <a href="/en/about/code-of-conduct/">una comunidad activa</a>
                        para <a href="/en/about/values/">crear proyectos de software</a>.',
        'contribute_intro' => 'Contribuir es libre para todos, ¡esto es software libre!
                        Si tienes curiosidad y deseas participar,
                        hay cosas que puedes hacer,
                        dependiendo de tu tiempo y tus habilidades;
                        siempre encontrarás a alguien que te dé la bienvenida y te ayude 
                        si es necesario, de manera que tu contribución al proyecto sea tan buena como sea posible.',
        'check_can_do' => '¡Observa lo que puedes hacer acontinuación!',
        'browse_role' => 'Buscar por rol',
        'browse_time' => 'Buscar por tiempo',
        'h2_role' => 'Roles',
        'h3_support' => 'Ayudando usuarios &amp; Promoviendo el proyecto',
        'text_support' => '¿Quieres darle la bienvenida a los usuarios y ayudar a los nuevos usuarios o compartir trucos con usuarios expertos?
                                ¿En los <a href="https://wiki.mageia.org/en/IRC">canales IRC</a>,
                                <a href="http://forums.mageia.org/">Foros</a>,
                                <a href="http://mageia.org/mailman/">listas de correo</a>,
                                eventos locales? ¡Ponte en contacto con nosotros vía estos medios de comunicación y comparte la diversión!',
        'h3_docu' => 'Escribiendo, documentando, y redactando',
        'text_docu' => '¿Tienes gusto para la escritura práctica, concisa y bien redactada?,
                                ¿Te gusta aceptar el reto de explicar claramente
                                ideas complejas o sistemas y enseñar a otros?,
                                ¿Sabes cómo mezclar forma y contenido para explicar el mensaje correcto?
                                ¡Ponte en contacto con nuestro <a href="https://wiki.mageia.org/en/Documentation_team">equipo de documentación</a>!',
        'h3_i18n' => 'Traducción',
        'text_i18n' => '¡Mageia está disponible en más de 180 idiomas!
                                Aclarando, complementando, mejorando
                                traducciones de software, guías, tutoriales, sitios web, material de mercadotecnia,
                                etc. agradeciendo el esfuerzo de muchos contribuidores.
                                ¡<a href="https://wiki.mageia.org/en/Internationalisation_Team_(i18n)">Únete a ellos</a>!',
        'h3_triage' => 'Triage',
        'text_triage' => 'Los bugs son inevitables. Y algunos incluso se dan a conocer. Lógicamente, se deben verificar
                                para facilitar a los empaquetadores/desarrolladores el arreglarlos más facilmente: Validación(¿El error es reproducible?), recolectar la información necesaria para la depuración, asignarlos y procesarlos adecuadamente.
                                <a href="https://wiki.mageia.org/en/Bug_Squad">Únete al equipo de triage</a> y sé el enlace entre usuarios que reportan bugs
                                en los foros o listas de correo, y el <a href="http://bugs.mageia.org/">Bugzilla de Mageia</a>
                                usado por los desarrolladores.',
        'h3_qa' => 'Pruebas &amp; <abbr title="Quality Assurance">QA</abbr>',
        'text_qa' => '¡No podemos enviar software si no estamos seguros de que funcionará bien!
                                <a href="https://wiki.mageia.org/en/QA_Team">Testers y QA</a>
                                hay que asegurarse de que los productos (software, paquetes, ISO\'s, sitios web)
                                cumplan con nuestras expectativas de calidad antes de que lleguen a los usuarios.',
        'h3_marketing' => 'Marketing, Comunicación y Evangelización',
        'text_marketing' => 'Mejor entendimiento de quien usa y contribuye con el proyecto
                                para ayudarlos aún más, asegurarse que la voz de Mageia sea consistente y sea escuchada,
                                ese es el trabajo del <a href="https://wiki.mageia.org/en/Marcom_Team">equipo marcomm</a>
                                (Marketing y Comunicación), en escalas locales y globales.',
        'h3_graphic' => 'Gráficos &amp; diseño de UI',
        'text_graphic' => 'El software no solo es código, ni tampoco solo tecnología.
                                ¡Así que hacerlo humano, práctico y bonito!
                                ¡Si tienes talento y experiencia en diseño gráfico, ergonomía,
                                <a href="https://wiki.mageia.org/en/Artwork_team">únete al equipo de diseño gráfico</a>!',
        'h3_dev' => 'Codificación y empaquetado',
        'text_dev' => '¡Contribuye  con el núcleo de la distribución con tus habilidades técnicas!
                                Agregando, arreglando, corrigiendo y manteniendo el software  para ser incluido
                                en la distribución, desde proyectos externos o fuentes especificas de Mageia.
                                ¡Únete al <a href="https://wiki.mageia.org/en/Packagers_Team">equipo de empaquetadores</a>!',
        'h3_web' => 'Web, herramientas, diseño y administración de sistemas',
        'text_web' => 'Mageia depende de infraestructuras y herramientas que permiten a todos
                                colaborar. Esto requiere expertos para construir, mantener, desarrollar, proveer
                                y administrar servidores, conexiones, aplicaciones de seguridad, flujos de datos, etc.
                                Hacen falta desde <a href="https://wiki.mageia.org/en/Sysadmin_Team">administradores de sistema</a>
                                hasta <a href="https://wiki.mageia.org/en/Web_team">diseñadores web/desarrolladores/integradores</a>
                                para llevar a cabo esta enorme tarea.',
        'h3_mirror' => 'Duplicar fuentes de descarga',
        'text_mirror' => 'Hacer que el software de Mageia esté disponible requiere de
                                <a href="http://mirrors.mageia.org/">varias fuentes de descarga (mirrors)
                                alrededor del mundo</a>, para distribuir ISO\'s y paquetes de software.
                                Si tienes algo de espacio en disco y banda ancha para compartir, por favor <a href="https://wiki.mageia.org/en/Mirrors_policy#How_to_.28become_a.29_mirror.3F">infórmate de cómo puedes proveer un mirror oficial de Mageia</a>.',
        'h3_donation' => 'Donaciones',
        'text_donation' => 'Las donaciones nos ayudan a asignar tareas específicas, asegurar nuestra infraestructura,
                                financiar eventos, mercancía para regalar y promocionar y transporte.
                                <a href="/en/thank-you/">más de 200 personas ya han expresado su confianza en nosotros</a>
                                con su dinero, hardware u otros recursos.
                                Mantenemos un <a href="/en/about/reports/">registro público de que tenemos y como lo usamos</a>.',
        'h3_data' => 'Minería de datos',
        'text_data' => 'Hay montones de datos allá afuera, muchos de los cuales no usamos,
                                o ni siquiera sabemos de ellos. Si deseas tomar y analizar datos
                                para revelar y visualizar aquello que podamos mejorar,
                                ¡ponte en contacto!',
        'h3_design' => 'Diseñar, experimentar, descubrir lo desconocido',
        'text_design' => 'Las ideas son buenas, pero los prototipos son mejores.
                                El proyecto Mageia no es solo para crear una distribución de GNU/Linux diferente, 
                                también significa crear nuevos productos y experiencias
                                con ella y con la información alrededor de el.',
        'h2_time' => 'Tiempo',
        'intro_time' => '¿Cuánto tiempo libre tienes?, y ¿Cuánto de ese tiempo quieres compartir con Mageia?
                        Lo que puedes hacer:',
        'h3_minutes' => 'Unos cuantos minutos',
        'array_minutes' => array('Visita los <a href="http://forums.mageia.org/">foros</a>
                                    en la sección de soporte y ve si puedes contestar alguna pregunta.',
                    'Habla sobre el proyecto con la gente cercana a ti, en tu blog, en tu cuenta de Twitter,
                                    en tu lugar de trabajo.',
                    'Si encuentras un bug y puedes reproducirlo varias veces,
                                    <a href="http://bugs.mageia.org/">envía un informe de fallos</a>.',
                    '¡Haz una <a href="/en/donate/">donación</a>!'),
        'h3_hours' => 'Unas cuantas horas',
        'array_hours' => array('Busca un evento de Mageia, como un día de pruebas, reproduce y ayuda a resolver bugs.',
                    'Suscríbete a una lista de grupo de discusión y mantente al tanto de lo que pasa,
                                    Intenta ver como puedes brindar algo útil al grupo.'),
        'h3_weeks' => 'Unas cuantas semanas o más',
        'array_weeks' => array('Aprende sobre software libre, colaboración abierta en general,
                                    y sobre Mageia en lo particular.',
                    'Si eres un estudiante, considera hablar con tus maestros sobre participar
                                    en el proyecto como parte de tus estudios;
                                    no es necesario ser estudiante de ciencas de la computación para participar.')
    ),
    'et' => array(
        'page_title' => 'Mageia abistamine',
        'page_desc' => 'Siin saab teada, kuidas aidata kaasa Mageia projektile',
        'page_kw' => 'mageia, abistamine, tugiteenused, operatsioonisüsteem',
        'page_h1' => 'Mageia abistamine',
        'mageia_intro' => 'Paljud inimesed kogu maailmast on otsustanud üheskoos luua Mageia
                        &ndash; Linuxi-põhise operatsioonisüsteemi <em>ning</em>
                        <a href="/en/about/code-of-conduct/">elava ja vaimustava kogukonna</a>
                        <a href="/en/about/values/">vaba tarkvara projektide loomiseks</a>.',
        'contribute_intro' => 'Abistada ja kaasa lüüa saavad kõik &ndash; see on vaba tarkvara!
                        Kui tunnete huvi ja tahate kaasa lüüa,
                        siis teha saab õige mitmeid asju
                        sõltuvalt teie ajavarudest ja oskustest.
                        Igal juhul leiate alati kellegi, kes teid tervitab ja vajaduse korral
                        aitab, et teie panus Mageiasse võiks olla nii hea ja võimas, kui see vähegi olla saab!',
        'check_can_do' => 'Allpool näete, kuidas on võimalik kaasa lüüa!',
        'browse_role' => 'Vastavalt tegevusele',
        'browse_time' => 'Vastavalt ajakulule',
        'h2_role' => 'Tegevused',
        'h3_support' => 'Kasutajate aitamine ja Mageia propageerimine',
        'text_support' => 'Soovite aidata uustulnukaid või jagada nõuandeid ka kogenud kasutajatele?
                                Ja seda <a href="https://wiki.mageia.org/en/IRC">IRC kanalite</a>,
                                <a href="http://forums.mageia.org/">foorumite</a>,
                                <a href="http://mageia.org/mailman/">postiloendite</a> või
                                kohalike sündmuste kaudu? Võtke lihtsalt meiega mõnel mainitud kanalil ühendust ja asume üheskoos lõbusalt tegutsema!',
        'h3_docu' => 'Kirjutamine, reklaamimine ja dokumenteerimine',
        'text_docu' => 'Tunnete huvi praktilise, klaari ja puhta ning kenasti sõnastatud kirjutamise vastu?