aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/log
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-11-06 15:47:49 +0100
committerTristan Darricau <github@nicofuma.fr>2016-11-06 15:47:49 +0100
commit50f5efba9cee542d6660b403c52c8a82dc9bbedf (patch)
tree390a5cfa4f6ff77c967e4f60f0c227eadc8db2e8 /phpBB/phpbb/log
parentcd348b200a6d3711eee6b8f028d9c7caef268e5f (diff)
parent9be9062df358aa6744b5764ac841a6b685d3ad6a (diff)
downloadforums-50f5efba9cee542d6660b403c52c8a82dc9bbedf.tar
forums-50f5efba9cee542d6660b403c52c8a82dc9bbedf.tar.gz
forums-50f5efba9cee542d6660b403c52c8a82dc9bbedf.tar.bz2
forums-50f5efba9cee542d6660b403c52c8a82dc9bbedf.tar.xz
forums-50f5efba9cee542d6660b403c52c8a82dc9bbedf.zip
Merge branch '3.1.x' into 3.2.x
* 3.1.x: [ticket/14795] Use maximum topic views instead of adding up views in merge
Diffstat (limited to 'phpBB/phpbb/log')
0 files changed, 0 insertions, 0 deletions
'#n110'>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
# DrakConf Bahasa Indonesia
# Copyright (C) 2001,2003 Free Software Foundation, Inc.
# Budi Rachmanto <rac@linux-mandrake.com>, 2001-2002
# Yuzz <yuzz@emasonline.com>, 2002
# Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: drakconf 0.90\n"
"POT-Creation-Date: 2004-01-12 10:26+0100\n"
"PO-Revision-Date: 2003-08-22 19:49+0800\n"
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Report-Msgid-Bugs-To: \n"
"X-Generator: KBabel 1.0\n"

#: ../contributors.pl_.c:11
msgid "Per Oyvind Karlsen"
msgstr ""

#: ../contributors.pl_.c:11
msgid ""
"massive packages rebuilding and cleaning, Norwegian Bokmaal (nb) "
"translation, i18n work, games"
msgstr ""

#: ../contributors.pl_.c:12
msgid "Guillaume Rousse"
msgstr ""

#: ../contributors.pl_.c:12
msgid "cowsay introduction"
msgstr ""

#: ../contributors.pl_.c:13
msgid "Olivier Thauvin"
msgstr ""

#: ../contributors.pl_.c:13
msgid "figlet introduction, Distriblint (checking rpm in the distro)"
msgstr ""

#: ../contributors.pl_.c:14
msgid "Marcel Pol"
msgstr ""

#: ../contributors.pl_.c:14
msgid "mono introduction, updated abiword"
msgstr ""

#: ../contributors.pl_.c:15
msgid "Ben Reser"
msgstr ""

#: ../contributors.pl_.c:15
msgid ""
"updated nc with debian patches, fixed some perl packages, dnotify startup "
"script, urpmc, hddtemp, wipe, etc..."
msgstr ""

#: ../contributors.pl_.c:16
msgid ""
"\"deep and broad\" kernel work (many new patches before integration in "
"official kernel)"
msgstr ""

#: ../contributors.pl_.c:16
msgid "Thomas Backlund"
msgstr ""

#: ../contributors.pl_.c:17
msgid "Svetoslav Slavtchev"
msgstr ""

#: ../contributors.pl_.c:17
msgid "kernel work (audio- and video-related patches)"
msgstr ""

#: ../contributors.pl_.c:18
msgid "Danny Tholen"
msgstr ""

#: ../contributors.pl_.c:18
msgid "multimedia kernel"
msgstr ""

#: ../contributors.pl_.c:19
msgid "Buchan Milne"
msgstr ""

#: ../contributors.pl_.c:19
msgid ""
"Samba 3.0 (prerelease) that co-exists with Samba 2.2.x, Samba-2.2.x, GIS "
"software (grass, mapserver), cursor_themes collection, misc server-side "
"contributions"
msgstr ""

#: ../contributors.pl_.c:20
msgid "Goetz Waschk"
msgstr ""

#: ../contributors.pl_.c:20
msgid ""
"many multimedia packages (xine, mplayer, vlc, vcdimager), gnome-python, rox "
"desktop"
msgstr ""

#: ../contributors.pl_.c:21
msgid "Austin Acton"
msgstr ""

#: ../contributors.pl_.c:21
msgid ""
"audio/video/MIDI apps, scientific apps, audio/video production howtos, "
"bluetooth, pyqt & related"
msgstr ""

#: ../contributors.pl_.c:22
msgid "ATI/gatos/DRM stuff"
msgstr ""

#: ../contributors.pl_.c:22
#, fuzzy
msgid "Spencer Anderson"
msgstr "Versi Kernel:"

#: ../contributors.pl_.c:23
msgid "Andrey Borzenkov"
msgstr ""

#: ../contributors.pl_.c:23
msgid "supermount-ng and other kernel work"
msgstr ""

#: ../contributors.pl_.c:24
msgid "Oden Eriksson"
msgstr ""

#: ../contributors.pl_.c:24
msgid "most web-based packages and many security-related packages"
msgstr ""

#: ../contributors.pl_.c:25
msgid "Warly"
msgstr ""

#: ../contributors.pl_.c:25
msgid "bootsplash, databases, drakwizard, various other stuffs."
msgstr ""

#: ../control-center_.c:78
msgid "Mandrake Control Center"
msgstr "Pusat Kawalan Mandrake"

#: ../control-center_.c:83
msgid "Loading... Please wait"
msgstr "Muatan...Sila Tunggu"

#: ../control-center_.c:104
msgid "Auto Install floppy"
msgstr ""

#: ../control-center_.c:105
msgid "Autologin"
msgstr ""

#: ../control-center_.c:106
msgid "Backups"
msgstr ""

#: ../control-center_.c:107
msgid "Bootstrapping"
msgstr ""

#: ../control-center_.c:108
#, fuzzy
msgid "Boot theme"
msgstr "Lagi tema"

#: ../control-center_.c:109
msgid "Boot floppy"
msgstr ""

#: ../control-center_.c:110
msgid "Internet connection sharing"
msgstr ""

#: ../control-center_.c:111
msgid "New connection"
msgstr ""

#: ../control-center_.c:112
msgid "Manage connections"
msgstr ""

#: ../control-center_.c:113
msgid "Monitor connections"
msgstr ""

#: ../control-center_.c:114
msgid "Internet access"
msgstr ""

#: ../control-center_.c:116
msgid "Console"
msgstr ""

#: ../control-center_.c:118
#, fuzzy
msgid "Date and time"
msgstr "dan"

#: ../control-center_.c:119
#, fuzzy
msgid "Display manager"
msgstr "/Paparan _Log"

#: ../control-center_.c:120
msgid "Firewall"
msgstr ""

#: ../control-center_.c:121
msgid "Fonts"
msgstr ""

#: ../control-center_.c:122
msgid "Graphical server"
msgstr ""

#: ../control-center_.c:123
msgid "Partitions"
msgstr ""

#: ../control-center_.c:124 ../control-center_.c:161
msgid "Hardware"
msgstr "Perkakasan"

#: ../control-center_.c:125
msgid "Install"
msgstr ""

#: ../control-center_.c:126
msgid "Keyboard"
msgstr ""

#: ../control-center_.c:127
msgid "Logs"
msgstr "Log"

#: ../control-center_.c:128
msgid "Updates"
msgstr ""

#: ../control-center_.c:129
msgid "Menus"
msgstr ""

#: ../control-center_.c:130
msgid "Monitor"
msgstr ""

#: ../control-center_.c:131
msgid "Mouse"
msgstr ""

#: ../control-center_.c:132
#, fuzzy
msgid "NFS mount points"
msgstr "Titik Mount"

#: ../control-center_.c:133
msgid "Local disk sharing"
msgstr ""

#: ../control-center_.c:134
msgid "Printers"
msgstr ""

#: ../control-center_.c:135
msgid "Scheduled tasks"
msgstr ""

#: ../control-center_.c:136
msgid "Proxy"
msgstr ""

#: ../control-center_.c:137
msgid "Remove a connection"
msgstr ""

#: ../control-center_.c:138
msgid "Remove"
msgstr ""

#: ../control-center_.c:139
#, fuzzy
msgid "Screen resolution"
msgstr "Ubah"

#: ../control-center_.c:140
#, fuzzy
msgid "Samba mount points"
msgstr "Titik Mount Samba"

#: ../control-center_.c:141
msgid "Scanners"
msgstr ""

#: ../control-center_.c:142
msgid "Level and checks"
msgstr ""

#: ../control-center_.c:143
msgid "Permissions"
msgstr ""

#: ../control-center_.c:144
msgid "Services"
msgstr ""

#: ../control-center_.c:145
msgid "Media Manager"
msgstr ""

#: ../control-center_.c:146
msgid "TV card"
msgstr ""

#: ../control-center_.c:147
msgid "Users and groups"
msgstr ""

#: ../control-center_.c:148
#, fuzzy
msgid "WebDAV mount points"
msgstr "Titik Mount WebDAV"

#: ../control-center_.c:153
msgid "Boot"
msgstr "Boot"

#: ../control-center_.c:174
msgid "Mount Points"
msgstr "Titik Mount"

#: ../control-center_.c:189
msgid "CD-ROM"
msgstr "CD-ROM"

#: ../control-center_.c:190
msgid "DVD"
msgstr "DVD"

#: ../control-center_.c:190
#, fuzzy
msgid "DVD-ROM"
msgstr "CD-ROM"

#: ../control-center_.c:191
msgid "CD Burner"
msgstr "CD Burner"

#: ../control-center_.c:191
#, fuzzy
msgid "CD/DVD"
msgstr "DVD"

#: ../control-center_.c:192
msgid "Floppy"
msgstr "Pemacu"

#: ../control-center_.c:192
#, fuzzy
msgid "Floppy drive"
msgstr "Pemacu"

#: ../control-center_.c:193
msgid "ZIP drive"
msgstr ""

#: ../control-center_.c:193
msgid "Zip"
msgstr "Zip"

#: ../control-center_.c:202
msgid "Network & Internet"
msgstr "Rangkaian & Internet"

#: ../control-center_.c:213
msgid "Security"
msgstr "Keselamatan"

#: ../control-center_.c:220
msgid "System"
msgstr "Sistem"

#: ../control-center_.c:236
msgid "Software Management"
msgstr "Pengurusan Perisian"

#: ../control-center_.c:245
msgid "Server wizards"
msgstr ""

#: ../control-center_.c:252
#, fuzzy
msgid "Configure DHCP"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:253
msgid "Add a DNS client"
msgstr ""

#: ../control-center_.c:254
#, fuzzy
msgid "Configure DNS"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:255
#, fuzzy
msgid "Configure FTP"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:256
#, fuzzy
msgid "Configure news"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:257
#, fuzzy
msgid "Configure mail"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:258
#, fuzzy
msgid "Configure proxy"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:259
#, fuzzy
msgid "Configure Samba"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:260
#, fuzzy
msgid "Configure time"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:261
#, fuzzy
msgid "Configure web"
msgstr "Konfigurasikan ..."

#: ../control-center_.c:266
msgid "Online Administration"
msgstr ""

#: ../control-center_.c:273
msgid "Local administration"
msgstr ""

#: ../control-center_.c:274
msgid "Remote administration"
msgstr ""

#: ../control-center_.c:302
msgid "/Display _Logs"
msgstr "/Paparan _Log"

#. -PO Translators, please keep all "/" charaters !!!
#: ../control-center_.c:302 ../control-center_.c:303 ../control-center_.c:304
#: ../control-center_.c:323
msgid "/_Options"
msgstr "/_Pilihan"

#: ../control-center_.c:303
msgid "/_Embedded Mode"
msgstr "/_Mod Cangkok"

#: ../control-center_.c:304
#, fuzzy
msgid "/Expert mode in _wizards"
msgstr "dalam"

#: ../control-center_.c:308
#, fuzzy
msgid "/_Profiles"
msgstr "/_Fail"

#: ../control-center_.c:309
msgid "/_Delete"
msgstr ""

#: ../control-center_.c:310
msgid "/_New"
msgstr ""

#: ../control-center_.c:321 ../control-center_.c:322
msgid "/_File"
msgstr "/_Fail"

#: ../control-center_.c:322
msgid "/_Quit"
msgstr "/_Keluar"

#: ../control-center_.c:322
msgid "<control>Q"
msgstr "<control>Q"

#: ../control-center_.c:322
#, fuzzy
msgid "Quit"
msgstr "/_Keluar"

#: ../control-center_.c:338 ../control-center_.c:341 ../control-center_.c:354
msgid "/_Themes"
msgstr "/_Tema"

#: ../control-center_.c:344
msgid ""
"This action will restart the control center.\n"
"Any change not applied will be lost."
msgstr ""
"Aksi ini akan mula semula kawalan pusat.\n"
"Sebarang perubahan yang tidak diaplikasikan akan hilang."

#: ../control-center_.c:354
msgid "/_More themes"
msgstr "/_Lagi tema"

#: ../control-center_.c:358
msgid "New profile..."
msgstr ""

#: ../control-center_.c:361
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one):"
msgstr ""

#: ../control-center_.c:365 ../control-center_.c:398 ../control-center_.c:524
msgid "Cancel"
msgstr ""

#: ../control-center_.c:367 ../control-center_.c:399
msgid "Ok"
msgstr ""

#: ../control-center_.c:373
msgid "Error"
msgstr ""

#: ../control-center_.c:373
#, c-format
msgid "The \"%s\" profile already exists!"
msgstr ""

#: ../control-center_.c:391
msgid "Delete profile"
msgstr ""

#: ../control-center_.c:393
msgid "Profile to delete:"
msgstr ""

#: ../control-center_.c:402 ../control-center_.c:462 ../control-center_.c:913
#, fuzzy
msgid "Warning"
msgstr "Amaran"

#: ../control-center_.c:402
msgid "You can not delete the current profile"
msgstr ""

#: ../control-center_.c:417 ../control-center_.c:418 ../control-center_.c:419
#: ../control-center_.c:420
msgid "/_Help"
msgstr "/_Bantuan"

#: ../control-center_.c:418
#, fuzzy
msgid "Help"
msgstr "/_Bantuan"

#: ../control-center_.c:419
msgid "/_Report Bug"
msgstr "/_Lapor Pepijat"

#: ../control-center_.c:420
msgid "/_About..."
msgstr "/_Keterangan"

#: ../control-center_.c:463
#, c-format
msgid ""
"We are about to switch from the \"%s\" profile to the \"%s\" profile.\n"
"\n"
"Are you sure you want to do the switch?"
msgstr ""

#: ../control-center_.c:513
msgid "Please wait..."
msgstr "Tunggu..."

#: ../control-center_.c:529
msgid "Previous"
msgstr ""

#: ../control-center_.c:544
#, fuzzy, c-format
msgid "Mandrake Control Center %s [on %s]"
msgstr "Pusat Kawalan Mandrake %s"

#: ../control-center_.c:555
msgid ""
"_banner font:\n"
"Sans 15"
msgstr ""

#: ../control-center_.c:557
msgid "Welcome to the Mandrake Control Center"
msgstr "Selamat Datang ke Pusat Kawalan Mandrake"

#: ../control-center_.c:700
msgid "The modifications done in the current module won't be saved."
msgstr "Modifikasi yang berlaku pada modul semasa tidak akan disimpan"

#: ../control-center_.c:776
#, c-format
msgid "cannot fork: %s"
msgstr "gagal mencabang: %s"

#: ../control-center_.c:786
#, fuzzy, c-format
msgid "cannot fork and exec \"%s\" since it is not executable"
msgstr "dan"

#: ../control-center_.c:904
#, fuzzy
msgid "This program has exited abnormally"
msgstr "Program ini terkeluar secara kuang"

#: ../control-center_.c:923
msgid "Close"
msgstr ""

#: ../control-center_.c:930
msgid "More themes"
msgstr "Lagi tema"

#: ../control-center_.c:932
msgid "Getting new themes"
msgstr "Mendapatkan tema baru"

#: ../control-center_.c:933
msgid "Additional themes"
msgstr "Tema tambahan"

#: ../control-center_.c:935
msgid "Get additional themes on www.damz.net"
msgstr "Dapatkan tema tambahan di www.damz.net"

#: ../control-center_.c:943
msgid "About - Mandrake Control Center"
msgstr "Keterangan - Pusat Kawalan Mandrake"

#: ../control-center_.c:953
msgid "Authors: "
msgstr "Penulis: "

#: ../control-center_.c:954
#, fuzzy
msgid "(original C version)"
msgstr "C"