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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the drum-machine package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: drum-machine\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-12-18 23:51+0330\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: data/io.github.revisto.drum-machine.desktop.in:2
#: data/io.github.revisto.drum-machine.metainfo.xml.in:6 src/application.py:67
#: src/window.ui:69
msgid "Drum Machine"
msgstr ""
#. Translators: Search terms to find this application. Do NOT translate or localise the semicolons! The list MUST also end with a semicolon!
#: data/io.github.revisto.drum-machine.desktop.in:9
msgid "drum;drums;sequencer;rhythm;music;pattern;beats;percussion;loop;groove;"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:7
msgid "Create and play drum beats"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:9
msgid ""
"Drum Machine is a modern and intuitive application for creating, playing, "
"and managing drum patterns. Perfect for musicians, producers, and anyone "
"interested in rhythm creation, this application provides a simple interface "
"for drum pattern programming. Have fun!"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:15
msgid "Features:"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:17
msgid "Intuitive grid-based pattern editor with infinite pages"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:18
msgid "Custom samples: Add your own drum sounds with MIDI note mapping"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:19
msgid "Adjustable BPM control"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:20
msgid "Volume control for overall mix"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:21
msgid "Save and load patterns"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:22
msgid "Multiple drum sounds including kick, snare, hi-hat, and more"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:23
msgid ""
"Audio and MIDI export with support for WAV, FLAC, Ogg, MP3, and MIDI formats"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:24
msgid "Metadata support for embedding artist name, song title, and cover art"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:25
msgid "Keyboard shortcuts for quick access to all functions"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:34
msgid "Drum Pattern Loaded in Light Mode"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:38
msgid "Drum Pattern Loaded in Dark Mode"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:49
msgid "Revisto"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:55
msgid "Drum Machine 2.2.0: Reset to Defaults!"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:57
msgid ""
"Reset to Defaults: New menu option to restore all samples, BPM, and volume "
"to factory settings"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:58
msgid ""
"Clear Button: Renamed from Reset, now only clears the pattern while keeping "
"custom samples"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:64
msgid "Drum Machine 2.1.0: Drag and Drop!"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:66
msgid ""
"Drag-and-Drop: Reorder drum parts by dragging them to new positions in the "
"drum parts column"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:67
msgid ""
"Slide Animations: New drum placeholder now features smooth slide-down "
"animations for better visual feedback"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:73
msgid "Drum Machine 2.0.0 is a major release with custom samples! 🎶"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:75
msgid ""
"Custom Samples: Add your own drum sounds and map them to specific MIDI notes "
"for export"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:76
msgid ""
"MIDI Export: Export your patterns as MIDI files with proper note mapping"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:77
msgid ""
"Pattern Management: Presets have been refactored to a more flexible pattern "
"system"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:78
msgid ""
"Bug Fixes: Sounds now stop immediately when pausing, disabled export when "
"pattern is empty"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:79
msgid "New Translations: Added Catalan, Greek, and Uzbek languages"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:80
msgid ""
"Translation Updates: Updated Slovenian, Basque, Ukrainian, Georgian, "
"Chinese, Persian, and many more"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:86
msgid "Drum Machine 1.5.0 introduces major audio export capabilities! 🎵"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:88
msgid ""
"Audio Export Feature: Export your drum patterns to WAV, FLAC, Ogg Vorbis, "
"and MP3 formats"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:89
msgid ""
"Metadata Support: Embed artist name, song title, and cover art in exported "
"files"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:90
msgid ""
"Repeat Pattern: Set how many times your beat repeats in the exported audio"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:91
msgid ""
"Bug Fix: Fixed issue where multiple drum sounds weren't playing "
"simultaneously"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:92
msgid ""
"Translation Updates: Updated Spanish, Russian, Georgian, Chinese, Hungarian, "
"Swedish, and more"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:98
msgid "Drum Machine 1.4.0 is here with some good updates! 🥁"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:100
msgid ""
"More pages for longer, more complex beats, because sometimes you need more "
"than 16 steps!"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:101
msgid ""
"Mobile-friendly improvements, now your drum machine works better on phones "
"(with showing half of the grid)"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:102
msgid ""
"Goes global! Now translated into 17 languages including Chinese, Russian, "
"Arabic, Hebrew, and many more"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:108
msgid ""
"This release of Drum Machine 1.3.1 brings significant UI and functionality "
"improvements:"
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:110
msgid ""
"Refactored headerbar and background styling for a flat, integrated visual "
"experience."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:111
msgid ""
"Enhanced accessibility with improved tooltips and descriptive labels for BPM "
"and volume controls."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:112
msgid ""
"Redesigned app icon and updated text styling for clearer user interface "
"elements."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:113
msgid ""
"Optimized layout breakpoints to improve responsiveness and reduce early "
"scrolling."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:114
msgid ""
"Fixed padding, border-radius, and vertical alignment issues across multiple "
"controls."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:115
msgid ""
"Updated file dialogs to use the Nautilus file chooser for a more modern "
"approach."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:116
msgid ""
"Improved keyboard navigation focus and updated tooltips, including dedicated "
"play and pause hints."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:117
msgid ""
"Transitioned to the Nautilus file chooser for a more contemporary interface."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:118
msgid "Now accessible on narrow mobile screens with adaptive UI elements."
msgstr ""
#: data/io.github.revisto.drum-machine.metainfo.xml.in:119
msgid "Refined app icon, and adjusted brand colors for better contrast."
msgstr ""
#: src/application.py:74
msgid ""
"Drum Machine is a modern and intuitive application for creating, playing, "
"and managing drum patterns."
msgstr ""
#: src/application.py:79
msgid "translator-credits"
msgstr ""
#: src/application.py:84
msgid "Special thanks"
msgstr ""
#: src/application.py:87
msgid "Sounds"
msgstr ""
#: src/application.py:88
#, python-brace-format
msgid "The drum samples used in this application are from {link}."
msgstr ""
#: src/config/export_formats.py:44
msgid "MP3 files"
msgstr ""
#: src/config/export_formats.py:45
msgid "MP3"
msgstr ""
#: src/config/export_formats.py:51
msgid "FLAC files"
msgstr ""
#: src/config/export_formats.py:52
msgid "FLAC (Lossless)"
msgstr ""
#: src/config/export_formats.py:58
msgid "Ogg files"
msgstr ""
#: src/config/export_formats.py:59
msgid "Ogg Vorbis"
msgstr ""
#: src/config/export_formats.py:65
msgid "WAV files"
msgstr ""
#: src/config/export_formats.py:66
msgid "WAV (Uncompressed)"
msgstr ""
#: src/dialogs/audio_export_dialog.py:119
msgid "Save Audio File"
msgstr ""
#: src/dialogs/audio_export_dialog.py:148
msgid "Part “{}” is Silent"
msgstr ""
#: src/dialogs/audio_export_dialog.py:150
msgid "Parts “{}” and “{}” are Silent"
msgstr ""
#: src/dialogs/audio_export_dialog.py:154
msgid "{} Parts are Silent"
msgstr ""
#: src/dialogs/audio_export_dialog.py:179
msgid "Image files"
msgstr ""
#: src/dialogs/audio_export_dialog.py:185
msgid "Select Cover Art"
msgstr ""
#: src/dialogs/audio_export_dialog.py:245
msgid "Audio exported to {}"
msgstr ""
#: src/dialogs/audio_export_dialog.py:251
msgid "Export failed"
msgstr ""
#: src/dialogs/audio_export_dialog.py:258
msgid "Export cancelled successfully"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:22
msgid "Acoustic Bass Drum"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:23
msgid "Bass Drum 1"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:24
msgid "Side Stick"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:25
msgid "Acoustic Snare"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:26
msgid "Hand Clap"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:27
msgid "Electric Snare"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:28
msgid "Low Floor Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:29
msgid "Closed Hi Hat"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:30
msgid "High Floor Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:31
msgid "Pedal Hi Hat"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:32
msgid "Low Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:33
msgid "Open Hi Hat"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:34
msgid "Low-Mid Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:35
msgid "Hi-Mid Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:36
msgid "Crash Cymbal 1"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:37
msgid "High Tom"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:38
msgid "Ride Cymbal 1"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:39
msgid "Chinese Cymbal"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:40
msgid "Ride Bell"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:41
msgid "Tambourine"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:42
msgid "Splash Cymbal"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:43
msgid "Cowbell"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:44
msgid "Crash Cymbal 2"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:45
msgid "Vibraslap"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:46
msgid "Ride Cymbal 2"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:47
msgid "Hi Bongo"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:48
msgid "Low Bongo"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:49
msgid "Mute Hi Conga"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:50
msgid "Open Hi Conga"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:51
msgid "Low Conga"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:52
msgid "High Timbale"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:53
msgid "Low Timbale"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:54
msgid "High Agogo"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:55
msgid "Low Agogo"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:56
msgid "Cabasa"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:57
msgid "Maracas"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:58
msgid "Short Whistle"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:59
msgid "Long Whistle"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:60
msgid "Short Guiro"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:61
msgid "Long Guiro"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:62
msgid "Claves"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:63
msgid "Hi Wood Block"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:64
msgid "Low Wood Block"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:65
msgid "Mute Cuica"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:66
msgid "Open Cuica"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:67
msgid "Mute Triangle"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:68
msgid "Open Triangle"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:78 src/ui/drum_grid_builder.py:342
msgid "MIDI Mapping"
msgstr ""
#. Group 1: Note Assignment
#: src/dialogs/midi_mapping_dialog.py:108
msgid "Note Assignment"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:111
msgid ""
"Assign a MIDI note for '{}'. This ensures correct playback when exporting."
msgstr ""
#. Action Row for Note
#: src/dialogs/midi_mapping_dialog.py:118
msgid "MIDI Note"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:119
msgid "The note number to trigger"
msgstr ""
#. Group 2: Standard Instruments
#: src/dialogs/midi_mapping_dialog.py:137
msgid "Standard Instruments"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:139
msgid "Select a General MIDI instrument to automatically set the note."
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:143
msgid "Instrument Preset"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:186
msgid "Save"
msgstr ""
#: src/dialogs/midi_mapping_dialog.py:229
msgid "Custom Note"
msgstr ""
#: src/handlers/drag_drop_handler.py:299
msgid "Sound replaced"
msgstr ""
#: src/handlers/drag_drop_handler.py:302
msgid "Failed to replace sound"
msgstr ""
#: src/handlers/drag_drop_handler.py:312
msgid "Not a supported audio file"
msgstr ""
#: src/handlers/drag_drop_handler.py:320
msgid "File not found"
msgstr ""
#: src/handlers/drag_drop_handler.py:325
msgid "Selected item is not a file"
msgstr ""
#: src/handlers/drag_drop_handler.py:332
msgid "File too large: {:.1f}MB (max 50MB)"
msgstr ""
#: src/handlers/drag_drop_handler.py:362
msgid "No valid audio files found"
msgstr ""
#: src/handlers/drag_drop_handler.py:402
msgid "Error processing file: {}"
msgstr ""
#: src/handlers/drag_drop_handler.py:433
msgid "Added {} drum part, {} files skipped"
msgstr ""
#: src/handlers/drag_drop_handler.py:439
msgid "Added {} drum parts, {} files skipped"
msgstr ""
#: src/handlers/drag_drop_handler.py:444
msgid "Added {} drum parts"
msgstr ""
#. Only show skipped message if no replacement happened
#: src/handlers/drag_drop_handler.py:447
msgid "{} files skipped"
msgstr ""
#: src/handlers/file_dialog_handler.py:52
msgid "Default Patterns"
msgstr ""
#: src/handlers/file_dialog_handler.py:92
#: src/handlers/file_dialog_handler.py:171
msgid "MIDI files"
msgstr ""
#: src/handlers/file_dialog_handler.py:98
msgid "Open MIDI File"
msgstr ""
#: src/handlers/file_dialog_handler.py:127
msgid "Failed to open file"
msgstr ""
#: src/handlers/file_dialog_handler.py:165
msgid "Failed to load pattern"
msgstr ""
#: src/handlers/file_dialog_handler.py:179
msgid "Save Sequence"
msgstr ""
#: src/handlers/file_dialog_handler.py:205
msgid "Add Audio Samples"
msgstr ""
#: src/handlers/file_dialog_handler.py:227
msgid "Audio files"
msgstr ""
#: src/utils/export_progress.py:76
msgid "Preparing…"
msgstr ""
#: src/utils/export_progress.py:77
msgid "Initializing…"
msgstr ""
#: src/utils/export_progress.py:79
msgid "Rendering audio…"
msgstr ""
#: src/utils/export_progress.py:80
msgid "Processing beats…"
msgstr ""
#: src/utils/export_progress.py:82
msgid "Saving file…"
msgstr ""
#: src/utils/export_progress.py:83
msgid "Writing to disk…"
msgstr ""
#: src/utils/export_progress.py:85
msgid "Exporting…"
msgstr ""
#: src/utils/export_progress.py:86
msgid "Processing…"
msgstr ""
#: src/utils/name_utils.py:36
msgid "Custom Sound"
msgstr ""
#: src/ui/drum_grid_builder.py:327
msgid "Preview"
msgstr ""
#: src/ui/drum_grid_builder.py:329
msgid "Replace…"
msgstr ""
#: src/ui/drum_grid_builder.py:332
msgid "Replace with new sound"
msgstr ""
#: src/ui/drum_grid_builder.py:335
msgid "Remove"
msgstr ""
#: src/ui/drum_grid_builder.py:338
msgid "At least one drum part must remain"
msgstr ""
#: src/ui/drum_grid_builder.py:345
msgid "Configure MIDI note for export"
msgstr ""
#: src/ui/drum_grid_builder.py:402
msgid "MIDI note updated"
msgstr ""
#: src/ui/drum_grid_builder.py:410
msgid "Select New Sound"
msgstr ""
#: src/ui/drum_grid_builder.py:424
msgid "Removed drum part: {}"
msgstr ""
#: src/ui/drum_grid_builder.py:429
msgid "Failed to remove drum part"
msgstr ""
#. Update tooltip and accessibility with current BPM
#: src/window.py:220
msgid "{} Beats per Minute (BPM)"
msgstr ""
#. Update button tooltip to show current volume level
#: src/window.py:229
msgid "{:.0f}% Volume"
msgstr ""
#: src/window.py:262 src/window.ui:173
msgid "Play"
msgstr ""
#: src/window.py:266
msgid "Pause"
msgstr ""
#: src/window.py:313
msgid "Open"
msgstr ""
#: src/window.py:331
msgid "Added: {}"
msgstr ""
#: src/window.py:346
msgid "Failed to add custom sound"
msgstr ""
#: src/window.py:353
msgid "Replaced drum with: {}"
msgstr ""
#: src/window.py:361
msgid "Failed to replace drum sound"
msgstr ""
#: src/window.ui:52
msgid "Open…"
msgstr ""
#: src/window.ui:54
msgid "Open Pattern"
msgstr ""
#: src/window.ui:57
msgctxt "accessibility"
msgid "Open Pattern"
msgstr ""
#: src/window.ui:58
msgid "Open Saved Drum Pattern"
msgstr ""
#: src/window.ui:76
msgid "Main Menu"
msgstr ""
#: src/window.ui:78
msgctxt "accessibility"
msgid "Main Menu"
msgstr ""
#: src/window.ui:79
msgid "Access Keyboard Shortcuts and Application Information"
msgstr ""
#: src/window.ui:86
msgid "Export Audio…"
msgstr ""
#: src/window.ui:91
msgctxt "accessibility"
msgid "Export Audio…"
msgstr ""
#: src/window.ui:92
msgid "Export Current Drum Pattern as Audio File"
msgstr ""
#: src/window.ui:137
msgid "BPM"
msgstr ""
#: src/window.ui:142 src/window.ui:146
msgid "Adjust Tempo In Beats per Minute (BPM)"
msgstr ""
#: src/window.ui:145
msgid "Tempo"
msgstr ""
#: src/window.ui:187
msgid "Adjust Volume"
msgstr ""
#: src/window.ui:210
msgid "Clear"
msgstr ""
#: src/window.ui:211
msgid "Clear the Drum Pattern"
msgstr ""
#: src/window.ui:226
msgid "_Add Samples…"
msgstr ""
#: src/window.ui:230
msgid "_Save Pattern…"
msgstr ""
#: src/window.ui:236
msgid "_Reset to Defaults"
msgstr ""
#: src/window.ui:242
msgid "_Keyboard Shortcuts"
msgstr ""
#: src/window.ui:246
msgid "_About Drum Machine"
msgstr ""
#: src/gtk/help-overlay.blp:11
msgctxt "shortcut window"
msgid "General"
msgstr ""
#: src/gtk/help-overlay.blp:14
msgctxt "shortcut window"
msgid "Show Shortcuts"
msgstr ""
#: src/gtk/help-overlay.blp:19
msgctxt "shortcut window"
msgid "Quit"
msgstr ""
#: src/gtk/help-overlay.blp:26
msgctxt "shortcut window"
msgid "Playback Controls"
msgstr ""
#: src/gtk/help-overlay.blp:29
msgctxt "shortcut window"
msgid "Play/Pause"
msgstr ""
#: src/gtk/help-overlay.blp:35
msgctxt "shortcut window"
msgid "Clear All"
msgstr ""
#: src/gtk/help-overlay.blp:42
msgctxt "shortcut window"
msgid "BPM & Volume Controls"
msgstr ""
#: src/gtk/help-overlay.blp:45
msgctxt "shortcut window"
msgid "Increase BPM"
msgstr ""
#: src/gtk/help-overlay.blp:51
msgctxt "shortcut window"
msgid "Decrease BPM"
msgstr ""
#: src/gtk/help-overlay.blp:57
msgctxt "shortcut window"
msgid "Increase Volume"
msgstr ""
#: src/gtk/help-overlay.blp:63
msgctxt "shortcut window"
msgid "Decrease Volume"
msgstr ""
#: src/gtk/help-overlay.blp:69
msgctxt "shortcut window"
msgid "Mute"
msgstr ""
#: src/gtk/help-overlay.blp:76
msgctxt "shortcut window"
msgid "Pattern Management"
msgstr ""
#: src/gtk/help-overlay.blp:79
msgctxt "shortcut window"
msgid "Load Pattern"
msgstr ""
#: src/gtk/help-overlay.blp:85
msgctxt "shortcut window"
msgid "Save Pattern"
msgstr ""
#: src/gtk/help-overlay.blp:91
msgctxt "shortcut window"
msgid "Export Audio"
msgstr ""
#: src/gtk/help-overlay.blp:98
msgctxt "shortcut window"
msgid "Navigation"
msgstr ""
#: src/gtk/help-overlay.blp:101
msgctxt "shortcut window"
msgid "Go to Instrument"
msgstr ""
#: src/gtk/help-overlay.blp:107
msgctxt "shortcut window"
msgid "Previous Page"
msgstr ""
#: src/gtk/help-overlay.blp:113
msgctxt "shortcut window"
msgid "Next Page"
msgstr ""
#: src/gtk/save-changes-dialog.blp:5
msgid "Save Changes?"
msgstr ""
#: src/gtk/save-changes-dialog.blp:6
msgid ""
"Current pattern contains unsaved changes. Changes which are not saved will "
"be permanently lost."
msgstr ""
#. Translators: Cancel the operation
#: src/gtk/save-changes-dialog.blp:14 src/gtk/reset-defaults-dialog.blp:13
msgid "_Cancel"
msgstr ""
#. Translators: Discard all changes
#: src/gtk/save-changes-dialog.blp:15
msgid "_Discard"
msgstr ""
#. Translators: Save current changes
#: src/gtk/save-changes-dialog.blp:16
msgid "_Save"
msgstr ""
#: src/gtk/audio-export-dialog.blp:6 src/gtk/audio-export-dialog.blp:101
msgid "Export Audio"
msgstr ""
#: src/gtk/audio-export-dialog.blp:44
msgid "Audio Format"
msgstr ""
#: src/gtk/audio-export-dialog.blp:50
msgid "Repeat Count"
msgstr ""
#: src/gtk/audio-export-dialog.blp:51
msgid "How many times to repeat the pattern"
msgstr ""
#: src/gtk/audio-export-dialog.blp:64
msgid "Metadata"
msgstr ""
#: src/gtk/audio-export-dialog.blp:67
msgid "Artist Name"
msgstr ""
#: src/gtk/audio-export-dialog.blp:72
msgid "Song Name"
msgstr ""
#: src/gtk/audio-export-dialog.blp:77
msgid "Cover Art"
msgstr ""
#: src/gtk/audio-export-dialog.blp:81
msgid "Choose File…"
msgstr ""
#: src/gtk/audio-export-dialog.blp:110
msgid "Cancel Export"
msgstr ""
#: src/gtk/reset-defaults-dialog.blp:5
msgid "Reset to Defaults?"
msgstr ""
#: src/gtk/reset-defaults-dialog.blp:6
msgid ""
"This will clear the current pattern and restore all samples, BPM, and volume "
"to their default values. This action cannot be undone."
msgstr ""
#. Translators: Reset to defaults
#: src/gtk/reset-defaults-dialog.blp:14
msgid "_Reset"
msgstr ""
|