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 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 19:46-0500\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: data/jamin.desktop.in.h:1
msgid "JACK Audio Mastering interface"
msgstr ""
#: data/jamin.desktop.in.h:2 src/interface.c:534
msgid "JAMin"
msgstr ""
#: data/jamin.xml.in.h:1
msgid "JAMin session file"
msgstr ""
#: src/callbacks.c:282
msgid "Pre EQ spectrum "
msgstr ""
#: src/callbacks.c:285
msgid "Post EQ spectrum "
msgstr ""
#: src/callbacks.c:288
msgid "Post compressor spectrum"
msgstr ""
#: src/callbacks.c:291
msgid "Output spectrum "
msgstr ""
#: src/callbacks.c:1300 src/callbacks.c:1330
msgid "Select a session file"
msgstr ""
#: src/callbacks_help.h:20
msgid ""
" JAMin is the JACK Audio Mastering interface.\n"
"\n"
" Web site: <http://jamin.sourceforge.net>\n"
"\n"
" JAMin is designed to perform professional audio mastering of any number "
"of input streams. It consists of a number of tools to do this: a 1024 band "
"hand drawn EQ with modifiable parametric controls, a 31 band graphic EQ, 3 "
"band compressor, 3 band stereo width control, lookahead limiter, boost, and "
"a number of other features.\n"
"\n"
" Steve Harris is the JAMin principle author and team leader.\n"
"\n"
" SourceForge CVS developers, in alphabetical order:\n"
"\n"
" Jan Depner\n"
" Steve Harris\n"
" Jack O'Quin\n"
" Ron Parker\n"
" Patrick Shirkey\n"
"\n"
" JAMin is released under the GNU General Public License and is copyright "
"(c) 2003 J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n"
" This program is free software; you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version.\n"
" This program is distributed in the hope that it will be useful, but "
"WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY "
"or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
"more details.\n"
" You should have received a copy of the GNU General Public License along "
"with this program; if not, write to the Free Software Foundation, Inc., 675 "
"Mass Ave, Cambridge, MA 02139, USA.\n"
msgstr ""
#: src/callbacks_help.h:51
msgid ""
" JAMin would not be functional without many other open source packages "
"and we thought that it would only be right to list them here:\n"
"\n"
" JACK - JACK Audio Connection Kit\n"
" http://jackit.sourceforge.net\n"
"\n"
" SWH plugins - Steve Harris' LADSPA plugins\n"
" http://plugin.org.uk\n"
"\n"
" LADSPA - Linux Audio Developer's Simple Plugin API\n"
" http://www.ladspa.org\n"
"\n"
" FFTW - Fastest Fourier Transform in the West\n"
" http://www.fftw.org\n"
"\n"
" libsndfile - Erik de Castro Lopo's sound file I/O\n"
" http://www.zip.com.au/~erikd/libsndfile\n"
"\n"
" GTK - The GIMP Toolkit\n"
" http://www.gtk.org\n"
"\n"
" ALSA - Advanced Linux Sound Architecture\n"
" http://www.alsa-project.org\n"
"\n"
"Many thanks to all of the authors of these packages!\n"
msgstr ""
#: src/callbacks_help.h:72
msgid ""
" The File menu has the standard options available. Save and Save As "
"allow you to save the scenes and settings for a session to a .jam file. By "
"default these are saved in the $HOME/.jamin directory but may be saved "
"anywhere.\n"
" The Edit menu has undo and redo options for changes to the settings.\n"
" The Ports menu allows you to set the input and output ports for JAMin.\n"
" The Options menu has EQ Options and Preferences entries. The EQ Options "
"dialog allows you to set the minimum and maximum gain level in dB for both "
"the HDEQ and GEQ. You can also set the source of the spectrum for both the "
"HDEQ and spectrum windows. Spectrum update frequency can be set here as "
"well. Up to 10 per second (default) and down to 0 (disabled).\n"
" Colors may be changed in the Options->Preferences dialog. These colors "
"are saved in the file $HOME/.jamin-defaults. This is done whenever you exit "
"from JAMin. You can actually edit this file and change the colors by hand. "
"They are just RGB values in the 0-65535 range but it's much easier to use "
"the GUI ;-). You may also set the crossfade time and crossover type in this "
"dialog (see the man page for more information on crossfade time and "
"crossover type).\n"
" For help on the rest of the GUI, context specific help can be obtained "
"by moving the mouse pointer into one of the tool areas (compressor, EQ, "
"limiter, input, etc) and pressing <Shift><F1>.\n"
msgstr ""
#: src/callbacks_help.h:97
msgid ""
" The hand drawn EQ (HDEQ) allows the user to draw the EQ curve using the "
"mouse. The curve is then splined to fill 1024 EQ bands. There are a number "
"of other options available in the HDEQ. There are user defined notches that "
"act as a parametric EQ. There are also crossover controls that will allow "
"the user to change the compressor crossover points. The following is a "
"quick guide to using the HDEQ:\n"
"\n"
" In the background window - left click and release to begin drawing the "
"curve. Left click again to end the curve. You can define any portion of "
"the curve, you don't have to define the entire curve. Drawing can be done "
"from left to right or right to left. If you try to reverse direction while "
"drawing the data in the reverse direction will be ignored. You can discard "
"the curve that you are drawing by clicking the middle or right buttons. "
"Clicking the right mouse button in the HDEQ when not drawing a curve will "
"reset all EQ and notch values to their original (flat) settings.\n"
"\n"
" Over the crossover bar handles - left click and hold to drag the "
"crossover bars.\n"
"\n"
" Over the notch handles - left click and hold to drag the notch center or "
"cuttoff frequency and gain. <Ctrl>-left click will reset the notch to 0. "
"If you hold the shift key while adjusting the notch handle it will only move "
"in the Y (gain) direction.\n"
"\n"
" Over the notch width handle - left click and hold to widen or narrow the "
"notches, except the high and low cutoff notches which have no width "
"handles.\n"
msgstr ""
#: src/callbacks_help.h:123
msgid ""
" The adjustable crossover is used to split the entire audible range into "
"three sections. It applies to the compressors and stereo widths. If the "
"crossovers are set to 500Hz and 5KHz then the first stereo width control and "
"compressor works for 25-500Hz, the second for 500Hz-5KHz, and the last for "
"5KHz-20KHz. The crossover has no effect on the HDEQ unless one or more "
"bands are soloed. The crossover bars that are visible in the HDEQ serve as "
"a visual reference.\n"
msgstr ""
#: src/callbacks_help.h:134
msgid ""
" The graphic EQ (GEQ) can be used to set gain for specific bands of the "
"audio spectrum. The center of the band is annotated at the bottom of each "
"fader. Setting a fader in the GEQ will override the HDEQ in the immediate "
"vicinity of the changed fader and cause that curve to be redrawn. It will "
"not override the parametric notch settings in the HDEQ. Clicking the right "
"mouse button on a GEQ control will reset the value to 0.0.\n"
msgstr ""
#: src/callbacks_help.h:144
msgid ""
" The input section allows you to set the input gain to the JAMin system. "
"You can also pan the input left or right. Clicking the right mouse button "
"on the gain/balance control will reset the value to 0.0/centre. Clicking "
"the right mouse button on the meters will reset the peak indicator to the "
"current level.\n"
msgstr ""
#: src/callbacks_help.h:153
msgid ""
" The spectrum display shows the power spectrum of the signal in bands "
"that correspond to the frequency bands in the 30 band EQ (GEQ). In addition "
"it displays the maximum value reached for each band as a (by default) blue "
"line.\n"
msgstr ""
#: src/callbacks_help.h:161
msgid ""
" The compressor curves show a graphical representation of the compression "
"for each compressor band. The bands are defined by the crossover that can "
"be set using the crossover faders or the crossover bars in the HDEQ. The X-"
"axis shows the input in db while the Y-axis shows the output in db. The "
"scale is from -60 to 0 in X and -60 to +30 in Y.\n"
msgstr ""
#: src/callbacks_help.h:170
msgid ""
" The compressors allow you to set compression parameters for each "
"compressor band. The bands are defined by the crossover that can be set "
"using the crossover faders or the crossover bars in the HDEQ. The "
"parameters are, from left to right:\n"
"\n"
" A - attack in milliseconds\n"
" R - release in milliseconds\n"
" T - threshold in db\n"
" r - compression ratio (N:1)\n"
" K - knee (0.0 [hard] to 1.0 [soft])\n"
" M - makeup gain in db\n"
" Note that the value label for makeup gain is also the automatic makeup "
"gain button. Pressing this will cause JAMin to try to approximate the "
"optimum makeup gain for the other settings. When pressed you cannot "
"manually adjust the makeup gain however, adjustments to the threshold or "
"ratio will cause the makeup gain to change.\n"
" A full explanation of the use of these parameters is covered in the user "
"manual.\n"
" Compressor controls can be \"ganged\" by clicking on the control label "
"in the desired compressor band windows. When they are ganged moving one "
"control will move all other ganged controls by the same amount. To ungang "
"just click on the label again. The labels change to the band color to "
"indicate that they are ganged.\n"
msgstr ""
#: src/callbacks_help.h:196
msgid ""
" The stereo width controls define the apparent 'wideness' of the stereo "
"signal for each of the three bands. The bands are defined by the crossovers "
"that can be set using the crossover faders or the crossover bars in the "
"HDEQ. More negative values decrease the 'width' while positive values "
"increase the 'width'. Clicking the right mouse button on the stereo width "
"control will reset the value to 0.0.\n"
msgstr ""
#: src/callbacks_help.h:206
msgid ""
" The lookahead limiter is a brickwall limiter that will not allow the "
"output to exceed the set level. It 'looks ahead' by the specified amount in "
"order to make a smooth transition as it nears the limit level. Clicking the "
"right mouse button on the input or limit control will reset the value to "
"0.0. Clicking the right mouse button on the input or limit meters will "
"reset the peak indicator to the current level.\n"
msgstr ""
#: src/callbacks_help.h:216
msgid ""
" The boost control allows the user to add 'tube like' gain to the output "
"signal. Use to taste (New England mild to Cajun spicy). Clicking the right "
"mouse button on the boost control will reset the value to 0.0.\n"
msgstr ""
#: src/callbacks_help.h:223
msgid ""
" The output control allows you to decrease the output level. The upper "
"level is 0dB. Clicking the right mouse button on the output control will "
"reset the value to 0.0. Clicking the right mouse button on the meter will "
"reset the peak indicator to the current level.\n"
msgstr ""
#: src/callbacks_help.h:231
msgid ""
" The EQ Options dialog allows you to set the minimum and maximum gain "
"level in dB for both the HDEQ and GEQ. You can also set the source of the "
"spectrum for both the HDEQ and spectrum windows. Spectrum update frequency "
"can be set here as well. Up to 10 per second (default) and down to 0 "
"(disabled).\n"
msgstr ""
#: src/callbacks_help.h:240
msgid ""
" Colors may be changed in the Options->Preferences dialog. These colors "
"are saved in the file $HOME/.jamin-defaults. This is done whenever you exit "
"from JAMin. You can actually edit this file and change the colors by hand. "
"They are just RGB values in the 0-65535 range but it's much easier to use "
"the GUI ;-). You may also set the crossfade time and crossover type in this "
"dialog (see the man page for more information on crossfade time and "
"crossover type).\n"
msgstr ""
#: src/callbacks_help.h:251
msgid ""
" This allows you to set the input to the spectrum computation for both "
"the Spectrum window and the HDEQ. The default is Post EQ. The other "
"options are Pre EQ, Post compressor, and Output.\n"
msgstr ""
#: src/callbacks_help.h:258
msgid ""
" The transport controls give you the usual tape transport type controls. "
"These are useful if you are using other JACK enabled applications that honor "
"the JACK transport control functions (ecamegapedal, Ardour). Note that there "
"is no stop button (use pause). Some JACK and system status information is "
"available to the right of the transport buttons. The fast forward and "
"reverse buttonsa will move the transport forward or back by five seconds.\n"
msgstr ""
#: src/callbacks_help.h:268
msgid ""
" This button will bypass all of JAMin's functions. The keyboard "
"accelerator for this button is the 'b' key.\n"
msgstr ""
#: src/callbacks_help.h:274
msgid ""
" Scenes are used to save and recall an entire group of JAMin parameter "
"settings during a session. After setting all of the parameters for a "
"specific section of music (verse, chorus, bridge) or a complete song you can "
"right click on a scene button, use the menu to 'Set' that scene, then use "
"the 'Name' entry of the menu to enter a name for that scene (Back Alley "
"Fugue - verse). You can recall these settings by left clicking on the scene "
"button. A bright green button means that the scene associated with this "
"button is currently the active scene. A dull green button signifies that "
"the scene is loaded but not active. A red button means that the scene has "
"no settings loaded. A bright yellow button means that this scene is active "
"but the settings have been changed. If you want to save the settings you "
"must use the 'Set' entry in the button's right click menu. You can clear "
"settings from a button using the right click menu and the 'Clear' entry.\n"
"\n"
" The keyboard accelerators for the scene buttons are the number keys, 1 "
"through 0 for scenes 1 through 10. <Shift>-1 through <Shift>-0 will access "
"scenes 11 through 20. For example, pressing the 1 key will cause scene 1 to "
"become active. Pressing <Shift>-5 will cause scene 15 to become active. "
"The ALT modifier can be used to assign settings to a scene button (instead "
"of using the scene button menus). Pressing <Alt><Shift>-5 will assign the "
"current settings to scene button 15 (you may still want to change the "
"name). The CTRL modifier can be used to clear a scene button. Pressing "
"<Ctrl>-4 will clear scene button 4. \n"
"\n"
" Note that the keypad keys may be used but only for scenes 1 through 10 "
"with Num Lock on. Using the keypad with Num Lock off will access the cursor "
"keys (which can be used to control some aspects of the GUI). Using <Shift> "
"with the keypad with Num Lock on will also access the cursor keys.\n"
msgstr ""
#: src/callbacks_help.h:304
msgid ""
" This button allows you to bypass all EQ processing. It will have no "
"effect on any of the other controls.\n"
msgstr ""
#: src/callbacks_help.h:310
msgid ""
" The solo buttons allow you to listen to selected bands while muting the "
"other bands. Selecting two of the solo buttons effectively mutes the "
"remaining band. The per band bypass buttons allow you to bypass compression "
"on the selected bands.\n"
msgstr ""
#: src/callbacks_help.h:318
msgid ""
" This button allows you to bypass limiting. It has no effect on any of "
"the other controls.\n"
msgstr ""
#: src/callbacks_help.h:324
msgid ""
" Keyboard accelerators are available for many of the functions in JAMin:\n"
"\n"
"\tb\t\t\t-\tBypass\n"
"\tSpace\t\t-\tToggle play and pause\n"
"\tHome\t\t-\tPosition transport to beginning\n"
"\t<\t\t\t-\tMove transport backwards 5 sec.\n"
"\t>\t\t\t-\tMove transport forwards 5 sec.\n"
"\t1-0\t\t\t-\tSelect scene 1-10\n"
"\t<Shift>-1-0\t-\tSelect scene 11-20\n"
"\t\t\t\t\t<Alt> will set scene, <Ctrl> will clear\n"
"\t<Ctrl>-o\t\t-\tOpen session file\n"
"\t<Ctrl>-s\t\t-\tSave to current session file\n"
"\t<Ctrl>-a\t\t-\tSave session file as new session file\n"
"\t<Ctrl>-q\t\t-\tQuit\n"
"\t<Ctrl>-u\t\t-\tUndo\n"
"\t<Ctrl>-r\t\t-\tRedo\n"
"\t<Ctrl>-h\t\t-\tGeneral help\n"
"\tF1\t\t\t-\tSet the notebook tab to HDEQ\n"
"\tF2\t\t\t-\tSet the notebook tab to 30 band EQ\n"
"\tF3\t\t\t-\tSet the notebook tab to Spectrum\n"
"\tF4\t\t\t-\tSet the notebook tab to Compressor \n"
" \t\t\t\t\tcurves\n"
"\tF5\t\t\t-\tSet the notebook tab to the EQ \n"
" \t\t\t\t\tOptions\n"
"\t<Ctrl>-k\t\t-\tKeyboard accelerator help (this \n"
" \t\t\t\t\tscreen)\n"
"\t<Ctrl>-j\t\t-\tAbout JAMin\n"
msgstr ""
#: src/geq.c:128 src/geq.c:160
#, c-format
msgid "Splined length %d does not match BINS / 2 - 1 (%d)"
msgstr ""
#: src/geq.c:245
#, c-format
msgid "jam error: Adjustment from out-of-range band %d requested\n"
msgstr ""
#: src/hdeq.c:345 src/hdeq.c:430
#, c-format
msgid "Mid : %d - %d"
msgstr ""
#: src/hdeq.c:351
#, c-format
msgid "Low : %d - %d"
msgstr ""
#: src/hdeq.c:435
#, c-format
msgid "High : %d - %d"
msgstr ""
#: src/hdeq.c:661
msgid "Allocating x in set_EQ"
msgstr ""
#: src/hdeq.c:1329
#, c-format
msgid "%dHz , EQ : %ddb , Spectrum : %ddb"
msgstr ""
#: src/hdeq.c:1377 src/hdeq.c:1878
msgid "Allocating EQ_yinput in callbacks.c"
msgstr ""
#: src/hdeq.c:1690
#, c-format
msgid "%ddb , %dHz - %dHz"
msgstr ""
#: src/hdeq.c:1995 src/hdeq.c:2015
msgid "Allocating y in callbacks.c"
msgstr ""
#: src/interface.c:553
msgid "_File"
msgstr ""
#: src/interface.c:577
msgid "Save _As"
msgstr ""
#: src/interface.c:601
msgid "_Edit"
msgstr ""
#: src/interface.c:610
msgid "_Undo"
msgstr ""
#: src/interface.c:623
msgid "_Redo"
msgstr ""
#: src/interface.c:641
msgid "_Ports"
msgstr ""
#: src/interface.c:646
msgid "_Help"
msgstr ""
#: src/interface.c:655
msgid "_General"
msgstr ""
#: src/interface.c:668
msgid "_Keys"
msgstr ""
#: src/interface.c:687
msgid "About _JAMin"
msgstr ""
#: src/interface.c:700
msgid "About Prerequisites"
msgstr ""
#: src/interface.c:737
msgid "rewind transport"
msgstr ""
#: src/interface.c:750
msgid "backward transport"
msgstr ""
#: src/interface.c:763
msgid "play transport"
msgstr ""
#: src/interface.c:776
msgid "pause transport"
msgstr ""
#: src/interface.c:789
msgid "forward transport"
msgstr ""
#: src/interface.c:801
msgid "HH:MM:SS:xx"
msgstr ""
#: src/interface.c:813
msgid "Stopped | some CPU | some frames | 96000 Hz | Focus - something"
msgstr ""
#: src/interface.c:835
msgid "Scenes"
msgstr ""
#: src/interface.c:850 src/interface.c:861 src/interface.c:872
#: src/interface.c:883
msgid "Don't change this pixmap!!!"
msgstr ""
#: src/interface.c:894 src/interface.c:905 src/interface.c:916
#: src/interface.c:927 src/interface.c:938 src/interface.c:949
#: src/interface.c:960 src/interface.c:971 src/interface.c:982
#: src/interface.c:993 src/interface.c:1004 src/interface.c:1015
#: src/interface.c:1026 src/interface.c:1037 src/interface.c:1048
#: src/interface.c:1059
msgid "Right click for menu"
msgstr ""
#: src/interface.c:1122
msgid "Input Gain"
msgstr ""
#: src/interface.c:1164
msgid "pan_label"
msgstr ""
#: src/interface.c:1173
msgid "Input Balance"
msgstr ""
#: src/interface.c:1182 src/interface.c:3168
msgid "Input"
msgstr ""
#: src/interface.c:1233
msgid "HDEQ"
msgstr ""
#: src/interface.c:1262
msgid "25 Hz"
msgstr ""
#: src/interface.c:1271
msgid "25"
msgstr ""
#: src/interface.c:1290
msgid "31 Hz"
msgstr ""
#: src/interface.c:1299
msgid "31"
msgstr ""
#: src/interface.c:1318
msgid "39 Hz"
msgstr ""
#: src/interface.c:1327
msgid "39"
msgstr ""
#: src/interface.c:1346
msgid "50 Hz"
msgstr ""
#: src/interface.c:1355
msgid "50"
msgstr ""
#: src/interface.c:1374
msgid "62 Hz"
msgstr ""
#: src/interface.c:1383
msgid "62"
msgstr ""
#: src/interface.c:1402
msgid "79 Hz"
msgstr ""
#: src/interface.c:1411
msgid "79"
msgstr ""
#: src/interface.c:1430
msgid "100 Hz"
msgstr ""
#: src/interface.c:1439
msgid "100"
msgstr ""
#: src/interface.c:1458
msgid "125 Hz"
msgstr ""
#: src/interface.c:1467
msgid "125"
msgstr ""
#: src/interface.c:1486
msgid "158 Hz"
msgstr ""
#: src/interface.c:1495
msgid "158"
msgstr ""
#: src/interface.c:1514
msgid "200 Hz"
msgstr ""
#: src/interface.c:1523
msgid "200"
msgstr ""
#: src/interface.c:1542
msgid "251 Hz"
msgstr ""
#: src/interface.c:1551
msgid "251"
msgstr ""
#: src/interface.c:1565
msgid "317 Hz"
msgstr ""
#: src/interface.c:1574
msgid "317"
msgstr ""
#: src/interface.c:1588
msgid "400 Hz"
msgstr ""
#: src/interface.c:1597
msgid "400"
msgstr ""
#: src/interface.c:1611
msgid "503 Hz"
msgstr ""
#: src/interface.c:1620
msgid "503"
msgstr ""
#: src/interface.c:1634
msgid "634 Hz"
msgstr ""
#: src/interface.c:1643
msgid "634"
msgstr ""
#: src/interface.c:1657
msgid "800 Hz"
msgstr ""
#: src/interface.c:1666
msgid "800"
msgstr ""
#: src/interface.c:1680
msgid "1000 Hz"
msgstr ""
#: src/interface.c:1689
msgid "1k"
msgstr ""
#: src/interface.c:1703
msgid "1200 Hz"
msgstr ""
#: src/interface.c:1712
msgid "1k2"
msgstr ""
#: src/interface.c:1726
msgid "1500 Hz"
msgstr ""
#: src/interface.c:1735
msgid "1k5"
msgstr ""
#: src/interface.c:1749
msgid "2000 Hz"
msgstr ""
#: src/interface.c:1758
msgid "2k"
msgstr ""
#: src/interface.c:1772
msgid "2500 Hz"
msgstr ""
#: src/interface.c:1781
msgid "2k5"
msgstr ""
#: src/interface.c:1795
msgid "3200 Hz"
msgstr ""
#: src/interface.c:1804
msgid "3k2"
msgstr ""
#: src/interface.c:1818
msgid "4000 Hz"
msgstr ""
#: src/interface.c:1827
msgid "4k"
msgstr ""
#: src/interface.c:1841
msgid "5000 Hz"
msgstr ""
#: src/interface.c:1850
msgid "5k"
msgstr ""
#: src/interface.c:1864
msgid "6000 Hz"
msgstr ""
#: src/interface.c:1878
msgid "6k"
msgstr ""
#: src/interface.c:1892
msgid "8000 Hz"
msgstr ""
#: src/interface.c:1901
msgid "8k"
msgstr ""
#: src/interface.c:1915
msgid "10 KHz"
msgstr ""
#: src/interface.c:1924
msgid "10k"
msgstr ""
#: src/interface.c:1938
msgid "12 KHz"
msgstr ""
#: src/interface.c:1947
msgid "12k"
msgstr ""
#: src/interface.c:1961
msgid "16 KHz"
msgstr ""
#: src/interface.c:1970
msgid "16k"
msgstr ""
#: src/interface.c:1984
msgid "20000 Hz"
msgstr ""
#: src/interface.c:1993
msgid "20k"
msgstr ""
#: src/interface.c:1998
msgid "30 band EQ"
msgstr ""
#: src/interface.c:2019 src/interface.c:4835
msgid "Spectrum"
msgstr ""
#: src/interface.c:2047 src/interface.c:2082 src/interface.c:2117
msgid "X=input db , Y=output db"
msgstr ""
#: src/interface.c:2060
msgid "Low"
msgstr ""
#: src/interface.c:2095
msgid "Mid"
msgstr ""
#: src/interface.c:2130
msgid "High"
msgstr ""
#: src/interface.c:2136
msgid "Compressor curves"
msgstr ""
#: src/interface.c:2151
msgid "EQ bypass"
msgstr ""
#: src/interface.c:2166 src/interface.c:2179
msgid "00000"
msgstr ""
#: src/interface.c:2174
msgid "Crossover"
msgstr ""
#: src/interface.c:2203
msgid "Low to Mid Band Crossover"
msgstr ""
#: src/interface.c:2217
msgid "Mid to High Band Crossover"
msgstr ""
#: src/interface.c:2294 src/interface.c:2580 src/interface.c:2866
msgid "A"
msgstr ""
#: src/interface.c:2303 src/interface.c:2589 src/interface.c:2875
msgid "Attack"
msgstr ""
#: src/interface.c:2323 src/interface.c:2609 src/interface.c:2895
msgid "R"
msgstr ""
#: src/interface.c:2332 src/interface.c:2618 src/interface.c:2904
#: src/interface.c:3250
msgid "Release"
msgstr ""
#: src/interface.c:2352 src/interface.c:2638 src/interface.c:2924
msgid "T"
msgstr ""
#: src/interface.c:2361 src/interface.c:2647 src/interface.c:2933
msgid "Threshold"
msgstr ""
#: src/interface.c:2380 src/interface.c:2666 src/interface.c:2952
msgid "r"
msgstr ""
#: src/interface.c:2389 src/interface.c:2675 src/interface.c:2961
msgid "Ratio"
msgstr ""
#: src/interface.c:2408 src/interface.c:2694 src/interface.c:2980
msgid "K"
msgstr ""
#: src/interface.c:2417 src/interface.c:2703 src/interface.c:2989
msgid "Knee"
msgstr ""
#: src/interface.c:2436 src/interface.c:2722 src/interface.c:3008
msgid "M"
msgstr ""
#: src/interface.c:2446 src/interface.c:2732 src/interface.c:3018
msgid "0.0"
msgstr ""
#: src/interface.c:2450 src/interface.c:2736 src/interface.c:3022
msgid "Auto makeup"
msgstr ""
#: src/interface.c:2456 src/interface.c:2742 src/interface.c:3028
msgid "Makeup gain"
msgstr ""
#: src/interface.c:2472 src/interface.c:2758 src/interface.c:3044
msgid "Level"
msgstr ""
#: src/interface.c:2489 src/interface.c:2775 src/interface.c:3061
msgid "Gain"
msgstr ""
#: src/interface.c:2500
msgid "Low Band Stereo Width"
msgstr ""
#: src/interface.c:2520 src/interface.c:2806 src/interface.c:3092
msgid "Solo"
msgstr ""
#: src/interface.c:2524
msgid "Low Band Solo"
msgstr ""
#: src/interface.c:2526 src/interface.c:2812 src/interface.c:3098
#: src/interface.c:3378
msgid "Bypass"
msgstr ""
#: src/interface.c:2530
msgid "Low Band Bypass"
msgstr ""
#: src/interface.c:2532
msgid "Low : 00000 - 00000"
msgstr ""
#: src/interface.c:2786
msgid "Mid Band Stereo Width"
msgstr ""
#: src/interface.c:2810
msgid "Mid Band Solo"
msgstr ""
#: src/interface.c:2816
msgid "Mid Band Bypass"
msgstr ""
#: src/interface.c:2818
msgid "Mid : 00000 - 00000"
msgstr ""
#: src/interface.c:3072
msgid "High Band Stereo Width"
msgstr ""
#: src/interface.c:3096
msgid "High Band Solo"
msgstr ""
#: src/interface.c:3102
msgid "High Band Bypass"
msgstr ""
#: src/interface.c:3104
msgid "High : 00000 - 00000"
msgstr ""
#: src/interface.c:3131
msgid "Amount "
msgstr ""
#: src/interface.c:3142
msgid "Boost"
msgstr ""
#: src/interface.c:3212
msgid "----"
msgstr ""
#: src/interface.c:3221
msgid "1.000 ms"
msgstr ""
#: src/interface.c:3258
msgid "Limit"
msgstr ""
#: src/interface.c:3306
msgid "Limiter bypass"
msgstr ""
#: src/interface.c:3311
msgid "Limiter"
msgstr ""
#: src/interface.c:3384 src/interface.c:4811
msgid "Output"
msgstr ""
#: src/interface.c:4537
msgid "Set"
msgstr ""
#: src/interface.c:4541
msgid "Assign settings to button"
msgstr ""
#: src/interface.c:4548
msgid "Clear"
msgstr ""
#: src/interface.c:4552
msgid "Clear settings from button"
msgstr ""
#: src/interface.c:4559
msgid "Name"
msgstr ""
#: src/interface.c:4563
msgid "Set scene name"
msgstr ""
#: src/interface.c:4672
msgid "Preferences"
msgstr ""
#: src/interface.c:4701
msgid "Minimum gain (db):"
msgstr ""
#: src/interface.c:4711
msgid "Set the minimum gain level for the EQ"
msgstr ""
#: src/interface.c:4718
msgid "Maximum gain (db):"
msgstr ""
#: src/interface.c:4728
msgid "Set the maximum gain level for the EQ"
msgstr ""
#: src/interface.c:4730
msgid "Graphic EQ"
msgstr ""
#: src/interface.c:4752
msgid "Crossfade time (sec):"
msgstr ""
#: src/interface.c:4762
msgid "Change the crossfade time for scene changes"
msgstr ""
#: src/interface.c:4765
msgid "Crossfade"
msgstr ""
#: src/interface.c:4791
msgid "Choose source for spectrum display"
msgstr ""
#: src/interface.c:4796
msgid "Pre EQ"
msgstr ""
#: src/interface.c:4801
msgid "Post EQ"
msgstr ""
#: src/interface.c:4806
msgid "Post Compressor"
msgstr ""
#: src/interface.c:4823
msgid "Update frequency (Hz):"
msgstr ""
#: src/interface.c:4833
msgid "Change the spectrum update frequency"
msgstr ""
#: src/interface.c:4857
msgid "FFT"
msgstr ""
#: src/interface.c:4864
msgid "IIR"
msgstr ""
#: src/interface.c:4871
msgid "Crossover type"
msgstr ""
#: src/interface.c:4892
msgid "Set colors for GUI components"
msgstr ""
#: src/interface.c:4897
msgid "Low Band Compressor"
msgstr ""
#: src/interface.c:4902
msgid "Mid Band Compressor"
msgstr ""
#: src/interface.c:4907
msgid "High Band Compressor"
msgstr ""
#: src/interface.c:4918
msgid "Ganged Controls"
msgstr ""
#: src/interface.c:4929
msgid "Parametric Handles"
msgstr ""
#: src/interface.c:4934
msgid "HDEQ Curve"
msgstr ""
#: src/interface.c:4939
msgid "HDEQ Grid"
msgstr ""
#: src/interface.c:4944
msgid "HDEQ Background"
msgstr ""
#: src/interface.c:4955
msgid "Text"
msgstr ""
#: src/interface.c:4966
msgid "Meter Normal"
msgstr ""
#: src/interface.c:4971
msgid "Meter Warning"
msgstr ""
#: src/interface.c:4976
msgid "Meter Over"
msgstr ""
#: src/interface.c:4981
msgid "Meter Peak"
msgstr ""
#: src/interface.c:4992
msgid "Reset All Colors"
msgstr ""
#: src/interface.c:5004
msgid "Colors"
msgstr ""
#: src/interface.c:5019
msgid "Close the Preferences window"
msgstr ""
#: src/interface.c:5215
msgid "Select Color"
msgstr ""
#: src/interface.c:5262
msgid "Scene X Name"
msgstr ""
#: src/interface.c:5340
msgid "filter tuning [DEBUG]"
msgstr ""
#: src/interface.c:5355
msgid "Bar A bias"
msgstr ""
#: src/interface.c:5361
msgid "HPA bias"
msgstr ""
#: src/interface.c:5367
msgid "Bar B bias"
msgstr ""
#: src/interface.c:5373
msgid "HPB bias"
msgstr ""
#: src/interface.c:5379
msgid "LPA rez"
msgstr ""
#: src/interface.c:5385
msgid "HPA rez"
msgstr ""
#: src/interface.c:5391
msgid "LPB rez"
msgstr ""
#: src/interface.c:5397
msgid "HPB rez"
msgstr ""
#: src/interface.c:5543
msgid "About JAMin"
msgstr ""
#: src/interface.c:5583
msgid ""
"\n"
"JAMin is the JACK Audio Mastering interface. JAMin is designed to perform "
"professional audio mastering of any number of input streams. It consists of "
"a number of tools to do this: a 1024 band hand drawn EQ with modifiable "
"parametric controls, a 31 band graphic EQ, 3 band compressor, 3 band stereo "
"width control, lookahead limiter, boost, and a number of other features."
msgstr ""
#: src/interface.c:5585
msgid "What Is JAMin"
msgstr ""
#: src/interface.c:5605
msgid ""
"\n"
"Steve Harris is the JAMin principle author and team leader.\n"
"\n"
"SourceForge CVS developers, in alphabetical order:\n"
"\n"
"Jan Depner\n"
"Steve Harris\n"
"Jack O'Quin\n"
"Ron Parker\n"
"Patrick Shirkey\n"
"\n"
"Translators:\n"
"\n"
"Alexandre Prokoudine\n"
msgstr ""
#: src/interface.c:5607
msgid "Developers"
msgstr ""
#: src/interface.c:5627
msgid ""
"\n"
"JAMin is released under the GNU General Public License and is copyright (c) "
"2003 J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n"
"\n"
"This program is free software; you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version. \n"
"\n"
"This program is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
"more details.\n"
"You should have received a copy of the GNU General Public License along with "
"this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
"Ave, Cambridge, MA 02139, USA."
msgstr ""
#: src/interface.c:5629
msgid "License"
msgstr ""
#: src/interface.c:5649
msgid ""
"\n"
"Web site: <http://jamin.sourceforge.net>\n"
"\n"
"Mailing list: http://lists.sourceforge.net/lists/listinfo/jamin-devel\n"
"\n"
"Project page: http://sourceforge.net/projects/jamin/"
msgstr ""
#: src/interface.c:5651
msgid "Online"
msgstr ""
#: src/intrim.c:113
#, c-format
msgid "left %.0fdB"
msgstr ""
#: src/intrim.c:115
#, c-format
msgid "right %.0fdB"
msgstr ""
#: src/intrim.c:117
#, c-format
msgid "centre"
msgstr ""
#: src/io-menu.c:88
#, c-format
msgid "iomenu error: %s\n"
msgstr ""
#: src/io-menu.c:111 src/io-menu.c:118 src/io-menu.c:185 src/io-menu.c:231
#, c-format
msgid "connecting port %s to %s\n"
msgstr ""
#: src/io-menu.c:114
#, c-format
msgid "unable to connect from %s\n"
msgstr ""
#: src/io-menu.c:121
#, c-format
msgid "unable to connect to %s\n"
msgstr ""
#: src/io-menu.c:137 src/io-menu.c:144 src/io-menu.c:175 src/io-menu.c:221
#, c-format
msgid "disconnecting port %s from %s\n"
msgstr ""
#: src/io-menu.c:140 src/io-menu.c:147
#, c-format
msgid "unable to disconnect port %s\n"
msgstr ""
#: src/io-menu.c:179 src/io-menu.c:225
#, c-format
msgid "unable to disconnect %s from %s\n"
msgstr ""
#: src/io-menu.c:189 src/io-menu.c:235
#, c-format
msgid "unable to connect %s to %s\n"
msgstr ""
#: src/io-menu.c:367
msgid "Groups"
msgstr ""
#: src/io-menu.c:564
msgid "In"
msgstr ""
#: src/io-menu.c:567
msgid "Out"
msgstr ""
#: src/io.c:232
#, c-format
msgid "%s internal error %d: %s\n"
msgstr ""
#: src/io.c:234
msgid " Terminating due to -F option.\n"
msgstr ""
#: src/io.c:696
#, c-format
msgid ""
"File %s : %s\n"
"Using default."
msgstr ""
#: src/io.c:730
#, c-format
msgid "%s: jack_client_open() failed, status = 0x%2.0x\n"
msgstr ""
#: src/io.c:735
#, c-format
msgid "%s: JACK server started\n"
msgstr ""
#: src/io.c:739
#, c-format
msgid "%s: unique name `%s' assigned\n"
msgstr ""
#: src/io.c:746
#, c-format
msgid "%s: Cannot contact JACK server, is it running?\n"
msgstr ""
#: src/io.c:859
#, c-format
msgid ""
"Usage: %s [-%s] [inport1 inport2 [outport1 outport2]]\n"
"\n"
"user options:\n"
"\t-f file\tload session file on startup\n"
"\t-h\tshow this help\n"
"\t-j name\tJACK server name\n"
"\t-n name\tJACK client name\n"
"\t-s freq\tset spectrum update frequency\n"
"\t-c time\tcrossfade time\n"
"\t-r\tuse example GTK resource file\n"
"\t-p\tdo not automatically connect JACK output ports\n"
"\t-v\tverbose output (use -vv... for more detail)\n"
"\t-V\tprint JAMin version and quit\n"
"\n"
"developer options:\n"
"\t-d\tdummy mode (don't connect to JACK)\n"
"\t-F\ttreat all errors as fatal\n"
"\t-T\tprint trace buffer\n"
"\t-t\tdon't start separate DSP thread\n"
"\n"
msgstr ""
#: src/io.c:1065
#, c-format
msgid ""
"%s: not permitted to create realtime DSP thread.\n"
"\tYou must run as root or use JACK capabilities.\n"
"\tContinuing operation, but with -t option.\n"
msgstr ""
#: src/io.c:1116
#, c-format
msgid "%s: Cannot register JACK ports."
msgstr ""
#: src/io.c:1122
#, c-format
msgid "%s: Cannot activate JACK client."
msgstr ""
#: src/io.c:1143
msgid "No physical playback ports found"
msgstr ""
#: src/io.c:1155
#, c-format
msgid "Cannot connect input port \"%s\"\n"
msgstr ""
#: src/io.c:1165
#, c-format
msgid "Cannot connect output port \"%s\"\n"
msgstr ""
#: src/main.c:87
msgid ""
"(C) 2003-2005 J. Depner, S. Harris, J. O'Quin, R. Parker and P. Shirkey\n"
msgstr ""
#: src/main.c:89
msgid ""
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; see the file COPYING for details.\n"
msgstr ""
#: src/status-ui.c:46
msgid "Disconnected"
msgstr ""
#: src/status-ui.c:50
msgid "Stopped"
msgstr ""
#: src/status-ui.c:54
msgid "Starting"
msgstr ""
#: src/status-ui.c:58
msgid "Rolling"
msgstr ""
#: src/status-ui.c:62
msgid "[unknown]"
msgstr ""
#: src/status-ui.c:67
msgid " | RT"
msgstr ""
#: src/status-ui.c:72
#, c-format
msgid "%s | %4.1f%% CPU | %d xruns | %<PRIu32> frames | %<PRIu32> Hz%s"
msgstr ""
#: src/support.c:90 src/support.c:114
#, c-format
msgid "Couldn't find pixmap file: %s"
msgstr ""
|