1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 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
|
<?php
/*
* Global lang file
* This file was generated automatically from messages.po
*/
$trans['eu_ES'] = array(
'' => "Project-Id-Version: b2evolution.net locale\nReport-Msgid-Bugs-To: http://fplanque.net/\nPOT-Creation-Date: 2004-06-26 02:10+0200\nPO-Revision-Date: 2005-10-10 17:03+0100\nLast-Translator: Iker Balentziaga <ibalentziaga@ehuntzen.net>\nLanguage-Team: Iker Balentziaga & Kepa Sarasola <webgunea@berria.info>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\n",
'Selected' => "Aukeratua",
'Categories' => "Atalak",
'Permanent link to full entry' => "Lotura iraunkorra mezuari",
'Permalink' => "Permalink-a",
'Recently' => "Berriki",
'(cached)' => "(katxeatua)",
'(no cache)' => "(katxeatu gabea)",
'Last comments' => "Azken erantzunak",
'Search' => "Bilaketa",
'All Words' => "Hitz guztiak",
'Some Word' => "Hitzen bat",
'Entire phrase' => "Esaldi osoa",
'Reset form' => "Formularioa garbitu",
'Get selection' => "Aukeratutakoa ikus",
'Archives' => "Artxiboak",
'more...' => "gehiago...",
'Misc' => "Besterik",
'Syndicate this blog' => "Blog hau sindikatu",
'Default page for b2evolution' => "b2evolution-en orrialde lehenetsia",
'Multilingual multiuser multi-blog engine.' => "Multilingual multiuser multi-blog engine.",
'Welcome to b2evolution' => "Ongi etorria b2evolution-era",
'This is the default homepage for b2evolution. It will be displayed as long as you don\'t select a default blog in the general settings.' => "Hau b2evolution-en orrialde lehenetsia da. Aukera orokorretan blog bat lehenetsi ezean hau erakutsiko da.",
'Individual blogs on this system' => "Sistema honetan dauden banako blogak",
'Blog #%d' => "#%d bloga",
'Blog #1' => "#1 bloga",
'This is a special blog that aggregates all messages from all other blogs!' => "Hau blog guztien mezu guztiak biltzen dituen blog berezia da.",
'Please note: the above list (as well as the menu) is automatically generated and includes only the blogs that have a "stub url name". You can set this in the blog configuration in the back-office.' => "Oharra: goiko zerrenda (menuarekin batera) automatikoki sortu da eta "url stub izen bat" duten blogak baino ez ditu biltzen. Hau blogaren back-office-aren konfigurazio aukeretan moldatu dezakezu.",
'More demos' => "Adibide gehiago",
'Custom template' => "Eredu pertsonalizatua",
'Multiple blogs displayed on the same page' => "Orrialde berean erakusten diren blog anizkunak",
'Summary of last posts in all blogs' => "Blog guztietako azken mezuen laburpena",
'The page you\'re looking at' => "Ikusten ari zaren orrialdea",
'Please note: those demos do not make use of evoSkins, even if you enabled them during install. The only way to change their look and feel is to edit their PHP template. But once, again, rememner these are just demos destined to inspire you for your own templates ;)' => "Oharra: Adibiderako orrialde hauek ez dute evoSkin-ik erabiltzen, instalazioa burutzerakoan aktibatu bazenituen ere. Hauek aldatzeko aukera bakarra PHP eredua editatzea da. Hauek zure eredu propioak egiteko lagungarri izan dakizuken adibideak baino ez dira.",
'Administration' => "Kudeaketa",
'Go to backoffice!' => "Backoffice-ra joan!",
'Official website' => "Webgune ofiziala",
'GNU GPL license' => "GNU <acronym title=\"General Public License\">GPL</acronym> lizentzia",
'Multiblog demo' => "Multiblogaren adibidea",
'This demo template displays 3 blogs at once (1 on the left, 2 on the right)' => "Adibiderako eredu honek 3 blog erakusten ditu aldiberean (1 ezkerrean eta 2 eskuinean)",
'Summary demo' => "Laburpenaren adibidea",
'This demo template displays a summary of last posts in all blogs' => "Adibiderako eredu honek blog guztien azken mezuen laburpen bat erakusten du",
'More posts...' => "Mezu gehiago...",
'Antispam' => "Antispam-a",
'The keyword [%s] is too short, it has to be a minimum of 5 characters!' => "[%s] hitza oso motza da, gutxienez 5 karaktere izan behar ditu!",
'Deleting log-hits matching [%s]...' => "[%s] mezua ezabatzen",
'Deleting comments matching [%s]...' => "[%s]-rekin bat datozen erantzunak ezabatzen...",
'Blacklisting the keyword [%s]...' => "[%s] zerrenda beltzera gehitzen...",
'Confirm ban & delete' => "Baneatua eta ezabaketa egiaztatu",
'No log-hits match the keyword [%s].' => "Ez dago [%s] hitzarekin bat datorren log-hit-ik.",
'Delete the following %d referer hits:' => "Ondorengo %d hit igortzaileak ezabatu:",
'Date' => "Data",
'Referer' => "Igortzailea",
'Ref. IP' => "Erref. IP",
'Target Blog' => "Helburu-Bloga",
'Target URL' => "Helburu-URLa",
'No comments match the keyword [%s].' => "Ez dago [%s] hitzarekin bat datorren erantzunik",
'Delete the following %d comments:' => "Hurrengo %d erantzunak ezabatu:",
'Author' => "Egilea",
'Auth. URL' => "Egil. URL",
'Auth. IP' => "Egil. IP",
'Content starts with...' => "Edukia honela hasten da...",
'The keyword [%s] is already handled by the blacklist.' => "[%s] hitza zerrenda beltzan dago jada.",
'Blacklist the keyword [%s] locally.' => "Gehitu [%s] zerrenda beltzera lokalki.",
'Report the keyword [%s] as abuse to b2evolution.net.' => "b2evolution.net-era [%s] hitza spam-a dela jakinarazi.",
'Terms of service' => "Zerbitzuaren baldintzak",
'Perform selected operations' => "Aukeratutako eragiketak burutu",
'Removing entry #%d from the ban list...' => "#%d zentsuratutako hitzen zerrendatik ezabatzen...",
'Add a banned keyword' => "Zentsuratutako hitz bat erantsi",
'Check & ban...' => "Zentsuratu",
'Banned domains blacklist' => "Zentsuratutako domeinuen zerrenda beltza",
'Any URL containing one of the following keywords will be banned from posts, comments and logs.' => "Ondorengo hitzetariko bat duen edozein URL mezu, erantzun eta log-etan zentsuratuko da.",
'If a keyword restricts legitimate domains, click on the green tick to stop banning with this keyword.' => "Hitz batek domeinu legitimoetarako sarbidea mugatzen badu, egizu klik marka berdean hitz hori zentsuratzeari uzteko.",
'Request abuse update from centralized blacklist!' => "Zerrenda beltzaren eguneraketa eskatu.",
'The blacklist contains more than 100 items. [<a %s>Click here to display</a>].' => "Zerrenda beltzak 100 item baino gehiago ditu. [<a %s>Ikusteko, egizu klik hemen</a>].",
'Allow keyword back (Remove it from the blacklist)' => "Hitza berriro baimendu (Zerrenda beltzatik ezabatu)",
'Allow Back' => "Berriro Onartu",
'Report abuse to centralized ban blacklist!' => "Spam-aren berri eman zerrenda beltz zentralizatuari!",
'Report' => "Jakinarazi",
'Check hit-logs and comments for this keyword!' => "Hitz hau duten hit-log-ak eta erantzunak egiaztatu!",
'Re-check' => "Berriro egiaztatu",
'Blogs' => "Blogak",
'New' => "Berria",
'Creating blog...' => "Bloga sortzen...",
'You must provide an URL blog name / Stub name!' => "URL blog izena bat / Stub izen bat eman behar duzu!",
'This URL blog name / Stub name is already in use by another blog. Choose another name.' => "URL / Stub artxibo izen hau dagoeneko beste blog batek erabiltzen du. Beste izen bat aukeratu.",
'Cannot create, please correct these errors:' => "Ezin da sortu, akats hauek zuzendu mesedez:",
'You should <a %s>create categories</a> for this blog now!' => "Blog honentzat <a %s>atal berriak sortu</a> beharko zenituzke!",
'New weblog' => "Weblog berria",
'New blog' => "Blog berria",
'General' => "Orokorra",
'Permissions' => "Baimenak",
'Advanced' => "Aurreratua",
'Updating Blog [%s]...' => "[%s] bloga eguneratzen...",
'Cannot update, please correct these errors:' => "Ezin da eguneratu, akats hauek zuzendu mesedez:",
'Delete blog [%s]?' => "[%s] bloga ezabatu?",
'Deleting this blog will also delete all its categories, posts and comments!' => "Blog hau ezabatzerakoan bere atal, mezu eta erantzun guztiak ezabatuko dira ere!",
'THIS CANNOT BE UNDONE!' => "ALDAKETAK EZINGO DIRA DESEGIN!",
'Also try to delete stub file [<strong><a %s>%s</a></strong>]' => "[<strong><a %s>%s</a></strong>] stub artxiboa ezabatzen ere saiatu",
'Also try to delete static file [<strong><a %s>%s</a></strong>]' => "[<strong><a %s>%s</a></strong>] artxibo estatikoa ezabatzen ere saiatu",
'I am sure!' => "Ziur nago!",
'CANCEL' => "EZEZTATU",
'Generating static page for blog [%s]' => "[%s] blogarentzat orrialde estatikoa sortu",
'You haven\'t set a static filename for this blog!' => "Ez duzu blog honentzako artxibo estatikoaren izena zehaztu!",
'File cannot be written!' => "Ezin da artxiboa idatzi!",
'You should check the file permissions for [%s]. See <a %s>online manual on file permissions</a>.' => "[%s] artxiboaren baimenak begiratu beharko zenituzke. Visita el <a %s>online gidaliburua bisitatu artxiboen baimenen gainean gehiago jakin nahi baduzu</a>.",
'Writing to file [%s]...' => "[%s] fitxategian idazten...",
'Done.' => "Egina.",
'Browse blog:' => "Blog hau ikusi:",
'Since you\'re a newcomer, you\'ll have to wait for an admin to authorize you to post. You can also <a %s>e-mail the admin</a> to ask for a promotion. When you\'re promoted, just reload this page and you\'ll be able to blog. :)' => "Berria zarenez, administratzaileak mezuak idazteko baimena eman arte itxaron beharko duzu. <a %s>Mail bat bidali</a> dezakezu ere, izena eman duzula abisatzeko. Baimena eskuratzerakoan, orrialde hau eguneratu eta mezuak idazteko aukera izango duzu. :)",
'Categories for blog:' => "Blogarentzako atalak:",
'New sub-category in category: %s' => "%s atalan azpiatal berria",
'New category in blog: %s' => "Atal berria blogean: %s",
'New category name' => "Atal berriaren izena",
'Create category' => "Atala sortu",
'Deleting category #%d : %s ...' => "#%d atala ezabatzen : %s...",
'ERROR' => "ERROREA",
'Category deleted.' => "Atala ezabatu da.",
'Properties for category:' => "Atalaren ezaugarriak:",
'Name' => "Izena",
'New parent category' => "Atal nagusi berria",
'Old Parent' => "Atal nagusi zaharra",
'Root (No parent)' => "Root",
'Note: Moving categories across blogs is enabled. Use with caution.' => "Oharra: Atalak blog batetik bestera mugitzeko aukera . Kontuz erabili.",
'Note: Moving categories across blogs is disabled.' => "Oharra: Blogetan zehar atalak mugitzeko aukera ezgaitua dago.",
'Edit category!' => "Atala editatu!",
'Sorry, you have no permission to edit/view any category\'s properties.' => "Ez duzu atalen ezaugarriak editatzeko/ikusteko baimenik.",
'Oops, no post with this ID.' => "Oops, ez dago ID hau duen mezurik.",
'Editing post' => "Mezua editatzen",
'#%d in blog: %s' => "#%d blogean: %s",
'Oops, no comment with this ID!' => "Oops, ez dago erantzunik ID honekin!",
'Editing comment' => "Erantzuna editatzen",
'New post in blog:' => "Mezu berria blogean:",
'Since this blog has no categories, you cannot post to it. You must create categories first.' => "Ezin duzu mezurik idatzi blog honek atalik ez duelako. Sortu itzazu lehenago.",
'Switch to this blog (keeping your input if Javascript is active)' => "Blog honetara aldatu (idatzutakoa mantenduz, Javascript aktibatuta baduzu)",
'b2evo' => "b2evo",
'Login...' => "Sarrera...",
'In b2evolution, you do not need to point to the b2login.php page to log in.' => "b2evolution-en, saioa hasteko ez dago b2login.php-era sartu beharrik.",
'Simply point directly to the backoffice page you need, for example: %s or %s. b2evo will prompt you to log in if needed.' => "Zoaz zuzenean back-office-aren nahi duzun orrialdera, %s-ra edo %s-ra adibidez. b2evo-k erregistratzeko eskatuko dizu beharrezkoa balitz.",
'Settings' => "Aukerak",
'Regional' => "Eskualdea",
'Plug-ins' => "Plugin-ak",
'General settings updated.' => "Aukera orokorrak eguneratu dira.",
'Regional settings updated.' => "Eskualde aukerak eguneratu dira.",
'You must provide a locale code!' => "Locale kode bat zehaztu behar duzu!",
'Inserted locale \'%s\' into database.' => "'%s' locale-a datu-basean sartu da.",
'Updated locale \'%s\'.' => "'%s' locale-a eguneratu da.",
'Saved locale \'%s\'.' => "'%s' locale-a gorde da.",
'Locales table deleted, defaults from <code>/conf/_locales.php</code> loaded.' => "Locale-en taula ezabatu da. <code>/conf/_locales.php</code>-n aurretik zehaztutakoak kargatu dira.",
'File <code>%s</code> not found.' => "<code>%s</code> artxiboa ez da aurkitu.",
'Deleted locale \'%s\' from database.' => "'%s' locale-a datu-basetik ezabatu.",
'Switched priorities.' => "Lehentasunak trukatu dira.",
'Spell Check' => "Ortografia begiratu",
'Loading Spell Checker. Please wait' => "Ortografia Zuzentzailea kargatzen. Itxaron, mesedez",
'View Stats for Blog:' => "Estatistikak ikusi:",
'None' => "Batere ez",
'Changing hit #%d type to: %s' => "#%d %s -ra aldatzen",
'Deleting hit #%d...' => "#%d hit-a ezabatzen...",
'Pruning hits for %s...' => "%s -ren hit-ak ezabatzen....",
'Summary' => "Laburpena",
'Referers' => "Igortzaileak",
'Refering Searches' => "Igorritako Bilaketak",
'Syndication' => "Sindikazioa",
'User Agents' => "Nabigatzaileak",
'Direct Accesses' => "Sarrera Zuzenak",
'Indexing Robots' => "Roboten Indexatua",
'Total' => "Guztira",
'Prune this date!' => "Data hau ezabatu!",
'Prune' => "Ezabatu",
'Prune hits for this date!' => "Data honetan izandako bisitak ezabatu!",
'Last referers' => "Azken igortzaileak",
'These are hits from external web pages refering to this blog' => "Hauek blog honetara igortzen duten kanpo-webgunetatik eginiko bisitak dira",
'Delete this hit!' => "Hit hau ezabatu!",
'Del' => "Ezab",
'Log as a search instead' => "Igorritako bilaketa bezala klasifikatu",
'->S' => "->S",
'Ban this domain!' => "Domeinu hau zentsuratu!",
'Ban' => "Galerazi",
'Top referers' => "Igortzaile ohikoenak",
'Total referers' => "Igorriak guztira",
'Last refering searches' => "Igorritako azken bilaketak",
'These are hits from people who came to this blog system through a search engine. (Search engines must be listed in /conf/_stats.php)' => "Blog honetara bilatzaile baten bitartez iritsitako jendearen bisitak. (Bilatzaileak /conf/_stats.php-en zerrendatuak egon behar dira)",
'Top refering search engines' => "Bilatzaile igortzaile ohikoenak",
'Top Indexing Robots' => "Robot Indexatzaile ohikoenak",
'These are hits from automated robots like search engines\' indexing robots. (Robots must be listed in /conf/_stats.php)' => "Bilatzaileen roboten tankerako automatizatutako robot indexatzaileen bisitak. (Robotak /conf/_stats.php-n zerrendatuak egon behar dira)",
'Top Aggregators' => "RSS Irakurtzaile ohikoenak",
'These are hits from RSS news aggregators. (Aggregators must be listed in /conf/_stats.php)' => "RSS irakurgailuen bisitak. (/conf/_stats.php-en zerrendatuta egon behar dira)",
'Total RSS hits' => "RSS bisitak guztira",
'Last direct accesses' => "Azken sarrera zuzenak",
'These are hits from people who came to this blog system by direct access (either by typing the URL directly, or using a bookmark. Invalid (too short) referers are also listed here.)' => "Blog honetara sarrera zuzenaz etorritako jendearen bisitak dira hauek (URL-a tekleatuta edota \"Laster-markak\" erabilita. Igortzaile baliogabeak (motzegiak) hemen azaltzen dira ere.)",
'Top User Agents' => "Nabigatzaile ohikoenak",
'Custom skin template editing' => "\"Custom skin\" ereduaren edizioa",
'Listing:' => "Zerrendatzen:",
'Invalid filename!' => "Fitxategiaren izenak ez du balio!",
'Oops, no such file !' => "Oops, fitxategia ez da existitzen!",
'File edited!' => "Fitxategia editatu da!",
'Be careful what you do, editing this file could break your template! Do not edit what\'s between <code><?php</code> and <code>?></code> if you don\'t know what you\'re doing!' => "Kontuz! Artxibo hau editatzeak eredua hondatu dezake! Zer egiten ari zaren ez badakizu, ez ezazu <code><?php</code> eta <code>?></code> artean dagoena aldatu!",
' Save ! ' => " Gorde ! ",
'(you cannot update that file/template: must make it writable, e.g. CHMOD 766)' => "(ezin duzu artxiboa/eredua eguneratu: idazteko baimenak izan behar dituzu, Adb.: CHMOD 766)",
'This screen allows you to edit the <strong>custom skin</strong> (located under /skins/custom). ' => "Pantaila honek <strong>custom skin</strong>-a (/skins/custom-en barruan dagoena) editatzeko aukera ematen dizu.",
'You can edit any of the following files (provided it\'s writable by the server, e.g. CHMOD 766)' => "Ondorengo edozein artxibo editatu dezakezu (betiere zerbitzaritik idazteko baimenak badituzte, adb.: CHMOD 766).",
'Directory %s not found.' => "Ez da %s direktorioa aurkitzen.",
'This is the template that displays the links to the archives for a blog' => "Hau blogaren artxiboetarako loturak erakusten dituen eredua da",
'This is the template that displays the (recursive) list of (sub)categories' => "Hau (azpi)atalen zerrenda erakusten duen eredua da",
'This is the template that displays the feedback for a post' => "Hau mezu baten erantzunak erakusten dituen eredua da",
'This is the template that displays the last comments for a blog' => "Hau blog baten azken erantzunak erakusten dituen eredua da",
'This is the main template. It displays the blog.' => "Hau eredu nagusia da. Bloga erakusten du.",
'This is the page displayed in the comment popup' => "Hau erantzunen popup-ean erakusten den orrialdea da",
'This is the page displayed in the pingback popup' => "Hau pingback-en popup-ean erakusten den orrialdea da",
'This is the page displayed in the trackback popup' => "Hau trackback-en popup-ean erakusten den orrialdea da",
'Note: of course, you can also edit the files/templates in your text editor and upload them. This online editor is only meant to be used when you don\'t have access to a text editor...' => "Oharra: artxiboak/ereduak zure testu-editorean editatu eta zerbitzarira igo ditzakezu ere. Online editore hau testu-editore bat eskura ez baduzu erabili dezakezu...",
'upload images/files' => "Irudiak/fitxategiak igo",
'File upload' => "Fitxategia igo",
'Allowed file types:' => "Onartutako artxibo motak:",
'Maximum allowed file size: %d KB' => "Onartutako gehienezko pisua %d KB",
'Description' => "Azalpena",
'Upload !' => "Igo !",
'File %s: type %s is not allowed.' => "%s fitxategia: %s mota ez dago onartua.",
'Couldn\'t upload your file to:' => "Ezin da artxiboa hona igo:",
'Duplicate File?' => "Fitxategi bikoiztua?",
'The filename "%s" already exists!' => "\"%s\" fitxategia existitzen da jada!",
'Filename "%s" moved to "%s"' => "\"%s\" artxiboa \"%s\"-ra mugitu da",
'Confirm or rename:' => "Berretsi edo izena aldatu:",
'Alternate name' => "Ordezko izena",
'Confirm !' => "Berretsi !",
'File uploaded !' => "Fitxategia igo da !",
'Your file <strong>"%s"</strong> was uploaded successfully !' => "Zure <strong>\"%s\"</strong> fitxategia arrakastaz igo da!",
'Here\'s the code to display it:' => "Hemen duzu berau erakusteko kodea:",
'Add the code to your post !' => "Kodea zure mezuari erantsi!",
'Image Details' => "Irudiaren ezaugarriak",
'Size' => "Tamaina",
'Type' => "Mota",
'Close this window' => "Lehio hau itxi",
'User management' => "Erabiltzaileen kudeaketa",
'You cannot change the demouser profile in demo mode!' => "Adibiderako moduan ezin da demouser erabiltzailearen profila aldatu!",
'You are only allowed to update your own profile!' => "Zure profila eguneratzeko baimena duzu bakarrik!",
'You must provide an unique login!' => "Login esklusiboa erabili behar duzu!",
'User level must be between %d and %d.' => "Erabiltzaile maila %d eta %d artean egon behar da.",
'This login already exists. Do you want to <a %s>edit the existing user</a>?' => "Login izen hau dagoeneko badago. <a %s>Dagoen erabiltzailea editatu</a> nahi duzu?",
'You typed two different passwords.' => "Pasahitzak ez datoz bat.",
'The mimimum password length is %d characters.' => "Pasahitzaren gutxieneko luzera %d karakteretakoa izan behar da.",
'User updated.' => "Erabiltzailea eguneratu da.",
'New user created.' => "Erabiltzaile berria sortu da.",
'Invalid promotion.' => "Promozio baliogabea.",
'User level changed.' => "Erabiltzailearen maila aldatu da.",
'You can\'t delete yourself!' => "Ezin duzu zeure burua ezabatu!",
'You can\'t delete User #1!' => "Ezin duzu #1 erabiltzailea ezabatu!",
'Delete User %s?' => "%s erabiltzailea ezabatu?",
'Warning' => "Kontuz",
'deleting an user also deletes all posts made by this user.' => "erabiltzaile bat ezabatzerakoan honek eginiko mezu guztiak ezabatzen dira ere.",
'Deleting User...' => "Erabiltzailea ezabatzen...",
'You can\'t delete Group #1!' => "Ezin duzu #1 taldea ezabatu!",
'You can\'t delete the default group for new users!' => "Ezin da erabiltzaile berrientzako lehenesten den taldea ezabatu!",
'Delete group [%s]?' => "[%s] taldea ezabatu?",
'Group deleted...' => "Taldea ezabatu da...",
'This group name already exists! Do you want to <a %s>edit the existing group</a>?' => "Talde izen hau dagoeneko badago! <a %s>Dagoena editatu</a> nahi duzu?",
'Group updated.' => "Taldea eguneratu da.",
'The user was not created:' => "Ez da erabiltzailea sortu:",
'The user was not updated:' => "Erabiltzailea ez da eguneratu:",
'The group was not created:' => "Taldea ez da sortu:",
'The group was not updated:' => "Taldea ez da eguneratu:",
'You are not allowed to view other users.' => "Ez duzu beste erabiltzailerik ikusteko baimenik.",
'Adding new post...' => "Mezu berria gehitzen...",
'Supplied URL is invalid: ' => "Emandako URL-ak ez du balio:",
'Supplied content is invalid' => "Emandako edukiak ez du balio:",
'Cannot post, please correct these errors:' => "Mezua ez da gorde, akats hauek zuzendu mesedez:",
'Back to post editing' => "Mezuen ediziora itzuli",
'Recording post...' => "Mezua grabatzen...",
'Sleeping...' => "Lotan....",
'Post not publicly published: skipping trackback, pingback and blog pings...' => "Publikoki argitaratugabeko mezua: trackback-ak, pingback-ak eta ping-ak alde batera uzten... ",
'Posting Done...' => "Mezua gorde da...",
'Updating post...' => "Mezua eguneratzen...",
'Post had already pinged: skipping blog pings...' => "Mezu honentzako ping-ak burutu dira jada: blogaren ping-ak alde batera uzten...",
'Updating done...' => "Eguneraketa burutu da...",
'Updating post status...' => "Mezuaren egoera eguneratzen...",
'Deleting post...' => "Mezua ezabatzen...",
'Oops, no post with this ID!' => "Oops, ez dago mezurik ID honekin!",
'Deleting Done...' => "Ezabaketa burutu da...",
'Error' => "Errorea",
'Cannot update comment, please correct these errors:' => "Ezin da erantzuna eguneratu, akats hauek zuzendu mesedez:",
'Back to posts!' => "Mezuetara itzuli!",
'You may also want to generate static pages or view your blogs...' => "Baliteke orrialde estatikoak sortu edota zure blogak ikusteko gogoa izatea ere...",
'New post' => "Mezu berria",
'User group' => "Erabiltzaile taldea",
'See <a %s>online manual</a> for details.' => "Xehetasun gehiagorako <a %s>online gidaliburua</a> ikusi.",
'Level' => "Maila",
'Default locale' => "Locale lehenetsia",
'Select main category in target blog and optionally check additional categories' => "Atal nagusia aukeratu eta, nahi izanez gero, atal osagarriak.",
'Select as an additionnal category' => "Atal osagarria bezala aukeratu",
'Select as MAIN category' => "Atal NAGUSIA bezala aukeratu",
'Tools' => "Herramintak",
'Bookmarklet' => "Bookmarklet",
'Add this link to your Favorites/Bookmarks:' => "Lotura hau zure \"Laster-marketara\" (Bookmarks) gehitu:",
'b2evo bookmarklet' => "b2evo bookmarklet",
'Post to b2evolution' => "b2evolution-era idatzi",
'No Sidebar found! You must use Mozilla 0.9.4 or later!' => "Ez da Sidebar aurkitu. Mozzila 0.9.4 edo goragokoa erabili behar duzu.",
'SideBar' => "SideBar",
'Add the <a %s>b2evo sidebar</a> !' => "<a %s>b2evo sidebar</a> gehitu",
'Add this link to your favorites:' => "Lotura hau zure gustokoenetara gehitu:",
'b2evo sidebar' => "b2evo sidebar",
'Movable Type Import' => "Movable Type Import",
'Use MT\'s export functionnality to create a .TXT file containing your posts;' => "MTren esportaziorako funtzioa erabili zure mezuak biltzen dituen .TXT artxibo bat sortzeko;",
'Place that file into the /admin folder on your server;' => "Artxiboa zerbitzariko /admin direktoriora igo;",
'Follow the insctructions in the <a %s>MT migration utility</a>.' => "<a %s>MT Migrazio Baliagarritasuna</a>-ren argibideak jarraitzen ditu.",
'Static file generation' => "Fitxategi estatikoen sortzea",
'Static filename' => "Fitxategi estatikoa",
'This is the .html file that will be created when you generate a static version of the blog homepage.' => "Hau zure blogaren bertsio estatiko bat sortzerakoan egingo den .html artxiboa da.",
'After each new post...' => "Mezu berri bakoitzaren ondoren...",
'Ping b2evolution.net' => "b2evolution.net-era ping egin",
'to get listed on the "recently updated" list on b2evolution.net' => "b2evolution-en \"berriki eguneratuen\" (\"recently updated\") zerrendan agertzeko",
'Ping technorati.com' => "technorati.com-era ping egin",
'to give notice of new post.' => "mezu berriaren berri emateko.",
'Ping weblogs.com' => "weblogs.com-era ping egin",
'Ping blo.gs' => "blo.gs-ra ping egin",
'Advanced options' => "Aukera aurreratuak",
'Allow trackbacks' => "Trackback-ak onartu",
'Allow other bloggers to send trackbacks to this blog, letting you know when they refer to it. This will also let you send trackbacks to other blogs.' => "Beste blogariei blog honetara trackback-ak bidaltzeko baimena eman, eta honi erreferentzia noiz egiten dioten jakiteko aukera eman. Honek beste blogetara trackback-ak bidaltzeko aukera emango dizu ere.",
'Allow pingbacks' => "Pingback-ak onartu",
'Allow other bloggers to send pingbacks to this blog, letting you know when they refer to it. This will also let you send pingbacks to other blogs.' => "Beste blogariei blog honetara pingback-ak bidaltzeko baimena eman, eta honi erreferentzia noiz egiten dioten jakiteko aukera eman. Honek beste blogetara pingback-ak bidaltzeko aukera emango dizu ere.",
'General parameters' => "Parametro orokorrak",
'Full Name' => "Izen Osoa",
'Will be displayed on top of the blog.' => "Blogaren goialdean erakutsiko da.",
'Short Name' => "Izen Laburra",
'Will be used in selection menus and throughout the admin interface.' => "Kudeatzailearen pantailan eta aukeren menuetan erabiliko da.",
'Main Locale' => "Locale Nagusia",
'Determines the language of the navigation links on the blog.' => "Blogaren pantailen lengoaia zehazten du.",
'Access parameters' => "Sarbide-parametroak",
'Default blog on index.php' => "Blog lehenetsia index.php-n",
'Current default is:' => "Egungo lehenetsia hau da:",
'Other blog through index.php' => "Beste blog bat index.php-ren bitartez",
'Other blog through stub file (Advanced)' => "Beste blog bat stub fitxategi baten bitartez (Aurreratua)",
'You MUST create a stub file for this to work.' => "Funtzionatu dezan stub artxibo bat sortu behar duzu.",
'Preferred access type' => "Sarbide-mota hobestua",
'Blog Folder URL' => "Blogaren Direktorioaren URL-a",
'No trailing slash. (If you don\'t know, leave this field empty.)' => "Alderantzikatutako barra diagonalik gabe. (Ez badakizu, zuri utzi)",
'URL blog name / Stub name' => "Blogaren izenaren URL-a / stub fitxategiaren izena",
'Used in URLs to identify this blog. This should be the stub filename if you use stub file access.' => "Blog hau identifikatzeko URL-an erabilia. Stub artxibo bidezko sarrera erabiltzen baduzu, stub artxiboaren izena izan behar da.",
'Default display options' => "Bistaratzeko aukera lehenetsiak",
'Default skin' => "Skin lehenetsia",
'This is the default skin that will be used to display this blog.' => "Hau bloga erakusteko skin lehenetsia da.",
'Allow skin switching' => "Skin aldaketa baimendu",
'Users will be able to select another skin to view the blog (and their prefered skin will be saved in a cookie).' => "Erabiltzaileek bloga ikusteko beste skin bat aukeratu ahalko dute (eta beraien skin-ik gogokoena cookie batetan gordeko da).",
'Display public blog list' => "Blog publikoen zerrenda erakutsi",
'Check this if you want to display the list of all blogs on your blog page (if your skin supports this).' => "Markatu zure blogean blog guztien zerrenda erakutsi nahi baduzu (zure skin-ak jasaten badu).",
'Include in public blog list' => "Blog publikoen zerrendan sartu",
'Check this if you want to this blog to be displayed in the list of all public blogs.' => "Markatu zure bloga blog publiko guztien zerrendan agertzea nahi baduzu.",
'Default linkblog' => "Aurretik zehaztutako linkblog-a",
'Will be displayed next to this blog (if your skin supports this).' => "Blog honen alboan erakutsiko da (zure diseinuak jasaten badu).",
'Tagline' => "Sinadura",
'This is diplayed under the blog name on the blog template.' => "Hau ereduan erakusten da, blogaren izenaren azpian.",
'Long Description' => "Azalpen Luzea",
'This is displayed on the blog template.' => "Hau blogaren ereduan erakusten da.",
'Short Description' => "Azalpen Laburra",
'This is is used in meta tag description and RSS feeds. NO HTML!' => "Hau \"meta tag\" azalpenean eta RSS feed-etan erabiltzen da. EZ erabili HTML!",
'Keywords' => "Gako-hitzak",
'This is is used in meta tag keywords. NO HTML!' => "Hau "meta tag keyword" etiketetan erabiltzen da. EZ erabili HTML!",
'Notes' => "Oharrak",
'Additional info.' => "Informazio osagarria.",
'Blog' => "Bloga",
'Blog URL' => "Blogaren URL-a",
'Static File' => "Fitxategi estatikoa",
'Locale' => "Locale-a",
'Properties' => "Ezaugarriak",
'Default' => "Lehenetsia",
'Gen!' => "Sortu!",
'Are you sure you want to delete blog #%d ?\\n\\nWARNING: This will delete ALL POST, COMMENTS,\\nCATEGORIES and other data related to that Blog!\\n\\nThis CANNOT be undone!' => "Ziur zaude #%d bloga ezabatu nahi duzula!\\n\\nKONTUZ: Honek blogarekin erlazionatutako MEZUAK, ERANTZUNAK,\\nATALAK eta beste datu batzuk ezabatuko ditu \\n\\nAldaketak EZIN dira desegin!",
'Delete this blog!' => "Blog hau ezabatu!",
'Copy this blog!' => "Blog hau kopiatu!",
'Copy' => "Kopiatu",
'Sorry, you have no permission to edit/view any blog\'s properties.' => "Ez duzu blogaren ezaugarriak editatzeko/ikusteko baimenik.",
'New blog...' => "Blog berria...",
'User permissions' => "Erabiltzaile baimenak",
'Login ' => "Login",
'Is<br />member' => "Kidea<br />da",
'Can post/edit with following statuses:' => "Ondorengo egoeretan idatzi/editatu dezakezu:",
'Delete<br />posts' => "Mezuak<br />ezabatu",
'Edit<br />comts' => "Erantzunak<br />editatu",
'Edit<br />cats' => "Atalak<br />editatu",
'Edit<br />blog' => "Bloga<br />editatu",
'Published' => "Argitaratua",
'Protected' => "Babestua",
'Private' => "Pribatua",
'Draft' => "Zirriborroa",
'Deprecated' => "Gaitzetsia",
'Members' => "Kideak",
'Permission to read protected posts' => "Babestutako mezuak irakurtzeko baimena",
'Permission to post into this blog with private status' => "Blog honetan Pribatua egoerarekin idazteko baimena",
'Permission to post into this blog with protected status' => "Blog honetan Babestua egoerarekin idazteko baimena",
'Permission to post into this blog with draft status' => "Blog honetan Zirriborro egoerarekin idazteko baimena",
'Permission to post into this blog with deprecated status' => "Blog honetan Gaitzetsia egoerarekin idazteko baimena",
'Permission to delete posts in this blog' => "Blog honetan mezuak ezabatzeko baimena",
'Permission to edit comments in this blog' => "Blog honetan erantzunak editatzeko baimena",
'Permission to edit categories for this blog' => "Blog honetan atalak editatzeko aukera",
'Permission to edit blog properties' => "Blogaren ezaugarriak editatzeko baimena",
'(un)selects all checkboxes using Javascript' => "Lauki guztiei marka egin/kendu Javascript erabiliz",
'(un)check all' => "Guztiei marka egin/kendu",
'Non members' => "Ez dira kideak",
'Warning! You are about to remove your own permission to edit this blog!\\nYou won\\\'t have access to its properties any longer if you do that!' => "Kontuz! Zure blog hau editatzeko baimena ezabatzera zoaz!\\nHau egiten baduzu, ez duzu bere ezaugarrietara berriro sartzerik izango!",
'Edit category properties' => "Atalaren ezaugarriak editatu",
'Are you sure you want to delete?' => "Ziur zaude ezabatu nahi duzula?",
'New sub-category here' => "Azpi-atal berria hemen",
'New category here' => "Atal berria hemen",
'<strong>Note:</strong> Deleting a category does not delete posts from that category. It will just assign them to the parent category. When deleting a root category, posts will be assigned to the oldest remaining category in the same blog (smallest category number).' => "<strong>Oharra:</strong> Atal bat ezabatzerakoan ez dira atal honi dagozkion mezuak ezabatzen. Hauek gaineko atalera mugituko dira. Atal nagusia ezabatzen bada, mezuak blog berdinaren atalik zaharrenera pasako dira (atal zenbakirik txikiena duen atalera).",
'Post contents' => "Mezuaren edukia",
'Title' => "Izenburua",
'Language' => "Lengoaia",
'Link to url' => "Esteka",
'Email' => "Eposta",
'URL' => "Web orrialdea",
'Preview' => "Aurrebista",
'Spellcheck' => "Ortografia",
'Upload a file/image' => "Artxibo/Irudi bat igo",
'Advanced properties' => "Ezaugarri aurreratuak",
'Edit timestamp' => "Data editatu",
'URL Title' => "URL izenburua",
'(to be used in permalinks)' => "(permalink-ean erabiliko da)",
'Auto-BR' => "Auto-BR",
'This option is deprecated, you should avoid using it.' => "Aukera hau gaitzetsia dago, bere erabilpena saihestu beharko zenuke.",
'Additional actions' => "Ekintza osagarriak",
'Pingback' => "Pingback-a",
'(Send a pingback to all URLs in this post)' => "(Mezu honetako URL guztiei pingback-a bidali)",
'Trackback URLs' => "Trackback URL-ak",
'(Separate by space)' => "(Tarte batez bananduak)",
'Status' => "Egoera",
'The post will be publicly published' => "Mezu hau argitaratuko da",
'Published (Public)' => "Argitaratua",
'The post will be published but visible only by logged-in blog members' => "Mezu hau argitaratuko da, baino erabiltzaile erregistratuek baino ezingo dute ikusi",
'Protected (Members only)' => "Babestua (Kideak bakarrik)",
'The post will be published but visible only by yourself' => "Mezu hau argitaratuko da, baina zuk baino ezingo duzu ikusi",
'Private (You only)' => "Pribatua (Zuk baino ez duzu ikusiko)",
'The post will appear only in the backoffice' => "Mezua ez da argitaratuko",
'Draft (Not published!)' => "Zirriborroa (Argitaratu gabea!)",
'Deprecated (Not published!)' => "Gaitzetsia (Argitaratu gabea!)",
'Note: Moving posts across blogs is enabled. Use with caution.' => "Oharra: Blogen artean mezuak mugitzeko aukera aktibatuta dago. Kontuz erabili.",
'Note: Cross posting among multiple blogs is enabled.' => "Oharra: Blog anizkunen arteko \"Cross posting\"-a aktibatuta dago",
'Note: Cross posting among multiple blogs is currently disabled.' => "Oharra: Blog anizkunen arteko \"Cross posting\"-a desaktibatuta dago",
'Note: Cross posting among multiple categories is currently disabled.' => "Oharra: atalen arteko \"Cross posting\"-a desaktibatuta dago",
'Comments' => "Erantzunak",
'Visitors can leave comments on this post.' => "Bisitariek mezu honetan erantzunak utzi ditzakete",
'Open' => "Irekia",
'Visitors can NOT leave comments on this post.' => "Bisitariek EZIN DUTE erantzun.",
'Closed' => "Itxia",
'Visitors cannot see nor leave comments on this post.' => "Bisitariek mezu honetan ezingo dute ez erantzunik bidali ezta erantzunik irakurri ere.",
'Disabled' => "Ezgaitua",
'Renderers' => "Interpretatzaileak (Renderers)",
'Comment info' => "Erantzunaren informazioa",
'IP address' => "IP helbidea",
'Next %d days' => "Hurrengo %d egunak",
'Previous %d' => "Aurreko %d-ak",
'Previous %d days' => "Aurreko %d egunak",
'Next %d' => "Hurrengo %d-ak",
' to ' => "-tik",
' of ' => "-ra",
'from the end' => "bukaeratik",
'from the start' => "hasieratik",
'OK' => "OK",
' Date range: ' => "Datak:",
'by' => " ",
'level:' => "maila:",
'Pages:' => "Orrialdeak:",
'no comment' => "erantzunik ez",
'1 comment' => "Erantzun 1",
'%d comments' => "%d erantzun",
'1 Trackback' => "Trackback 1",
'%d Trackbacks' => "%d Trackback",
'1 Pingback' => "Pingback 1",
'%d Pingbacks' => "%d Pingback",
'Trackbacks' => "Trackback-ak",
'Pingbacks' => "Pingback-ak",
'No feedback for this post yet...' => "Oraindik ez dago erantzunik...",
'Comment from:' => "Bidaltzailea:",
'Trackback from:' => "Trackback-a hemendik:",
'Pingback from:' => "Pingback-a hemendik:",
'Permanent link to this comment' => "Lotura iraunkorra erantzun honi",
'Leave a comment' => "Erantzun",
'User' => "Erabiltzailea",
'Edit profile' => "Profila editatu",
'Comment text' => "Mezua",
'Allowed XHTML tags' => "Onartutako XHTML etiketak",
'Options' => "Aukerak",
'(Line breaks become <br>)' => "(Lerro saltoak <br> bihurtzen dira)",
'Send comment' => "Bidali",
'Posts to show' => "Erakutsiko diren mezuak",
'Past' => "Iragana",
'Future' => "Etorkizuna",
'Title / Text contains' => "Izenburuak / Testuak du",
'Words' => "Hitzak",
'AND' => "ETA",
'OR' => "EDO",
'Exact match' => "Bilaketa zehatza",
'week' => "astea",
'Reset' => "Garbitu",
'GPL License' => "GPL Lizentzia",
'uncheck all' => "guztiei marka kendu",
'check all' => "guztiei marka egin",
'visit b2evolution\'s website' => "b2evolution-en orria bisitatu",
'Style:' => "Itxura:",
'Logout' => "Saioa itxi",
'Exit to blogs' => "Blogetara atera",
'Blog time:' => "Blogaren ordua:",
'GMT:' => "GMT:",
'Logged in as:' => "Erabiltzailea:",
'Write' => "Idatzi",
'Edit' => "Editatu",
'Stats' => "Estatistikak",
'Templates' => "Ereduak",
'Users' => "Erabiltzaileak",
'User Profile' => "Erabiltzaile profila",
'Default user rights' => "Aurretik zehaztutako erabiltzaile-eskubideak",
'New users can register' => "Erabiltzaile berriak erregistratu daitezke",
'Check to allow new users to register themselves.' => "Marka egin erabiltzaile berriei beraien kabuz erregistratzen uzteko.",
'Group for new users' => "Erabiltzaile berrientzako taldea",
'Groups determine user roles and permissions.' => "Taldeek erabiltzaileen funtzio eta baimenak zehazten dituzte.",
'Level for new users' => "Erabiltzaile berrientzako maila",
'Levels determine hierarchy of users in blogs.' => "Mailek erabiltzaileen hierarkia zehatzen dute blogetan.",
'Display options' => "Bistaratze aukerak",
'Default blog to display' => "Erakutsiko den blog lehenetsia",
'This blog will be displayed on index.php .' => "Bloga index.php-n erakutsiko da.",
'days' => "egun",
'posts' => "mezu",
'posts paged' => "mezu erakusten dira",
'Display mode' => "Bistaratze modua",
'Posts/Days per page' => "Mezu/Egun orriko",
'monthly' => "hilabetero",
'weekly' => "astero",
'daily' => "egunero",
'post by post' => "mezurik mezu",
'Archive mode' => "Artxibo modua",
'Link options' => "Lotura aukerak",
'Use extra-path info' => "Extra-path informazioa erabili",
'Recommended if your webserver supports it. Links will look like \'stub/2003/05/20/post_title\' instead of \'stub?title=post_title&c=1&tb=1&pb=1&more=1\'.' => "Gomendatua, zure web zerbitzariak jasaten badu. Estekak 'stub/2003/05/20/post_title' modukoak izango dira, ''stub?title=post_title&c=1&tb=1&pb=1&more=1' modukoak izan beharrean.",
'Post called up by its URL title (Recommended)' => "Bere URL izenburuagatik deituriko mezua (Gomendatua)",
'Fallback to ID when no URL title available.' => "Bere ID-a erabiltzen da URL izenbururik eskura ez badago.",
'Post called up by its ID' => "Bere ID-agatik deituriko mezua",
'Post on archive page, located by its ID' => "Mezua artxiboen orrialdean, bere ID-agatik lokalizatua",
'Post on archive page, located by its title (for Cafelog compatibility)' => "Mezua artxiboen orrialdean, bere izenburuagatik lokalizatua (Cafelog-ekin bateragarritasuna izateko)",
'Permalink type' => "Permalink mota",
'Security options' => "Segurtasun aukerak",
'Minimum password length' => "Pasahitzaren gutxieneko luzera",
'for users.' => "erabiltzaileentzat.",
'Rendering plug-ins' => "Plug-in interpretatzaileak",
'Plug-in' => "Plug-in-a",
'Apply' => "Ezarri",
'Toolbar plug-ins' => "Herraminta barraren plug-in-ak",
'Create new locale' => "Locale berria sortu",
'Edit locale' => "Locale-a editatu",
'The first two letters should be a <a %s>ISO 639 language code</a>. The last two letters should be a <a %s>ISO 3166 country code</a>.' => "Lehen bi hizkiak <a %s>ISO 639 lengoaia kodea</a> izan behar dira. Azken bi hizkiak <a %s>ISO 3166 herrialde kodea</a> izan behar dira.",
'Enabled' => "Gaitua",
'Should this locale be available to users?' => "Erabiltzaileek locale hau erabiltzeko aukera izango dute?",
'name of the locale' => "locale-aren izena",
'Charset' => "Charset-a",
'Must match the lang file charset.' => "Lengoaia artxiboarekin bat etorri behar du.",
'Date format' => "Data formatua",
'See below.' => "Ikus behean.",
'Time format' => "Ordu formatua",
'Lang file' => "Lengoaia artxiboa",
'the lang file to use, from the <code>locales</code> subdirectory' => "erabiliko den lengoaia artxiboa, <code>locales</code> azpidirektoriotik",
'Priority' => "Lehentasuna",
'1 is highest. Priority is important when selecting a locale from a language code and several locales match the same language; this can happen when detecting browser language. Priority also affects the order in which locales are displayed in dropdown boxes, etc.' => "1 altuena da. Lehentasuna garrantzitsua da lengoaia kode baten locale-a aukeratu eta zenbait local ezberdinek lengoaia berdinarekin bat datozenean; nabigatzailearen lengoaia detektatzerakoan gerta daiteke hau. Lehentasunak menuetan etabarretan erakusten diren locale-en ordenuan eragiten du ere.",
'Create' => "Sortu",
'Update' => "Eguneratu",
'This will replace locale \\\'%s\\\'. Ok?' => "Honek \\'%s\\' locale-a ordezkatuko du. Ados?",
'Flags' => "Banderak",
'The flags are stored in subdirectories from <code>%s</code>. Their filename is equal to the country part of the locale (characters 4-5); file extension is .gif .' => "Banderak <code>%s</code>-ren azpidirektoriotan gordetzen dira. Beraien artxibo izena locale-aren herrialdearen zatiari dagokionaren berdina da (4 eta 5 karaktereak); .gif luzapena dute.",
'Date/Time Formats' => "Data/Ordu formatuak",
'The following characters are recognized in the format strings:' => "Formatu kateetan ondorengo karaktereak onartzen dira:",
'a - "am" or "pm"' => "a - \"am\" edo \"pm\"",
'A - "AM" or "PM"' => "A - \"AM\" edo \"PM\"",
'B - Swatch Internet time' => "B - Internet Swatch ordua",
'c - ISO 8601 date (Requires PHP 5); i.e. "2004-02-12T15:19:21+00:00"' => "c - ISO 8601 data (PHP 5 behar du); adb.: \"2004-02-12T15:19:21+00:00\"",
'd - day of the month, 2 digits with leading zeros; i.e. "01" to "31"' => "d- hilabetearen eguna, 2 bi zifra; adb.: \"01\"-etik \"31\"-ra",
'D - day of the week, textual, 3 letters; i.e. "Fri"' => "D - asteguna, testuala, 3 hizki; adb.: \"Iga\"",
'e - day of the week, 1 letter; i.e. "F"' => "e - asteguna, hizki 1; adb.: \"L\"",
'F - month, textual, long; i.e. "January"' => "F - hilabetea, testuala, luzea; adb.: \"Urtarrila\"",
'g - hour, 12-hour format without leading zeros; i.e. "1" to "12"' => "g - ordua, 12 orduko formatua, ezkerrean zerorik gabe; adb.: \"1\"-etik \"12\"-ra",
'G - hour, 24-hour format without leading zeros; i.e. "0" to "23"' => "G - ordua, 24 orduko formatua, ezkerrean zerorik gabe; adb.: \"0\"-tik \"23\"-ra",
'h - hour, 12-hour format; i.e. "01" to "12"' => "h - ordua, 12 orduko formatua; adb.: \"01\"-tik \"12\"-ra",
'H - hour, 24-hour format; i.e. "00" to "23"' => "H - ordua, 24 orduko formatua; adb.: \"00\"-tik \"23\"-ra",
'i - minutes; i.e. "00" to "59"' => "i - minutuak; adb.: \"00\"-tik \"59\"-ra",
'I (capital i) - "1" if Daylight Savings Time, "0" otherwise.' => "I (i maiuskulaz) - \"1\" udako ordutegian, bestela \"0\".",
'j - day of the month without leading zeros; i.e. "1" to "31"' => "j - hilabetearen eguna zerorik gabe; adb.: \"1\"-etik \"31\"-ra",
'l (lowercase "L") - day of the week, textual, long; i.e. "Friday"' => "l (L minuskulaz) - astearen eguna, testuala, luzea; adb.: Ostirala",
'L - boolean for whether it is a leap year; i.e. "0" or "1"' => "L - Urtea bisustua denentz erakusten duen boolearra; adb.: \"0\" edo \"1\"",
'm - month; i.e. "01" to "12"' => "m - hilabetea; adb.: \"01\"-etik \"12\"-ra",
'M - month, textual, 3 letters; i.e. "Jan"' => "M - hilabetea, testuala, 3 hizki; adb.: \"Urt\"",
'n - month without leading zeros; i.e. "1" to "12"' => "n - hilabetea zerorik gabe; adb.: \"1\"-etik \"12\"-ra",
'O - Difference to Greenwich time (GMT) in hours; i.e. "+0200"' => "O - Greenwich (GMT) orduarekiko aldea ordutan; adb.: \"+0200\"",
'r - RFC 822 formatted date; i.e. "Thu, 21 Dec 2000 16:01:07 +0200"' => "r - RFC 822 formatudun data; adb.: \"Ost, 21 Abe 2000 16:01:07 +0200\"",
's - seconds; i.e. "00" to "59"' => "s - segunduak; adb.: \"00\"-tik \"59\"-ra",
'S - English ordinal suffix, textual, 2 characters; i.e. "th", "nd"' => "S - ordinalentzako atzizki ingelesa, testuala, 2 karaktere; adb.: \"th\", \"nd\"",
't - number of days in the given month; i.e. "28" to "31"' => "t - hilabetearen egunen kopurua; adb: \"28\"-tik \"31\"-ra",
'T - Timezone setting of this machine; i.e. "MDT"' => "T - Makinaren orduen eremuaren konfigurazioa; adb.: \"MDT\"",
'U - seconds since the epoch' => "U - segunduak \"epoch\"-etik",
'w - day of the week, numeric, i.e. "0" (Sunday) to "6" (Saturday)' => "w - astearen eguna, zenbakizkoa; adb.: \"0\"-tik (Igandea) \"6\"-ra (Larunbata)",
'W - ISO-8601 week number of year, weeks starting on Monday; i.e. "42"' => "W - urteko astearen ISO-8601 zenbakia, astea Astelehenatik hasita; adb.: \"42\"",
'Y - year, 4 digits; i.e. "1999"' => "Y - urtea, 4 digitu; adb.: \"2004\"",
'y - year, 2 digits; i.e. "99"' => "y - urtea, 2 digitu; adb.: \"04\"",
'z - day of the year; i.e. "0" to "365"' => "z - urtearen eguna; adb.: \"0\"-tik \"365\"-era",
'Z - timezone offset in seconds (i.e. "-43200" to "43200"). The offset for timezones west of UTC is always negative, and for those east of UTC is always positive.' => "Z - orduen eremuaren offset-a, segundutan; adb.: \"-43200\"-tik \"43200\"-ra. UTC-ren mendebaldeko orduen eremuentzako negatiboa da, eta alderantziz.",
'isoZ - full ISO 8601 format, equivalent to Y-m-d\\TH:i:s\\Z' => "isoZ - ISO 860 formatua, Y-m-d\\TH:i:s\\Z -ren baliokidea",
'Unrecognized characters in the format string will be printed as-is.<br />\n\t\t\tYou can escape characters by preceding them with a \\ to print them as-is.' => "Formatu katean ezagutzen ez diren karaktereak bere horretan erakutsiko dira.<br />\n\t\t\tFormatu bat definitzen duten karaktereak erakusteko, aurretik \\ jarri behar da.",
'Note: default locale is not enabled.' => "Oharra: aurretik zehaztutako locale-a ez dago gaitua.",
'Regional settings' => "Eskualde aukerak",
'Time difference' => "Orduen aldea",
'in hours' => "ordutan",
'If you\'re not on the timezone of your server. Current server time is: %s.' => "Zure zerbitzariaren orduen eremuan ez bazaude. Zerbitzariaren oraingo ordua: %s.",
'Overriden by browser config, user locale or blog locale (in this order).' => "Nabigatzailearen konfigurazioak, erabiltzailearen locale-ak edota blogaren locale-ak (ordenu honetan) behartua.",
'Available locales' => "Locale erabilgarriak",
'Hide translation info' => "Itzulpen informazioa ezkutatu",
'Show translation info' => "Itzulpen informazioa erakutsi",
'Date fmt' => "Data form",
'Time fmt' => "Ordu form",
'Strings' => "Kateak",
'Translated' => "Itzulia",
'Extract' => "Atera",
'up' => "gora",
'Move priority up' => "Lehentasuna igo",
'down' => "behera",
'Move priority down' => "Lehentasuna jaitsi",
'Copy locale' => "Locale-a kopiatu",
'Reset custom settings' => "Hobestutako balioak berrezarri",
'No language file...' => "Ez dago lengoaia artxiborik...",
'Extract .po file into b2evo-format' => ".po artxiboa b2evo-formatura atera",
'Are you sure you want to reset?' => "Ziur zaude hasierako balioetara itzuli nahi duzula?",
'Reset to defaults (delete database table)' => "Hasierako balioetara itzuli (datu-baseko taula ezabatu)",
'first user' => "lehen erabiltzailea",
'previous user' => "aurreko erabiltzailea",
'next user' => "hurrengo erabiltzailea",
'last user' => "azken erabiltzailea",
'Close user profile' => "Erabiltzaile profila itxi",
'Create new user profile' => "Erabiltzaile profil berria sortu",
'Profile for:' => "Profila",
'User rights' => "Erabiltzaile eskubideak",
'Login' => "Sarrera",
'First name' => "Izena",
'Last name' => "Abizena",
'Nickname' => "Goitizena",
'Identity shown' => "Erakutsiko den identitatea",
'Preferred locale' => "Hobestutako locale-a",
'Preferred locale for admin interface, notifications, etc.' => "Administrazio interfaze, jakinarazpen etabarretarako hobestutako locale-a",
'Send an email' => "Eposta bidali",
'Visit the site' => "Webgunea bisitatu",
'Search on ICQ.com' => "ICQ.com-en bilatu",
'ICQ' => "ICQ",
'Instant Message to user' => "Berehalako Mezua erabiltzaileari",
'AIM' => "AIM",
'MSN IM' => "MSN",
'YahooIM' => "YahooIM",
'Notifications' => "Jakinarazpenak:",
'Check this to receive notification whenever one of your posts receives comments, trackbacks, etc.' => "Laukia markatu zure mezu batek erantzunak, trackback-ak etabar dituenean jakinarazpena jaso nahi baduzu.",
'New password' => "Pasahitz berria",
'Leave empty if you don\'t want to change the password.' => "Zuri utzi ez baduzu pasahitza aldatu nahi.",
'Confirm new password' => "Pasahitz berria berretsi",
'yes' => "bai",
'no' => "ez",
'User information' => "Erabiltzaile informazioa",
'ID' => "ID",
'Posts' => "Mezuak",
'Created on' => "Sortua",
'From IP' => "IP helbidea",
'From Domain' => "Domeinua",
'With Browser' => "Nabigatzailea",
'first group' => "lehen taldea",
'previous group' => "aurreko taldea",
'next group' => "hurrengo taldea",
'last group' => "azken taldea",
'Close group profile' => "Talde profila itxi",
'Creating new group' => "Talde berria sortzen",
'Editing group:' => "Taldea editatzen:",
'Viewing group:' => "Taldea ikusten:",
'Permissons for members of this group' => "Talde honetako kideentzako baimenak",
'View all' => "Guztiak ikusi",
'Full Access' => "Sarbide Osoa",
'No Access' => "Sartzerik Ez",
'View only' => "Ikusi baino ez",
'Statistics' => "Estatistikak",
'Global options' => "Aukera orokorrak",
'Check to allow template editing.' => "Markatu ereduen edizioa baimentzeko.",
'User/Group Management' => "Erabiltzaileen/Taldeen Kudeaketa",
'Groups & Users' => "Taldeak & Erabiltzaileak",
'default group for new users' => "erabiltzaile berrientzako aurretik zehaztutako taldea",
'Copy group' => "Taldea kopiatu",
'Delete group' => "Taldea ezabatu",
'decrease user level' => "erabiltzaile maila jaitsi",
'increase user level' => "erabiltzaile maila igo",
'Delete user' => "Erabiltzailea ezabatu",
'Are you sure you want to delete this user?\\nWarning: all his posts will be deleted too!' => "Ziur zaude erabiltzaile hau ezabatu nahi duzula?\\nErne: bere mezu guztiak ezabatuko dira ere!",
'New user...' => "Erabiltzaile berria...",
'New group...' => "Talde berria...",
'The default skin [%s] set for blog [%s] does not exist. It must be properly set in the <a %s>blog properties</a> or properly overriden in a stub file. Contact the <a %s>webmaster</a>...' => "[%s] Blogarentzat aurretik zehaztutako [%s] skin-a ez da existitzen. Behar bezala konfiguratuta egon behar du <a %s>blogaren ezaugarrietan</a> edo stub artxiboan. <a %s>Webmaster</a>-arekin harremanetan jarri...",
'ERROR! Could not delete! You will have to delete the file [%s] by hand.' => "ERROREA! Ezin izan da ezabatu. [%s] artxiboa eskuz ezabatu beharko zenuke.",
'%d posts' => "%d mezu",
'1 post' => "mezu 1",
'previous month' => "aurreko hilabetea",
'next month' => "hurrengo hilabetea",
'previous year' => "aurreko urtea",
'next year' => "hurrengo urtea",
'go to month\'s archive' => "hileko artxibora joan",
'Member' => "Kidea",
'Visitor' => "Bisitaria",
'Edit this comment' => "Erantzuna editatu",
'Delete' => "Ezabatu",
'Delete this comment' => "Erantzuna ezabatu",
'You are about to delete this comment!\\n\\\'Cancel\\\' to stop, \\\'OK\\\' to delete.' => "Erantzun hau ezabatzera zoaz.\\n\\'Ezeztatu\\' atzera egiteko. \\'OK\\' ezabatzeko.",
'No comment yet...' => "Erantzunik ez oraindik...",
'Sorry, there is nothing to display...' => "Sentitzen dut, ez dago zer erakutsi...",
'New group' => "Talde berria",
'Parser error: ' => "\"Parser\" errorea:",
'Tag <code>body</code> can only be used once!' => "<code>body</code> etiketa behin baino ezin da erabili!",
'Illegal tag' => "Etiketa ilegala",
'Tag %s must occur inside another tag' => "%s etiketa beste etiketa baten barruan egon behar da",
'Tag %s is not allowed within tag %s' => "%s etiketa ez dago %s etiketaren barruan onartua",
'Tag %s may not have attribute %s' => "%s etiketak ezin du %s ezaugarria izan",
'Found invalid URL: ' => "URL baliogabe bat aurkitu da:",
'Tag %s may not contain raw character data' => "%s etiketak ezin du karaktere datu gordinik eduki",
'Browse category' => "Atala erakutsi",
'Comments are closed for this post.' => "Mezu honentzako erantzunak itxita daude.",
'This post is not published. You cannot leave comments.' => "Mezu hau argitaratu gabe dago. Ezin duzu erantzunik utzi.",
'Read more!' => "Gehiago irakurri!",
'More:' => "Gehiago:",
'Display feedback / Leave a comment' => "Erantzunak ikusi / Erantzun",
'Send feedback' => "Erantzuna bidali",
'1 feedback' => "erantzun 1",
'%d feedbacks' => "%d erantzun",
'Display comments / Leave a comment' => "Erantzunak ikusi / Erantzun",
'Display trackbacks / Get trackback address for this post' => "Trackback-ak ikusi / Mezu honen trackback helbidea eskuratu",
'Trackback (0)' => "(0) Trackback",
'Trackback (1)' => "Trackback (1)",
'Trackbacks (%d)' => "(%d) Trackback",
'Display pingbacks' => "Pingback-ak erakutsi",
'Pingback (0)' => "(0) Pingback",
'Pingback (1)' => "Pingback (1)",
'Pingbacks (%d)' => "(%d) Pingback",
'Delete this post' => "Mezu hau ezabatu",
'You are about to delete this post!\\n\\\'Cancel\\\' to stop, \\\'OK\\\' to delete.' => "Mezu hau ezabatzera zoaz.\\n\\Ezeztatu\\' atzera egiteko. \\'OK\\' ezabatzeko.",
'Edit this post' => "Editatu",
'Publish NOW!' => "ORAIN argitaratu!",
'Publish now using current date and time.' => "Orain argitaratu egungo data eta ordua erabiliz.",
'Invalid post, please correct these errors:' => "Mezuak ez du balio, akats hauek zuzendu mesedez:",
'Sorry, there is no post to display...' => "Sentitzen dut, ez dago zer erakutsi...",
'POP3 connect:' => "POP3 bitartez konektatu:",
'No server specified' => "Ez da zerbitzaririk zehaztu",
'POP3: premature NOOP OK, NOT an RFC 1939 Compliant server' => "POP3: NOOP OK goiztiarra, zerbitzariak EZ du RFC 1939 araua jarraitzen",
'POP3 noop:' => "POP3 noop-a:",
'No connection to server' => "Ez dago koneksiorik zerbitzariarekin",
'POP3 user:' => "POP3 erabiltzailea:",
'No login ID submitted' => "Ez da login ID-rik bidali",
'connection not established' => "ez da koneksioa burutu",
'POP3 pass:' => "POP3 pasahitza:",
'No password submitted' => "Ez da pasahitzik bidali",
'authentication failed ' => "autentikazioak huts egin du",
'NOOP failed. Server not RFC 1939 compliant' => "NOOP-ak huts egin du. Zerbitzariak ez du RFC 1939 araua jarraitzen",
'POP3 apop:' => "POP3 apop-a:",
'No server banner' => "Ez dago zerbitzariaren bannerrik",
'abort' => "geldiarazi",
'apop authentication failed' => "apop autentikazioak huts egin du",
'POP3 login:' => "POP3 login:",
'POP3 top:' => "POP3 top:",
'POP3 pop_list:' => "POP3 pop_list:",
'Premature end of list' => "Zerrendaren amaiera goiztiarra",
'POP3 get:' => "POP3 get:",
'POP3 last:' => "POP3 last:",
'POP3 reset:' => "POP3 reset:",
'POP3 send_cmd:' => "POP3 send_cmd:",
'Empty command string' => "Komando kate hutsa",
'POP3 quit:' => "POP3-tik irten:",
'connection does not exist' => "koneksioa ez da existitzen",
'POP3 uidl:' => "POP3 uidl:",
'POP3 delete:' => "POP3-a ezabatu:",
'No msg number submitted' => "Ez da mezu zenbakirik bidali",
'Command failed' => "Komandoak huts egin du",
'New user' => "Erabiltzaile berria",
'Permission denied!' => "Sarrera ukatua!",
'Oops, MySQL error!' => "Oops, Mysql errorea!",
'go back' => "atzera itzuli",
'Redirecting you to:' => "Hona berbideratzen: ",
'If nothing happens, click <a %s>here</a>.' => "Ez bada ezer gertatzen, egizu klik <a %s>hemen</a>.",
'No response!' => "Erantzunik gabe!",
'Remote error' => "Urrutiko errorea",
'Response' => "Erantzuna:",
'Parameter %s is required!' => "%s parametroa beharrezkoa da!",
'Invalid URL' => "URL baliogabea",
'URI scheme not allowed' => "Onartzen ez den URI eskema",
'URL not allowed' => "Onartzen ez den URL-a",
'Reporting abuse to b2evolution.net...' => "b2evolution.net-era spam-a jakinarazten...",
'Aborted (Running on localhost).' => "geldiarazia (Localhost-ean gauzatua).",
'Requesting abuse list from b2evolution.net...' => "b2evolution.net-era spam zerrenda eskatzen...",
'Latest update timestamp' => "Azken eguneraketaren ordua",
'Incomplete reponse.' => "Bukatu gabeko erantzuna.",
'No new blacklisted strings are available.' => "Ez dago kate erabilgarri berririk zerrenda beltzan.",
'Adding strings to local blacklist' => "Zerrenda beltz lokalari kateak gehitzen",
'Adding:' => "Gehitzen:",
'OK.' => "OK.",
'Not necessary! (Already handled)' => "Ez da beharrezkoa! (jadanik gehitua zegoen)",
'New latest update timestamp' => "Azken eguneraketa ordu berria",
'Invalid reponse.' => "Erantzun baliogabea.",
'Requested blog does not exist!' => "Eskatutako bloga ez da existitzen!",
'Post details' => "Mezua",
'PREVIEW' => "AURREBISTA",
'Next page' => "Hurrengo orrialdea",
'Previous page' => "Aurreko orrialdea",
'Previous post' => "Aurreko mezua",
'Next post' => "Hurrengo mezua",
'Next Page' => "Hurrengo orrialdea",
'Previous Page' => "Aurreko orrialdea",
'Cannot delete if there are sub-categories!' => "Ezin da ezabatu azpiatalak baditu!",
'Cannot delete last category if there are posts inside!' => "Ezin da azkeneko atala ezabatu barruan mezuak baditu!",
'Requested category %s does not exist!' => "%s atala ez da existitzen!",
'Category' => "Atala",
'Save !' => "Gorde!",
'bad char in User Agent' => "Karaktere baliogabea nabigatzailean",
'referer ignored' => "bazter utzitako igortzailea",
'BlackList' => "Zerrenda Beltza",
'robot' => "robota",
'invalid' => "baliogabea",
'search engine' => "bilatzailea",
'loading referering page' => "orrialde igortzailea kargatzen",
'found current url in page' => "egungo url-a orrialdean aurkitu da",
'not a query - no params!' => "ez zen kontsulta bat - ez dago parametrorik!",
'no query string found' => "ez da kontsulta katerik aurkitu",
'name' => "izena",
'Sending pingbacks...' => "Pingback-ak bidaltzen...",
'No pingback to be done.' => "Ez dago egiteko pingback-ik.",
'BEGIN' => "HASIERA",
'Processing:' => "Prozesatzen:",
'Couldn\'t find a hostname for:' => "Ezin izan da honen host izena aurkitu:",
'Connect to server at:' => "Zerbitzarira hemen konektatu:",
'Couldn\'t open a connection to:' => "Ezin izan da koneksiorik ireki honekin:",
'Start receiving headers and content' => "Goiburukoak eta edukia jasotzen hasi",
'Pingback server found from X-Pingback header:' => "Pingback zerbitzaria X-Pingback goiburukoan aurkitua:",
'Pingback server found from Pingback <link /> tag:' => "Pingback zerbitzaria Pingback etiketan aurkitua <link />:",
'Pingback server not found in headers and content' => "Pingback zerbitzaria ez da goiburukoan eta edukian aurkitu",
'Pingback server URL is empty (may be an internal PHP fgets error)' => "Pingback zerbitzariaren URL-a hutsik dago (PHP-ren fgets barne akatsa izan liteke)",
'Pingback server data' => "Pingback zerbitzariaren datuak",
'Page Linked To:' => "Orrialdea hona estekatu da:",
'Page Linked From:' => "Orrialdea hemendik estekatu da:",
'Pinging %s...' => "%s -ri ping egiten...",
'END' => "AMAIERA",
'Pingbacks done.' => "Pingback-ak burutu dira.",
'Pinging b2evolution.net...' => "b2evolution.net-era ping egiten...",
'Pinging Weblogs.com...' => "Weblogs.com-era ping egiten",
'Pinging Blo.gs...' => "Blo.gs-era ping egiten",
'Pinging technorati.com...' => "technorati.com-era ping egiten...",
'Archives for' => "Artxiboak",
'Archive Directory' => "Artxiboen Direktorioa",
'Sending trackbacks...' => "Trackback-ak bidaltzen...",
'No trackback to be sent.' => "Ez dago bidaltzeko trackback-ik.",
'Excerpt to be sent:' => "Bidaliko den estraktua:",
'Trackbacks done.' => "Trackback-ak burutu dira.",
'Sending trackback to:' => "Trackback-a hona bidaltzen:",
'Response:' => "Erantzuna:",
'wrong login/password.' => "erabiltzaile/pasahitz okerrak.",
'setcookie %s failed!' => "setcookie %s-k huts egin du!",
'login/password no longer valid.' => "erabiltzailea/pasahitza dagoeneko ez dute balio.",
'You must log in!' => "Identifikatu behar zara!",
'Login if you have an account...' => "Identifikatu kontu bat baldin baduzu...",
'Register...' => "Izena eman...",
'Register to open an account...' => "Izena eman kontu bat irekitzeko...",
'Logout (%s)' => "(%s) saioa itxi",
'Logout from your account' => "Saioa itxi",
'Admin' => "Kudeaketa",
'Go to the back-office' => "Back-office-ra joan",
'Profile (%s)' => "(%s) profila",
'Edit your profile' => "Nire profila editatu",
'User profile' => "Erabiltzaile profila",
'Sunday' => "Igandea",
'Monday' => "Astelehena",
'Tuesday' => "Asteartea",
'Wednesday' => "Asteazkena",
'Thursday' => "Osteguna",
'Friday' => "Ostirala",
'Saturday' => "Larunbata",
'Sun' => "Iga",
'Mon' => "Ast",
'Tue' => "Ast",
'Wed' => "Ast",
'Thu' => "Ost",
'Fri' => "Ost",
'Sat' => "Lar",
' S ' => "I",
' M ' => "A",
' T ' => "A",
' W ' => "A",
' T ' => "O",
' F ' => "O",
' S ' => "L",
'January' => "Urtarrila",
'February' => "Otsaila",
'March' => "Martxoa",
'April' => "Apirila",
'May ' => "Maiatza",
'June' => "Ekaina",
'July' => "Uztaila",
'August' => "Abuztua",
'September' => "Iraila",
'October' => "Urria",
'November' => "Azaroa",
'December' => "Abendua",
'Jan' => "Urt",
'Feb' => "Ots",
'Mar' => "Mar",
'Apr' => "Api",
'May' => "Mai",
'Jun' => "Eka",
'Jul' => "Uzt",
'Aug' => "Abu",
'Sep' => "Ira",
'Oct' => "Urr",
'Nov' => "Aza",
'Dec' => "Abe",
'Local' => "Lokala",
'Reported' => "Jakinarazia",
'Central' => "Zentrala",
'Czech (CZ)' => "Txekiera (CZ)",
'Danish (DK)' => "Daniera (DK)",
'German (DE)' => "Alemaniera (DE)",
'English (EU)' => "Ingelesa (EU)",
'English (UK)' => "Ingelesa (UK)",
'English (US)' => "Ingelesa (US)",
'English (CA)' => "Ingelesa (CA)",
'English (AU)' => "Ingelesa (AU)",
'English (IL)' => "Ingelesa (EU)",
'English (NZ)' => "Ingelesa (NZ)",
'English (SG)' => "Ingelesa (SG)",
'Spanish (ES)' => "Espainiera (ES)",
'Spanish (MX)' => "Espainiera (MX)",
'Spanish (VE)' => "Espainiera (VE)",
'Finnish (FI)' => "Finlandiera (FI)",
'French (FR)' => "Frantsesa (FR)",
'French (CA)' => "Frantsesa (CA)",
'French (BE)' => "Frantsesa (BE)",
'Galician (ES)' => "Galiziera (ES)",
'Hungarian (HU)' => "Hungariera (HU)",
'Italian (IT)' => "Italiera (IT)",
'Japanese (JP)' => "Japoniera (JP)",
'Lithuanian (LT)' => "Lituaniera (LT)",
'Bokmål (NO)' => "Norbegiera (NO)",
'Dutch (NL)' => "Holandera (NL)",
'Dutch (BE)' => "Holandera (BE)",
'Portuguese (BR)' => "Portugus (BR)",
'Portuguese (PT)' => "Portugesa (BR)",
'Slovak (SK)' => "Eslovakiera (SK)",
'Swedish (SE)' => "Suediera (SE)",
'Thai (TH)' => "Thailandiera (TH)",
'Turkish (TR)' => "Turkiera (TR)",
'Turkish utf-8 (TR)' => "Turkiera utf-8 (TR)",
'Chinese(S) gb2312 (CN)' => "Txinera(S) gb2312 (CN)",
'Chinese(S) utf-8 (CN)' => "Txinera(S) utf-8 (CN)",
'Trad. Chinese (TW)' => "Txinera tradizionala (TW)",
'You cannot leave comments on this post!' => "Mezu honetan ezin duzu erantzunik utzi!",
'Please fill in the name field' => "Bete ezazu 'izena' atala, mesedez",
'Please fill in the email field' => "Bete ezazu 'eposta' atala, mesedez",
'Supplied name is invalid' => "Emandako izenak ez du balio:",
'Supplied email address is invalid' => "Eposta helbidea ez da balizkoa",
'Please do not send empty comment' => "Ez bidali zuri utzitako erantzunik, mesedez",
'Supplied comment is invalid' => "Emandako erantzuna baliogabea da",
'You can only post a new comment every %d seconds.' => "Erantzun berri bat %d segundotan behin baino ezin duzu bidali.",
'Cannot post comment, please correct these errors:' => "Ezin da erantzuna publikatu. Akats hauek zuzendu, mesedez:",
'Back to comment editing' => "Erantzunaren ediziora itzuli",
'New comment on your post #%d "%s"' => "Erantzun berria #%d \"%s\" mezuan",
'Url' => "Url-a",
'Comment' => "Erantzuna",
'Edit/Delete' => "Editatu/Ezabatu",
'Connecting to pop server...' => "Pop zerbitzarira konektatzen...",
'Connection failed: ' => "Koneksioak huts egin du:",
'Logging into pop server...' => "Pop zerbitzarian identifikatzen...",
'No mail or Login Failed:' => "Ez dago postik, edo identifikazioak huts egin du:",
'Getting message #%d...' => "#%d mezua jasotzen...",
'Processing...' => "Prozesatzen...",
'Too old' => "Zaharregia",
'Subject prefix does not match' => "Tituluaren aurrizkia ez dator bat",
'Raw content:' => "Eduki gordina:",
'Login:' => "Erabiltzailea:",
'Pass:' => "Pasahitza:",
'Wrong login or password.' => "Erabiltzaile edo pasahitz okerrak.",
'Category ID' => "Atalaren ID-a",
'Blog ID' => "Blogaren ID-a",
'Permission denied.' => "Sarrera ukatua.",
'Posted title' => "Titulu argitaratua",
'Posted content' => "Eduki argitaratua",
'Mission complete, message deleted.' => "Zeregina burutu da, mezua ezabatu da.",
'You cannot reset this account in demo mode.' => "Adibiderako moduan ezin duzu kontu hau garbitu.",
'An email with the new password was sent successfully to your email address.' => "Zure eposta helbidera mail bat bidali da zure pasahitz berriarekin.",
'New Password:' => "Pasahitz berria:",
'You can login here:' => "Hemen identifikatu zaitezke:",
'your weblog\'s login/password' => "zure blogaren erabiltzaile/pasahitza",
'The email could not be sent.' => "Ezin izan da eposta bidali.",
'Possible reason: your host may have disabled the mail() function...' => "Arrazoi posiblea: agian zure host-ak mail() funtzioa ezgaitu du...",
'Note: You are already logged in!' => "Oharra: Identifikatu zara jada!",
'Continue...' => "Jarraitu...",
'You are not logged in.' => "Ez zara identifikatu.",
'You are not logged in under the same account you are trying to modify.' => "Ez zara aldatzen saiatzen ari zaren kontu berdinarekin identifikatu.",
'Back to profile' => "Profilera itzuli",
'please enter your nickname (can be the same as your login)' => "mesedez, zure goitizena sartu (zure erabiltzaile izenaren berdina izan daiteke)",
'your ICQ UIN can only be a number, no letters allowed' => "zure UIN ICQ-a zenbaki bakarra izan daiteke. ",
'please type your e-mail address' => "mesedez, zure eposta helbidea sartu",
'the email address is invalid' => "eposta helbidea ez da balizkoa",
'you typed your new password only once. Go back to type it twice.' => "pasahitz berria behin baino ez duzu idatzi. Hau bi aldiz idaztera itzuli, mesedez.",
'you typed two different passwords. Go back to correct that.' => "bi pasahitz ezberdin idatzi dituzu. Hau zuzentzera itzuli, mesedez.",
'please enter a Login' => "erabiltzaile izen bat sartu, mesedez",
'please enter your password twice' => "zure pasahitza sartu (bi aldiz), mesedez",
'please type the same password in the two password fields' => "pasahitz berdina idatzi pasahitzetarako bi ataletan, mesedez",
'this login is already registered, please choose another one' => "erabiltzaile izen hau dagoeneko badago, beste bat aukeratu mesedez",
'new user registration on your blog' => "erabiltzaile erregistro berria zure blogean",
'Manage users' => "Erabiltzaileak kudeatu",
'New trackback on your post #%d "%s"' => "Trackback berria zure #%d \"%s\" mezuan",
'Website' => "Webgunea",
'Excerpt' => "Estraktua",
'Login form' => "Sarbide-formularioa",
'You will have to accept cookies in order to log in.' => "Identifikatu ahal izateko cookie-ak onartu behar dituzu.",
'Password:' => "Pasahitza",
'Log in!' => "Sartu!",
'Go to Blogs' => "Blogetara joan",
'Lost your password ?' => "Zure pasahitza galdu duzu?",
'Lost password ?' => "Pasahitza galdu duzu?",
'A new password will be generated and sent to you by email.' => "Epostaz bidaliko zaizun pasahitz berri bat sortuko da.",
'Generate new password!' => "Pasahitz berria sortu!",
'Registration complete' => "Erregistroa burutu da",
'Registration Currently Disabled' => "Erregistroa Ezgaitua",
'User registration is currently not allowed.' => "Erabiltzaile erregistroa ez dago baimendua.",
'Home' => "Orrialde nagusia",
'Register form' => "Erregistro formularioa",
'(twice)' => "(bi aldiz)",
'Minimum %d characters, please.' => "%d karaktere gutxienez, mesedez.",
'Preferred language' => "Hobestutako lengoaia",
'Register!' => "Erregistratu!",
'Log into existing account...' => "Sortutako kontu batera sartu...",
'b2evo installer' => "b2evolution-en instalatzailea",
'Installer for version ' => "Bertsioaren instalatzailea",
'Current installation' => "Egungo instalazioa",
'Install menu' => "Instalaziorako menua",
'PHP info' => "PHP info",
'Go to Admin' => "Mezua publikatu",
'Online' => "Online",
'Manual' => "Gidaliburua",
'Support' => "Laguntza",
'Language / Locale' => "Lengoaia / Locale-a",
'Choose a default language/locale for your b2evo installation.' => "Lehenetsitako lengoaia/locale bat aukeratu b2evolution-en instalazioarentzako.",
'Check your database config settings below and update them if necessary...' => "Beheko datu-basearen konfigurazioa egiaztatu eta, beharrezkoa balitz, eguneratu...",
'The minimum requirement for this version of b2evolution is %s version %s but you are trying to use version %s!' => "b2evolution-en bertsio honentzat gutxieneko eskakizuna %s bertsioa %s da, baina %s bertsioa erabiltzen saiatzen ari zara!",
'It seems that the database config settings you entered don\'t work. Please check them carefully and try again...' => "Badirudi datu-basearen konfigurazio baloreak ez dutela funtzionatzen. Hauek arretaz egiaztatu eta berriro saiatu, mesedez...",
'Config file update' => "Konfigurazio artxiboaren eguneraketa",
'We cannot automatically update your config file [%s]!' => "Ezin da [%s] konfigurazio artxiboa automatikoki eguneratu",
'There are two ways to deal with this:' => "Hau konpontzeko bi aukera daude:",
'You can allow the installer to update the config file by changing its permissions:' => "Konfigurazio artxiboaren baimenak aldatu ditzakezu (chmod) instalatzaileak eguneratu ditzan:",
'<code>chmod 666 %s</code>. If needed, see the <a %s>online manual about permissions</a>.' => "<code>chmod 666 %s</code>. Behar izanez gero, <a %s>baimenen inguruko gidaliburua</a> bisitatu.",
'Come back to this page and refresh/reload.' => "Orrialde honetara itzuli eta eguneratu/berriz kargatu.",
'Alternatively, you can update the config file manually:' => "Konfigurazio artxiboa eskuz igo dezakezu ere:",
'Open the _config.php file locally with a text editor.' => "_config.php artxiboa testu-editore batekin ireki.",
'Delete all contents!' => "Eduki guztia ezabatu!",
'Copy the contents from the box below.' => "Beheko koadroaren edukia kopiatu.",
'Paste them into your local text editor. <strong>ATTENTION: make sure there is ABSOLUTELY NO WHITESPACE after the final <code>?></code> in the file.</strong> Any space, tab, newline or blank line at the end of the conf file may prevent cookies from being set when you try to log in later.' => "Testu-editorean itsatsi. <strong>ADI: Ziurta ezazu artxiboan EZ DAGOELA ZURI UTZITAKO TARTERIK azken <code>?></code>-ren ondoren.</strong> Konfigurazio artxiboaren bukaeran sartutako edozein tarte, tabulazio, lerro berri edota zuri utzitako lerroak cookie-n finkapena eragotzi dezake.",
'Save the new _config.php file locally.' => "_config.php berria gorde. ",
'Upload the file to your server, into the /_conf folder.' => "Zure zerbitzarira igo, /_conf direktoriora",
'<a %s>Call the installer from scratch</a>.' => "<a %s>Instalazioa zerotik burutu</a>",
'This is how your _config.php should look like:' => "Zure _config.php horrela geratu beharko litzateke:",
'Your configuration file [%s] has been successfully updated.' => "[%s] konfigurazio artxiboa egokiro eguneratu da.",
'Base configuration' => "Oinarrizko konfigurazioa",
'Your base config file has not been edited yet. You can do this by filling in the form below.' => "Oinarrizko konfigurazio artxiboa ez da oraindik editatu. Ondorengo formularioa betez egin dezakezu.",
'This is the minimum info we need to set up b2evolution on this server:' => "Hau zerbitzarian b2evolution konfiguratzeko beharrezkoa den gutxieneko informazioa da:",
'Database you want to install into' => "Datu-basea non instalatu nahi duzun",
'mySQL Username' => "MySQL Erabiltzailea",
'Your username to access the database' => "Datu-basera sartzeko erabiltzaile izena",
'mySQL Password' => "MySQL Pasahitza",
'Your password to access the database' => "Datu-basera sartzeko pasahitza",
'mySQL Database' => "MySQL Datu-basea",
'Name of the database you want to use' => "Erabili nahi den datu-basearen izena",
'mySQL Host' => "MySQL Host-a",
'You probably won\'t have to change this' => "Litekeena da hau aldatu beharrik ez izatea",
'Additional settings' => "Aukera osagarriak",
'Base URL' => "Oinarrizko URL-a",
'This is where b2evo and your blogs reside by default. CHECK THIS CAREFULLY or not much will work. If you want to test b2evolution on your local machine, in order for login cookies to work, you MUST use http://<strong>localhost</strong>/path... Do NOT use your machine\'s name!' => "Besterik adierazi ezean b2evolution eta zure blogak hemen egongo dira. EGIAZTA EZAZU HAU ARRETAZ edo ez du ezerk funtzionatuko. b2evolution zure ordenagailu lokalan probatu nahi baduzu, cookie-en funtzionamendua bermatzeko, \"http://<strong>localhost</strong>/erruta\" ERABILI behar duzu... EZ erabili zure ordanagailuaren izena!",
'Your email' => "Zure eposta",
'Will be used in severe error messages so that users can contact you. You will also receive notifications for new user registrations.' => "Errore mezuetan erabiliko da, erabiltzaileak zurekin harremanetan jartzeko aukera izan dezaten. Erabiltzaile berrien erregistroen jakinarazpenak ere jasoko dituzu. ",
'Update config file' => "Konfigurazio artxiboa eguneratu",
'How do you want to install b2evolution?' => "Nola instalatu nahi duzu b2evolution?",
'The installation can be done in different ways. Choose one:' => "Instalazioa burutzeko modu ezberdinak daude. Bat aukeratu:",
'<strong>New Install</strong>: Install b2evolution database tables with sample data.' => "<strong>Instalazio berria</strong>: b2evolution-en datu-basearen taulak adibiderako datuekin instalatu.",
'<strong>Upgrade from a previous version of b2evolution</strong>: Upgrade your b2evolution database tables in order to make them compatible with the current version!' => "<strong>b2evolution-en aurreko bertsio batetik eguneratu</strong>: b2evolution-en datu-baseak eguneratu egungo bertsioarekin bateragarriak egiteko!",
'<strong>Upgrade from Cafelog/b2 v 0.6.x</strong>: Install b2evolution database tables and copy your existing Cafelog/b2 data into them.' => "<strong>Cafelog/b2 v 0.6.x-etik eguneratu</strong>: b2evolutionen datu-basearen taulak instalatu eta bertan Cafelog/b2-ren datuak kopiatu.",
'<strong>Upgrade from Manywhere Miniblog</strong>: Install b2evolution database tables and copy your existing Miniblog data into them.' => "<strong>Manywhere Miniblog-etik eguneratu</strong>: b2evolutionen datu-basearen taulak instalatu eta bertan Miniblog-ren datuak kopiatu.",
'<strong>Upgrade from WordPress v 1.2</strong>: Install b2evolution database tables and copy your existing WordPress data into them.' => "<strong>WordPress v 1.2-tik eguneratu</strong>: b2evolutionen datu-basearen taulak instalatu eta bertan WordPress-en datuak kopiatu.",
'Delete b2evolution tables' => "b2evolution taulak ezabatu",
'If you have installed b2evolution tables before and wish to start anew, you must delete the b2evolution tables before you can start a new installation. <strong>WARNING: All your b2evolution tables and data will be lost!!!</strong> Your Cafelog/b2 or any other tables though, if you have some, will not be touched in any way.' => "Dagoeneko b2evolution-en taulak instalatu badituzu eta berriro hasi nahi baduzu, hauek instalazio berria hasi aurretik ezabatu beharko dituzu. <strong>KONTUZ: aurreko b2evolution-aren taula eta informazioa guztia galduko da!!!</strong> Zure Cafelog/b2 edo bestelako taulak, baldin eta badituzu, ez dira ikutuko.",
'<strong>Change your base configuration</strong> (see recap below): You only want to do this in rare occasions where you may have moved your b2evolution files or database to a different location...' => "<strong>Oinarrizko konfigurazioa aldatu</strong> (ikus laburpena behean): b2evolution-en datu-basea edo artxiboak beste helbide batera mugitu badituzu...",
'GO!' => "AURRERA!",
'Need to start anew?' => "Berriro hasi nahi duzu?",
'If you have installed b2evolution tables before and wish to start anew, you must delete the b2evolution tables before you can start a new installation. b2evolution can delete its own tables for you, but for obvious security reasons, this feature is disabled by default.' => "Dagoeneko b2evolution-en taulak aurretik instalatu badituzu eta berriro hasi nahi baduzu, instalazio berria hasi aurretik ezabatu behar dituzu. b2evolution-ek berak bere taulak ezabatu ditzake, baina bistako segurtasun arrazoiengatik, ezaugarri hau defektuz desaktibatuta dago.",
'Base config recap...' => "Oinarrizko konfigurazioaren laburpena...",
'If you don\'t see correct settings here, STOP before going any further, and <a %s>update your base configuration</a>.' => "Konfigurazioa zuzena ez bada, EZ JARRAITU instalazioarekin, eta <a %s>akatsak zuzendu</a>.",
'(Set, but not shown for security reasons)' => "(Finkatua, baina segurtasun arrazoiengatik ez da erakusten)",
'Admin email' => "Administratzailearen eposta",
'Installing b2evolution tables with sample data' => "b2evolutin taulak adibiderako datuekin instalatzen",
'Installation successful!' => "Instalazioa arrakastaz burutu da!",
'<p>Now you can <a %s>log in</a> with the login "admin" and password "%s".</p>\n\t<p>Note that password carefully! It is a <em>random</em> password that is given to you when you install b2evolution. If you lose it, you will have to delete the database tables and re-install anew.</p>' => "<p>Orain <a %s>identifikatu</a> zaitezke \"admin\" erabiltzaile izena eta \"%s\" pasahitzarekin.</p>\n\t<p>Pasahitza apunta ezazu! Pasahitz <em>aleatorioa</em> da, b2evolution instalatzerakoan sortzen dena. Galduz gero, datu-basearen taulak ezabatu eta berriro zerotik instalatu beharko duzu.</p>",
'Upgrading data in existing b2evolution database' => "Dagoen b2evolution-en datu-basea eguneratzen",
'Upgrade completed successfully!' => "Eguneraketa arrakastaz burutu da!",
'Now you can <a %s>log in</a> with your usual %s username and password.' => "Orain <a %s>identifikatu</a> zaitezke zure ohiko %s erabiltzaile izen eta pasahitzarekin.",
'Installing b2evolution tables and copying existing %s data' => "b2evolution taulak instalatzen eta dauden %s datuak kopiatzen",
'<p>Now you can <a %s>log in</a> with your usual Miniblog email login cropped at 20 chars. All passwords have been reset to "%s".</p>\n<p>Note that password carefully! It is a <em>random</em> password that is given to you when you install b2evolution. If you lose it, you will have to delete the database tables and re-install anew.</p>' => "<p>Orain <a %s>identifikatu</a> zaitezke zure Miniblog eposta helbidearekin, 20 karakteretan mugatua. Pasahitz guztiak \"%s\"-ra aldatu dira.</p>\n\t<p>Apunta ezazu pasahitza! b2evolution instalatzerakoan sortzen den pasahitz <em>aleatorio</em> bat da. Galduz gero, datu-basearen taulak ezabatu eta berriro zerotik instalatu beharko duzu.</p>",
'Deleting b2evolution tables from the datatase' => "Datu-basetik b2evolution taulak ezabatzen",
'For security reasons, the reset feature is disabled by default.' => "Segurtasun arrazoiengatik, besterik adierazi ezean reset ezaugarria desaktibatuta dago.",
'Reset done!' => "Baloreak arrakastaz leheneratu dira!",
'Back to menu' => "Menura itzuli",
'official website' => "webgune ofiziala",
'contact' => "harremanetarako",
'This blog holds all your posts upgraded from Cafelog. This blog is named \'%s\'. %s' => "Blog honek Cafelog-etik eguneratutako mezu guztiak biltzen ditu. Blogaren izena '%s' da. %s",
'This is a sample linkblog entry' => "Hau linkblog sarrera baten adibidea da",
'This is sample text describing the linkblog entry. In most cases however, you\'ll want to leave this blank, providing just a Title and an Url for your linkblog entries (favorite/related sites).' => "Hau linkblog sarrera bat azaltzen duen adibiderako testu bat da. Baliteke zuk hau zuri uztea nahiago izatea, soilik loturaren izenburua eta helbidea emanez.",
'This is the long description for the blog named \'%s\'. %s' => "Hau '%s' blogaren azalpen luzea da. %s",
'This blog (blog #1) is actually a very special blog! It automatically aggregates all posts from all other blogs. This allows you to easily track everything that is posted on this system. You can hide this blog from the public by unchecking \'Include in public blog list\' in the blogs admin.' => "Blog hau (#1 bloga) oso blog berezia da! Automatikoki beste blogen mezu guztiak biltzen ditu. Honek sistema honetan publikatzen den guztiaren jarraipena egiteko aukera ematen dizu. Blog hau bisitarientzako ezkutatu daiteke, blogen kudeaketa gunean 'Blog publikoen zerrendan sartu' aukerari marka kenduz.",
'%s Title' => "%s Izenburua",
'Tagline for %s' => "%s -rentzako sinadura",
'Short description for %s' => "%s -ren azalpen laburra",
'Notes for %s' => "%s -ren inguruko oharrak",
'Keywords for %s' => "%s -rentzako gako-hitzak",
'The main purpose for this blog is to be included as a side item to other blogs where it will display your favorite/related links.' => "Blog honen asmo nagusia beste blogen barnean elementu lateral gisa erakustea da, non zure gogoko/erlazionatutako estekak erakutsiko baitituen.",
'Clean Permalinks!' => "Permalink garbiak!",
'b2evolution uses old-style permalinks and feedback links by default. This is to ensure maximum compatibility with various webserver configurations.\n\nNethertheless, once you feel comfortable with b2evolution, you should try activating clean permalinks in the Settings screen... (check \'Use extra-path info\')' => "b2evolution-ek formatu zaharra erabiltzen du permalink eta erantzunen loturetan, web zerbitzari ezberdinen konfigurazioekin bateragarritasun maximoa lorzeko asmoarekin. \n\nDena den, zure zerbitzariak onartzen badu, 'Aukerak' pantailan permalink garbiak aktibatu beharko zenituzke... ('Extra-path informazioa erabili' markatu)",
'Apache optimization...' => "Apache-ren optimizazioa...",
'In the <code>/blogs</code> folder as well as in <code>/blogs/admin</code> there are two files called [<code>sample.htaccess</code>]. You should try renaming those to [<code>.htaccess</code>].\n\nThis will optimize the way b2evolution is handled by the webserver (if you are using Apache). These files are not active by default because a few hosts would display an error right away when you try to use them. If this happens to you when you rename the files, just remove them and you\'ll be fine.' => "<code>/blogs</code> eta <code>/blogs/admin</code> direktoriotan [<code>sample.htaccess</code>] izena duten bi artxibo daude. Izenok [<code>.htaccess</code>]-ra aldatzen saiatu beharko zinateke.\n\nHonela, zerbitzariak b2evolution maneiatzen duen modua optimizatuko zenuke (Apache erabiltzen badu). Besterik adierazi ezean artxibo hauek desaktibatuta daude, erabiltzen saiatzerakoan zenbait zerbitzaritan erroreak eman ditzaketelako. Izenak aldatzerakoan hau gertatzen bazaizu, ezaba itzazu.",
'About evoSkins...' => "evoSkin-en inguruan...",
'By default, b2evolution blogs are displayed using a default skin.\n\nReaders can choose a new skin by using the skin switcher integrated in most skins.\n\nYou can change the default skin used for any blog by editing the blog parameters in the admin interface. You can also force the use of the default skin for everyone.\n\nOtherwise, you can restrict available skins by deleting some of them from the /blogs/skins folder. You can also create new skins by duplicating, renaming and customizing any existing skin folder.\n\nTo start customizing a skin, open its \'<code>_main.php</code>\' file in an editor and read the comments in there. And, of course, read the manual on evoSkins!' => "Besterik adierazi ezean, b2evolution blogek aurretik zehaztutako skin-a erabiltzen dute. \n\nBisitariek skin berria aukeratu dezakete (administratzaileak baimentzen badu) skin gehienek integratzen duten skin hautagailuaren bitartez. \n\nEdozein blogentzat aurretik zehaztutako skin-a alda daiteke blog honen parametroen ezaugarriak editatuz, back-office-an. Mundu guztiarentzako skin baten bistaratzea ere behartu daiteke.\n\nBestetik, skin erabilgarriak mugatu daitezke /blogs/skins direktoriotik hauetariko batzuk ezabatuz, hala nola zure berezko skin-ak sortu edozein skin direktorio bikoiztuz, moldatuz edota bere izena aldatuz.\n\nSkin bat pertsonalizatzen hasteko, bere '<code>_main.php</code>' artxiboa editore batetan ireki eta kodearen azalpenak irakurri. Eta, noski, evoSkin-i buruzko gidaliburua irakurri!",
'Skins, Stubs and Templates...' => "Skin-ak, stub-ak eta ereduak...",
'By default, all pre-installed blogs are displayed using a skin. (More on skins in another post.)\n\nThat means, blogs are accessed through \'<code>index.php</code>\', which loads default parameters from the database and then passes on the display job to a skin.\n\nAlternatively, if you don\'t want to use the default DB parameters and want to, say, force a skin, a category or a specific linkblog, you can create a stub file like the provided \'<code>a_stub.php</code>\' and call your blog through this stub instead of index.php .\n\nFinally, if you need to do some very specific customizations to your blog, you may use plain templates instead of skins. In this case, call your blog through a full template, like the provided \'<code>a_noskin.php</code>\'.\n\nYou will find more information in the stub/template files themselves. Open them in a text editor and read the comments in there.\n\nEither way, make sure you go to the blogs admin and set the correct access method for your blog. When using a stub or a template, you must also set its filename in the \'Stub name\' field. Otherwise, the permalinks will not function properly.' => "Blog guztiak skin bat erabiliz aurkezten dira. (Skin-en inguruko informazio gehiago beste mezu batetan).\n\nHonek blogetarako sarrera '<code>index.php</code>' artxiboaren bitartez egiten dela esan nahi du, zeinak datu-basean aurretik zehaztutako parametroak kargatu eta ondorengo bistaratze lan guztia skin-ari pasatzen baition.\n\nBestalde, datu-basean lehenetsitako baloreak erabili nahi ez badituzu eta, adibidez, skin, atal edota linkblog zehatz bat behartu nahi baduzu, emandako '<code>a_stub.php</code>' bezalako stub artxibo bat sortu eta bertatik zure blogari deitu diezaiokezu, index.php erabili ordez.\n\nPertsonalizazio oso espezifikoak egin behar badituzu, '<code>a_noskin.php</code> bezalako formaturik gabeko ereduak erabili ditzakezu ere.\n\nStub edota ereduaren artxiboaren barruan informazio gehiago aurkituko duzu. Testu-editore batetan ireki eta bere barruko oharrak irakurri.\n\nDena den, ziurta ezazu blogerako sarbide-metodo egokia zehazten duzula. Stub edota eredu bat erabiltzen baduzu bere artxibo izena 'Stub izena' atalan zehaztu behar duzu ere. Hori egin ezean, permalink-ek ez dute egokiro funtzionatuko. ",
'Multiple Blogs, new blogs, old blogs...' => "Blog anizkunak, blog berriak, blog zaharrak...",
'By default, b2evolution comes with 4 blogs, named \'Blog All\', \'Blog A\', \'Blog B\' and \'Linkblog\'.\n\nSome of these blogs have a special role. Read about it on the corresponding page.\n\nYou can create additional blogs or delete unwanted blogs from the blogs admin.' => "b2evolution-ek 4 blog darkartza: 'Blog All', 'Blog A', 'Blog B' eta 'Linkblog'.\n\nHauetariko batzuk funtzio bereziak dituzte.Honi buruz, dagokion orrialdean irakurri.\n\nBlogen kudeaketa gunean (Backoffice) blog berriak sortu edota nahi ez dituzunak ezaba ditzakezu. ",
'This is a multipage post' => "Hau mezu orrianitz bat da",
'This is page 1 of a multipage post.\n\nYou can see the other pages by cliking on the links below the text.\n\n<!--nextpage-->\n\nThis is page 2.\n\n<!--nextpage-->\n\nThis is page 3.\n\n<!--nextpage-->\n\nThis is page 4.\n\nIt is the last page.' => "Hau mezu orrianitz baten 1 orrialdea da.\n\nGainontzeko orrialdeak ikus ditzakezu testu honen azpiko esteketan klik eginez.\n\n<!--nextpage-->\n\nHau 2 orrialdea da.\n\n<!--nextpage-->\n\nHau 3 orrialdea da.\n\n<!--nextpage-->\n\nHau 4 orrialdea da.\n\nHau azken orrialdea da.",
'Extended post with no teaser' => "Aurkezpenik gabeko mezu hedatua",
'This is an extended post with no teaser. This means that you won\'t see this teaser any more when you click the "more" link.\n\n<!--more--><!--noteaser-->\n\nThis is the extended text. You only see it when you have clicked the "more" link.' => "Hau aurkezpenik gabeko mezu hedatua da. Honek \"gehiago\" klikatzerakoan esaldi hau ez duzula ikusiko esan nahi du.\n \n<!--more--><!--noteaser-->\n\nHau testu hedatua da. \"gehiago\" estekan klik egiterakoan baino ez da ikusten.",
'Extended post' => "Mezu hedatua",
'This is an extended post. This means you only see this small teaser by default and you must click on the link below to see more.\n\n<!--more-->\n\nThis is the extended text. You only see it when you have clicked the "more" link.' => "Hau mezu hedatu bat da. Honek printzipioz aurkezpen txikia hau baino ez duzula ikusiko esan nahi du eta, gehiago ikusteko, beheko estekan klik egin behar duzula.\n \n<!--more-->\n\nHau hedatutako testua da. \"gehiago\" estekan klik egiterakoan baino ez da ikusten.",
'Important information' => "Informazio garrantzitsua",
'Blog B contains a few posts in the \'b2evolution Tips\' category.\n\nAll these entries are designed to help you so, as EdB would say: "<em>read them all before you start hacking away!</em>" ;)\n\nIf you wish, you can delete these posts one by one after you have read them. You could also change their status to \'deprecated\' in order to visually keep track of what you have already read.' => "B blogak zenbait mezu 'b2evolution Tips' (b2evolution aholkuak) atalan ditu.\n\nNahi baduzu, irakurri ondoren mezu hauek ezabatu ditzakezu. Beraien egoera 'Gaitzetsia'-ra aldatu dezakezu ere, irakurri duzunaren gaineko kontrola mantentzearren.",
'First Post' => "Lehen mezua",
'<p>This is the first post.</p>\n\n<p>It appears on both blog A and blog B.</p>' => "<p>Hau lehen mezua da.</p>\n\n<p>A nahiz B blogetan erakusten da.</p>",
'Second post' => "Bigarren mezua",
'<p>This is the second post.</p>\n\n<p>It appears on blog A only but in multiple categories.</p>' => "<p>Hau bigarren mezua da.</p>\n\n<p>A blogean baino ez da ageri, baina zenbait ataletan.</p>",
'Third post' => "Hirugarren mezua",
'<p>This is the third post.</p>\n\n<p>It appears on blog B only and in a single category.</p>' => "<p>Hau irugarren mezua da.</p>\n\n<p>B blogean ageri da bakarrik, eta atal bakar batean.</p>",
'Hi, this is a comment.<br />To delete a comment, just log in, and view the posts\' comments, there you will have the option to edit or delete them.' => "Kaixo, hau erantzun bat da. <br /> Ezabatzeko, identifikatu, eta mezuaren erantzunetara jo. Hor editatzeko edota ezbatzeko aukera izango duzu.",
'The database schema is already up to date. There is nothing to do.' => "Datu-basearen eskema jadanik eguneratua zegoen. Ez da aldaketarik egin.",
'It appears that the following blog stub names are used more than once: [\'%s\']' => "Hurrengo stub artxibo izenak blog batek baino gehiagok erabiltzen ari dituztela dirudi: ['%s']",
'I can\'t upgrade until you make them unique. DB field: [%s]' => "Ezin da eguneratu bakarrak izan arte. Datu-basearen atala: [%s]",
'Checking DB schema version...' => "Datu-basearen eskemaren bertsioa egiaztatzen..",
'NOT FOUND! This is not a b2evolution database.' => "EZ DA AURKITU! Ez da b2evolution datu-base bat",
'This version is too old!' => "Bertsio hau zaharregia da!",
'This version is too recent! We cannot downgrade to it!' => "Bertsio hau berriegia da! Ezin da bertsio horretara itzuli.",
'This blog holds all your posts upgraded from Miniblog. This blog is named \'%s\'. %s' => "Blog honek Miniblog-etik eguneratutako mezu guztiak ditu. Blogaren izena '%s' da. %s",
'No desc available' => "No desc available",
'No description available' => "No desc available",
'Make URLs clickable' => "URL-ak klikagarriak bihurtu",
'Automatic <P> and <BR> tags' => "<P> eta <BR> etiketa automatikoak",
'BB formatting e-g [b]bold[/b]' => "BB formatua, adb.: [b]bold[/b]",
'GreyMatter style formatting' => "GreyMatter estiloko formatua",
'**bold** \\italics\\ //italics// __underline__ ##tt## %%codeblock%%' => "**hizki lodiak ** \\kurtsiba\\ //kurtsiba// __azpimarratua__ ##tt## %%codeblock%%",
'Convert text smilies to icons' => "Testu smilieak ikono bihurtu",
'Humane Web Text Generator 2.0 beta' => "Humane Web Text Generator 2.0 beta",
'Wacko style formatting' => "Wacko estiloko formatua",
'== h2 ==\n=== h3 ===\n==== h4 ====\n===== h5 =====\n====== h6 ======' => "== h2 ==\n=== h3 ===\n==== h4 ====\n===== h5 =====\n====== h6 ======",
'Wiki Links converter' => "Wiki Links bihurtzailea",
'WikiWord links ((link)) [[link ]]' => "WikiWord estekak ((link)) [[link ]]",
'Easy HTML tags inserting' => "HTML etiketen sartze erraztua",
'INSerted [Alt-I]' => "INSertado [Alt-I]",
'DELeted [Alt-D]' => "Ezabaketa [Alt-D]",
'STRong [Alt-S]' => "STRong-ek [Alt-S] hizki lodiak ordezkatzen ditu",
'EMphasis [Alt-E]' => "EMphasis-ek [Alt-E] kurtsiba ordezkatzen du",
'CODE [Alt-C]' => "CODE [Alt-C]",
'Paragraph [Alt-P]' => "Parrafoa [Alt-P]",
'Unordered List [Alt-U]' => "Ordenatu gabeko zerrenda [Alt-U]",
'List Item [Alt-L]' => "Elementua zerrendatu [Alt-L]",
'BLOCKQUOTE [Alt-B]' => "Aipatu [Alt-B]",
'IMaGe [Alt-G]' => "IMaGe [Alt-G] Irudia",
'A href [Alt-A]' => "A href [Alt-A] url helbidea",
'More [Alt-M]' => "Gehiago [Alt-M]",
'no teaser [Alt-T]' => "Aurkezpenik gabe [Alt-T]",
'next page [Alt-Q]' => "Hurrengo orrialdea [Alt + Q]",
'Close all tags' => "Etiketa guztiak itxi",
'ALTernate text' => "testu ALTernatiboa",
'One click smilies inserting' => "Smilien sartzea klik bakarrean",
'All' => "Guztiak",
'Trackback address for this post:' => "Hona bidali trackback erreferentziak:",
'No %s for this post yet...' => "Ez daude %s mezu honetan...",
'Your email address will <strong>not</strong> be displayed on this site.' => "Zure eposta <strong>ez</strong> da orrialdean erakutsiko.",
'Site/Url' => "Webgunea",
'Your URL will be displayed.' => "Zure URL-a erakutsiko da.",
'Line breaks become <br />' => "Lerro saltoak <br /> bihurtzen dira",
'Remember me' => "Nire datuak gogoratu",
'(Set cookies for name, email & url)' => "(Izena, eposta & url-arentzako cookiak finkatu)",
'In response to:' => "Honi erantzunez:",
'Linkblog' => "Linkblog-a",
'more' => "gehiago",
'AOL I.M.' => "AOL I.M.",
'MSN I.M.' => "MSN I.M.",
'Yahoo I.M.' => "Yahoo I.M.",
'Select blog:' => "Bloga aukeratu:",
'Select skin:' => "Skin-a aukeratu:",
'words' => "hitz",
'Read more...' => "Gehiago irakurri...",
'Choose a skin' => "Skin bat aukeratu",
'Previous' => "Aurrekoak",
'Next' => "Hurrengoak",
'Choose skin' => "Skin-a aukeratu",
'Browse all posts by this author' => "Egile honen mezu guztiak ikusi",
'archives' => "artxibo",
'The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is:' => "Hona bidali trackback erreferentziak:",
'Comment by' => "Bidaltzailea",
'Trackback from' => "Trackback-a hemendik",
'Pingback from' => "Pingback-a hemendik",
'Edit This' => "Editatu",
'E-mail' => "E-posta",
'Your Comment' => "Zure erantzuna",
'Say It!' => "Esan ezazu!",
'Filed under:' => "Hemen artxibatu da:",
'Other' => "Besterik",
'Meta' => "Meta",
'Syndicate this site using RSS' => "RSS erabiliz sindikatu",
'<abbr title="Really Simple Syndication">RSS</abbr> 2.0' => "<abbr title=\"Really Simple Syndication\">RSS</abbr> 2.0",
'The latest comments to all posts in RSS' => "Mezu guztien azken erantzunak RSS-n",
'Comments <abbr title="Really Simple Syndication">RSS</abbr> 2.0' => "<abbr title=\"Really Simple Syndication\">RSS</abbr> 2.0 Erantzunak",
'This page validates as XHTML 1.0 Transitional' => "Orrialde honek balizko XHTML 1.0 Transitional ",
'Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>' => "Balizko <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>-a",
'Powered by b2evolution; multilingual multiuser multi-blog engine.' => "Orrialde honek b2evolution erabiltzen du.",
'This skin features a CSS file originally designed for WordPress (See design credits in style.css).' => "Skin honek jatorriz WordPress-entzat diseinatutako CSS bat erabiltzen du (ikus diseinuaren kredituak style.css-en).",
'Original design credits for this skin:' => "Skin honen jatorrizko diseinuaren kredituak:",
'In order to ensure maximum compatibility with WP CSS files, most b2evolution features that do not exist in WP are hidden from this generic wpc_* skin.' => "WP-ren CSS fitxategiekin bateragarritasun maximoa ziurtatzeko, WP-n ez dauden b2evolution-en ezaugarri gehienak ezkutatu dira wpc_* skin honetan.",
'[...] Read more!' => "[...] Gehiago irakurri!",
'New pingback on your post #%d "%s"' => "Pingback berria zure #%d \"%s\" mezuan",
);
?>
|