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 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
|
# Danish translations for GNU Solfege.
# Copyright (C) 2001, 2002 Tom Cato Amundsen.
# Tom Cato Amundsen <tca@gnu.org>, 2001.
# Keld Simonsen <keld@dkuug.dk>, 2001.
# Reviewed: 2001-09-28 Rune Zedeler <rz@daimi.au.dk>
#
msgid ""
msgstr ""
"Project-Id-Version: Solfege 1.9.0\n"
"POT-Creation-Date: Sat Oct 11 21:56:10 2003\n"
"PO-Revision-Date: 2002-04-20 12:29+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: lesson-files/altered-1:8
msgid "Altered chords"
msgstr "Altererede akkorder"
#: lesson-files/altered-2:8
msgid "Altered chords & inversions"
msgstr "Altererede akkorder & inversioner"
#: lesson-files/barnesanger:8
msgid "Norwegian children songs"
msgstr "Norske brnesange"
#: lesson-files/besifring:10
msgid "simple tonal chords"
msgstr "simple tonale akkorder"
#: lesson-files/chord-dim-aug:7
msgid "diminished"
msgstr "formindsket"
#: lesson-files/chord-dim-aug:8
msgid "augmented"
msgstr "forstrret"
#: lesson-files/chord-min-major:7 lesson-files/chord-min-major-7:12
#: lesson-files/chord-min-major-7:13 lesson-files/chord-min-major-7:14
#: lesson-files/chord-min-major-close-open:45
#: lesson-files/chord-min-major-close-open:51
#: lesson-files/chord-min-major-close-open:57
#: lesson-files/chord-min-major-close-open:63
#: lesson-files/chord-min-major-close-open:69
#: lesson-files/chord-min-major-inv:11 lesson-files/chord-min-major-inv:12
#: lesson-files/chord-min-major-inv:13 lesson-files/chord-min-major-inv-not:10
#: lesson-files/chord-min-major-inv-not:11
#: lesson-files/chord-min-major-inv-not:12 lesson-files/durmoll:23
#: lesson-files/durmoll:33
msgid "major"
msgstr "dur"
#: lesson-files/chord-min-major:8 lesson-files/chord-min-major-7:15
#: lesson-files/chord-min-major-7:16 lesson-files/chord-min-major-7:17
#: lesson-files/chord-min-major-close-open:12
#: lesson-files/chord-min-major-close-open:18
#: lesson-files/chord-min-major-close-open:24
#: lesson-files/chord-min-major-close-open:30
#: lesson-files/chord-min-major-close-open:36
#: lesson-files/chord-min-major-inv:14 lesson-files/chord-min-major-inv:15
#: lesson-files/chord-min-major-inv:16 lesson-files/chord-min-major-inv-not:13
#: lesson-files/chord-min-major-inv-not:14
#: lesson-files/chord-min-major-inv-not:15 lesson-files/durmoll:18
#: lesson-files/durmoll:28
msgid "minor"
msgstr "mol"
#: lesson-files/chord-min-major-7:9
#, fuzzy
msgid "Major, minor, dominant seventh with inversions"
msgstr "Dur, mol og septim med omvendinger"
#: lesson-files/chord-min-major-close-open:9
msgid "minor/major in close and open position"
msgstr "dur/mol i tt og spredt leje"
#: lesson-files/diatonic-1:8
msgid "Diatonic chords"
msgstr "Diatoniske akkorder"
#: lesson-files/diatonic-2:8
msgid "Diatonic chords & inversions"
msgstr "Diatoniske akkorder & omvendinger"
#: lesson-files/durmoll:7
msgid "Is the song played major or minor"
msgstr "Er sangen i dur eller mol"
#: lesson-files/harmonic-intervals:7
msgid "Practise harmonic intervals from second to decim"
msgstr "Trn harmoniske intervaller fra terts til desim"
#: lesson-files/harmonic-intervals:20 src/const.py:90
msgid "minor second"
msgstr "lille sekund"
#: lesson-files/harmonic-intervals:23 src/const.py:90
msgid "major second"
msgstr "stor sekund"
#: lesson-files/harmonic-intervals:26 src/const.py:91
msgid "minor third"
msgstr "lille terts"
#: lesson-files/harmonic-intervals:29 src/const.py:91
msgid "major third"
msgstr "stor terts"
#: lesson-files/harmonic-intervals:32 src/const.py:91
msgid "fourth"
msgstr "ren kvart"
#: lesson-files/harmonic-intervals:35
msgid "augmented fourth"
msgstr "tritonus"
#: lesson-files/harmonic-intervals:38 src/const.py:92
msgid "perfect fifth"
msgstr "ren kvint"
#: lesson-files/harmonic-intervals:41 src/const.py:93
msgid "minor sixth"
msgstr "lille sekst"
#: lesson-files/harmonic-intervals:44 src/const.py:93
msgid "major sixth"
msgstr "stor sekst"
#: lesson-files/harmonic-intervals:47 src/const.py:94
msgid "minor seventh"
msgstr "lille septim"
#: lesson-files/harmonic-intervals:50 src/const.py:94
msgid "major seventh"
msgstr "stor septim"
#: lesson-files/harmonic-intervals:53 src/const.py:95
msgid "perfect octave"
msgstr "ren oktav"
#: lesson-files/harmonic-intervals:56 src/const.py:96
msgid "minor ninth"
msgstr "lille none"
#: lesson-files/harmonic-intervals:59 src/const.py:96
msgid "major ninth"
msgstr "stor none"
#: lesson-files/harmonic-intervals:62 src/const.py:97
msgid "minor decim"
msgstr "lille decim"
#: lesson-files/harmonic-intervals:65 src/const.py:97
msgid "major decim"
msgstr "stor decim"
#: lesson-files/scales:19 src/identifyscale.py:27
msgid "Ionian"
msgstr "Ionisk"
#: lesson-files/scales:23 src/identifyscale.py:29
msgid "Dorian"
msgstr "Dorisk"
#: lesson-files/scales:27 src/identifyscale.py:31
msgid "Phrygian"
msgstr "Frygisk"
#: lesson-files/scales:31 src/identifyscale.py:33
msgid "Lydian"
msgstr "Lydisk"
#: lesson-files/scales:35 src/identifyscale.py:35
msgid "Mixolydian"
msgstr "Miksolydisk"
#: lesson-files/scales:39 src/identifyscale.py:37
msgid "Aeolian"
msgstr "olisk"
#: lesson-files/scales:43 src/identifyscale.py:39
msgid "Locrian"
msgstr "Lokrisk"
#: lesson-files/scales:47 src/identifyscale.py:41
msgid "Harmonic minor"
msgstr "Harmonisk mol"
#: lesson-files/scales:51 src/identifyscale.py:43
msgid "Melodic minor"
msgstr "Melodisk mol"
#: mpd/musicalpitch.py:91
msgid "notename|c"
msgstr ""
#: mpd/musicalpitch.py:92
msgid "notename|cb"
msgstr ""
#: mpd/musicalpitch.py:93
msgid "notename|cbb"
msgstr ""
#: mpd/musicalpitch.py:94
msgid "notename|c#"
msgstr ""
#: mpd/musicalpitch.py:95
msgid "notename|cx"
msgstr ""
#: mpd/musicalpitch.py:96
msgid "notename|d"
msgstr ""
#: mpd/musicalpitch.py:97
msgid "notename|db"
msgstr ""
#: mpd/musicalpitch.py:98
msgid "notename|dbb"
msgstr ""
#: mpd/musicalpitch.py:99
msgid "notename|d#"
msgstr ""
#: mpd/musicalpitch.py:100
msgid "notename|dx"
msgstr ""
#: mpd/musicalpitch.py:101
msgid "notename|e"
msgstr ""
#: mpd/musicalpitch.py:102
msgid "notename|eb"
msgstr ""
#: mpd/musicalpitch.py:103
msgid "notename|ebb"
msgstr ""
#: mpd/musicalpitch.py:104
msgid "notename|e#"
msgstr ""
#: mpd/musicalpitch.py:105
msgid "notename|ex"
msgstr ""
#: mpd/musicalpitch.py:106
msgid "notename|f"
msgstr ""
#: mpd/musicalpitch.py:107
msgid "notename|fb"
msgstr ""
#: mpd/musicalpitch.py:108
msgid "notename|fbb"
msgstr ""
#: mpd/musicalpitch.py:109
msgid "notename|f#"
msgstr ""
#: mpd/musicalpitch.py:110
msgid "notename|fx"
msgstr ""
#: mpd/musicalpitch.py:111
msgid "notename|g"
msgstr ""
#: mpd/musicalpitch.py:112
msgid "notename|gb"
msgstr ""
#: mpd/musicalpitch.py:113
msgid "notename|gbb"
msgstr ""
#: mpd/musicalpitch.py:114
msgid "notename|g#"
msgstr ""
#: mpd/musicalpitch.py:115
msgid "notename|gx"
msgstr ""
#: mpd/musicalpitch.py:116
msgid "notename|a"
msgstr ""
#: mpd/musicalpitch.py:117
msgid "notename|ab"
msgstr ""
#: mpd/musicalpitch.py:118
msgid "notename|abb"
msgstr ""
#: mpd/musicalpitch.py:119
msgid "notename|a#"
msgstr ""
#: mpd/musicalpitch.py:120
msgid "notename|ax"
msgstr ""
#: mpd/musicalpitch.py:121
msgid "notename|b"
msgstr ""
#: mpd/musicalpitch.py:122
msgid "notename|bb"
msgstr ""
#: mpd/musicalpitch.py:123
msgid "notename|bbb"
msgstr ""
#: mpd/musicalpitch.py:124
msgid "notename|b#"
msgstr ""
#: mpd/musicalpitch.py:125
msgid "notename|bx"
msgstr ""
#: mpd/musicalpitch.py:284
msgid "notenameformat|%(notename)s"
msgstr ""
#: mpd/musicalpitch.py:286
msgid "notenameformat|%(notename)s%(oct)s"
msgstr ""
#: online-docs/create_toc.py:55
msgid ""
"Because not all documents has been\n"
"<a href=\"translating-solfege.html\">translated</a>\n"
"to LANGUAGE yet, the links go to the english version for those\n"
"untranslated sections."
msgstr ""
#: online-docs/create_toc.py:124
msgid "GNU Solfege"
msgstr "GNU Solfege"
#: online-docs/create_toc.py:125
msgid "Table of contents"
msgstr ""
#: online-docs/create_toc.py:137
msgid "Exercises"
msgstr "velser"
#: online-docs/create_toc.py:145
msgid "Extending and translating Solfege"
msgstr ""
#: src/abstract.py:260 src/configwindow.py:200
msgid "Practise"
msgstr "Trn"
#: src/abstract.py:261
msgid "Config"
msgstr "Konfiguration"
#: src/abstract.py:283 src/identifybpm.py:137
msgid "Statistics"
msgstr "Statistik"
#: src/abstract.py:303
msgid "Delay (seconds):"
msgstr "Forsinkelse (sekunder):"
#: src/abstract.py:309
msgid "_New question automatically."
msgstr "_Nyt sprsml automatisk"
#: src/abstract.py:330 src/singinterval.py:83
#, fuzzy
msgid "_New interval"
msgstr "Nyt interval"
#: src/abstract.py:332 src/chord.py:222 src/chordvoicing.py:162
#: src/compareintervals.py:144 src/harmonicprogressiondictation.py:62
#: src/idbyname.py:91 src/identifyscale.py:154 src/idtone.py:127
#: src/rhythm.py:262
#, fuzzy
msgid "_Repeat"
msgstr "Gentag"
#: src/chord.py:192
msgid "Chord type"
msgstr "Akkordtype"
#: src/chord.py:200
msgid "Inversion"
msgstr "Omvending"
#: src/chord.py:208
msgid "Toptone"
msgstr "verste node"
#: src/chord.py:220 src/chordvoicing.py:160
#, fuzzy
msgid "_New chord"
msgstr "Ny akkord"
#: src/chord.py:225 src/chordvoicing.py:164
#, fuzzy
msgid "Repeat _arpeggio"
msgstr "Gentag arpeggio"
#: src/chord.py:227 src/chordvoicing.py:165 src/compareintervals.py:147
#: src/harmonicinterval.py:144 src/harmonicprogressiondictation.py:71
#: src/idbyname.py:93 src/identifybpm.py:128 src/identifyscale.py:160
#: src/idtone.py:130 src/melodicinterval.py:60 src/rhythm.py:264
#, fuzzy
msgid "_Give up"
msgstr "Giv op"
#: src/chord.py:258 src/chord.py:393
msgid "root position"
msgstr "grundstilling"
#: src/chord.py:260 src/chord.py:395
msgid "%i. inversion"
msgstr "%i. omvending"
#: src/chord.py:289 src/chord.py:307 src/chord.py:323 src/chordvoicing.py:268
#: src/compareintervals.py:251 src/harmonicinterval.py:237
#: src/harmonicprogressiondictation.py:106 src/idbyname.py:158
#: src/identifyscale.py:276 src/idtone.py:213 src/melodicinterval.py:161
msgid "Correct"
msgstr "Korrekt"
#: src/chord.py:296 src/chord.py:312 src/chord.py:328 src/chordvoicing.py:256
#: src/chordvoicing.py:275 src/compareintervals.py:257
#: src/harmonicinterval.py:242 src/harmonicprogressiondictation.py:111
#: src/idbyname.py:164 src/identifybpm.py:184 src/identifyscale.py:283
#: src/idtone.py:217 src/melodicinterval.py:166
msgid "Wrong"
msgstr "Forkert"
#: src/chordvoicing.py:132 src/chordvoicing.py:202
msgid "Identify chord type"
msgstr ""
#: src/chordvoicing.py:141
msgid "Click to stack in the correct order"
msgstr ""
#: src/chordvoicing.py:205 src/compareintervals.py:310
#: src/harmonicinterval.py:283 src/identifyscale.py:243
#: src/melodicinterval.py:196 src/rhythm.py:386
msgid "You have to solve this question first."
msgstr "Du skal besvare dette sprgsml frst."
#: src/chordvoicing.py:248 src/chordvoicing.py:309
#, fuzzy
msgid "Click 'New chord' to begin."
msgstr "Klik p 'Ny' for at begynde."
#: src/chordvoicing.py:252
msgid "Correct, now stack the tones"
msgstr ""
#: src/chordvoicing.py:258
msgid "Type is already solved, now specify voicing"
msgstr ""
#: src/compareintervals.py:134
#, fuzzy
msgid ""
"F_irst interval\n"
"is largest"
msgstr ""
"Det frste\n"
"interval er strst"
#: src/compareintervals.py:137
#, fuzzy
msgid ""
"The intervals\n"
"are _equal"
msgstr ""
"Intervallerne er\n"
"lige store"
#: src/compareintervals.py:140
#, fuzzy
msgid ""
"_Last interval\n"
"is largest"
msgstr ""
"Det sidste\n"
"interval er strst"
#: src/compareintervals.py:143 src/harmonicprogressiondictation.py:61
#: src/idbyname.py:90 src/rhythm.py:261 src/singchord.py:78
#: src/twelvetone.py:68
#, fuzzy
msgid "_New"
msgstr "Ny"
#: src/compareintervals.py:164
msgid "Harmonic"
msgstr "Harmonisk"
#: src/compareintervals.py:167
msgid "Melodic up"
msgstr "Melodisk op"
#: src/compareintervals.py:170
msgid "Melodic down"
msgstr "Melodisk ned"
#: src/compareintervals.py:173
msgid "Melodic up/down"
msgstr "Melodisk op/ned"
#: src/compareintervals.py:179
msgid "First interval:"
msgstr "Frste interval:"
#: src/compareintervals.py:190
msgid "Last interval:"
msgstr "Sidste interval:"
#: src/compareintervals.py:242 src/harmonicinterval.py:232
#: src/harmonicprogressiondictation.py:101 src/idbyname.py:153
#: src/identifyscale.py:271 src/idtone.py:208
msgid "Correct, but you have already solved this question"
msgstr "Korrekt, men du har allerede lst dette sprgsml"
#: src/compareintervals.py:244 src/harmonicinterval.py:234
#: src/harmonicprogressiondictation.py:103 src/idbyname.py:155
#: src/identifyscale.py:273 src/idtone.py:210
msgid "Wrong, but you have already solved this question"
msgstr "Forkert, men du har allerede lst dette sprgsml"
#: src/compareintervals.py:269
msgid "Last interval is largest"
msgstr "Det sidste interval er strst"
#: src/compareintervals.py:271
msgid "The intervals are equal"
msgstr "Intervallerne er lige store"
#: src/compareintervals.py:273
msgid "First interval is largest"
msgstr "Det frste interval er strst"
#: src/compareintervals.py:274 src/harmonicinterval.py:209 src/idbyname.py:141
#: src/identifyscale.py:222 src/idtone.py:237 src/melodicinterval.py:116
msgid "The answer is: %s"
msgstr "Svaret er: %s"
#: src/compareintervals.py:313
msgid "You have to configure the exercise properly"
msgstr "Du skal konfigurere denne velse ordentligt."
#: src/compareintervals.py:316 src/idbyname.py:149 src/idbyname.py:200
#: src/rhythm.py:350 src/rhythm.py:395
msgid "Click 'New' to begin."
msgstr "Klik p 'Ny' for at begynde."
#: src/configwindow.py:43
msgid "Midi stuff"
msgstr "Midi"
#: src/configwindow.py:50 src/identifyscale.py:188
msgid "Slow bpm:"
msgstr "Slag pr minut, langsomt:"
#: src/configwindow.py:52 src/identifyscale.py:190
msgid "Default bpm:"
msgstr "Slag per minut:"
#: src/configwindow.py:54
msgid "Arpeggio bpm:"
msgstr "Slag per minut, arpeggio:"
#: src/configwindow.py:67
msgid "Preferred instrument"
msgstr "Foretrukket instrument"
#: src/configwindow.py:76
msgid "User"
msgstr "Bruger"
#: src/configwindow.py:81
msgid "Highest note user can sing:"
msgstr "Hjeste tone brugeren kan synge:"
#: src/configwindow.py:83
msgid "Lowest note user can sing:"
msgstr "Laveste tone brugeren kan synge:"
#: src/configwindow.py:99
msgid "Male"
msgstr "Mand"
#: src/configwindow.py:102
msgid "Female"
msgstr "Kvinde"
#: src/configwindow.py:112
msgid "Gui"
msgstr "Brugergrnseflade"
#: src/configwindow.py:117
msgid "Main toolbar"
msgstr "Hovedvrktjslinje"
#: src/configwindow.py:123 src/configwindow.py:148
msgid "Icons"
msgstr "Ikoner"
#: src/configwindow.py:125 src/configwindow.py:150
msgid "Text"
msgstr "Tekst"
#: src/configwindow.py:127 src/configwindow.py:152
msgid "Both"
msgstr "Begge"
#: src/configwindow.py:132 src/configwindow.py:157
msgid "Show"
msgstr "Vis"
#: src/configwindow.py:134 src/configwindow.py:159
msgid "Hide"
msgstr "Skjul"
#: src/configwindow.py:142
msgid "Navigation toolbar"
msgstr "Navigationsvrktjslinje"
#: src/configwindow.py:168
msgid "User resizeable main window"
msgstr "Bruger kan forandre vinduesstrrelse"
#: src/configwindow.py:181
msgid "Web browser:"
msgstr "Weblser:"
#: src/configwindow.py:189
msgid "Mail program:"
msgstr "Epostprogram:"
#: src/configwindow.py:202
msgid "Not allow new question before the old is solved"
msgstr "Tillad ikke nyt sprgsml fr det gamle er besvaret"
#: src/configwindow.py:206
msgid "Repeat question if the answer was wrong"
msgstr "Gentag sprgsmlet hvis svaret er forkert"
#: src/configwindow.py:234 src/configwindow.py:294
msgid "Sound setup"
msgstr "Lydopstning"
#: src/configwindow.py:235
msgid ""
"Solfege has two ways to play music. It can use /dev/music or an external "
"midi player program. The preferred way is to use /dev/music since this "
"offers features that will be utilized more in later versions of this program."
msgstr ""
"Solfege har to mder at spille musik. Programmet kan bruge /dev/music eller "
"et eksternt program til at spille midifiler. Det anbefales at bruge /dev/"
"music fordi dette gir muligheder som kommer til at blive brugt mere i senere "
"versioner af programmet."
#: src/configwindow.py:240 src/configwindow.py:300
msgid "No sound"
msgstr "Ingen lyd"
#: src/configwindow.py:244
msgid "Use device"
msgstr "Brug enhed"
#: src/configwindow.py:259 src/configwindow.py:313
msgid "Use external midiplayer"
msgstr "Brug eksternt midiprogram"
#: src/configwindow.py:276
msgid "My sound card is Sound Blaster AWE32, AWE64 or pnp32"
msgstr "Mit lydkort er et Sound Nlaster AWE32, AWE64 eller pnp32"
#: src/configwindow.py:282 src/configwindow.py:329
msgid "Sound test. Hit 'Apply' before testing."
msgstr "Lydprve. Tryk 'Andvend' fr afprvning."
#: src/configwindow.py:295
#, fuzzy
msgid ""
"Solfege has two ways to play music. It is recommended to use Windows "
"multimedia output. An external midiplayer is only useful if your soundcard "
"lack a hardware synth, and you have to use a program like timidity to play "
"the music."
msgstr ""
"Solfege har to mder at spille musik. Det anbefales at bruge Windows "
"multimedieuddata. Understttelse for ekstern midiafspiller er kun med fordi "
"dette var den eneste mde til at f lyd p Windows i tidligere versioner af "
"dette program."
#: src/configwindow.py:304
msgid "Windows multimedia output, synth number:"
msgstr "Windows multimedieuddata, synth nummer:"
#: src/const.py:54
msgid "_Chords"
msgstr "_Akkorder"
#: src/const.py:55
msgid "Chord voicing"
msgstr ""
#: src/const.py:56
msgid "_Harmonic intervals"
msgstr "_Harmonisk interval"
#: src/const.py:58
msgid "_Melodic intervals"
msgstr "_Melodisk interval"
#: src/const.py:60
msgid "_Sing interval"
msgstr "_Syng interval"
#: src/const.py:61
msgid "_Identify scale"
msgstr "_Identificr skala"
#: src/const.py:62
msgid "Identify by _name"
msgstr "Identificr via _navn"
#: src/const.py:63
msgid "_Dictation"
msgstr "_Diktat"
#: src/const.py:64
msgid "Harmonic _progression dictation"
msgstr "Diktat med harmoniske _progressioner"
#: src/const.py:66
msgid "Sing _twelvetone"
msgstr "Syng _tolvtonerkke"
#: src/const.py:67
msgid "Id_entify tone"
msgstr "Id_entificr tone"
#: src/const.py:68
msgid "C_ompare intervals"
msgstr "Sammen_lign intervaller"
#: src/const.py:70
msgid "Sin_g chord"
msgstr "Syn_g akkord"
#: src/const.py:72
msgid "Rh_ythm"
msgstr "R_ytme"
#: src/const.py:90
msgid "unison"
msgstr "unison"
#: src/const.py:92
msgid "diminished fifth"
msgstr "formindsket kvint"
#: src/const.py:99
msgid "interval|u"
msgstr "u"
#: src/const.py:100
msgid "interval|M2"
msgstr "s2"
#: src/const.py:100
msgid "interval|m2"
msgstr "l2"
#: src/const.py:101
msgid "interval|M3"
msgstr "s3"
#: src/const.py:101
msgid "interval|m3"
msgstr "l3"
#: src/const.py:102
msgid "interval|4"
msgstr "4"
#: src/const.py:102
msgid "interval|d5"
msgstr "fm5"
#: src/const.py:103
msgid "interval|5"
msgstr "5"
#: src/const.py:104
msgid "interval|M6"
msgstr "s6"
#: src/const.py:104
msgid "interval|m6"
msgstr "l6"
#: src/const.py:105
msgid "interval|M7"
msgstr "s7"
#: src/const.py:105
msgid "interval|m7"
msgstr "l7"
#: src/const.py:106
msgid "interval|8"
msgstr "8"
#: src/const.py:107
msgid "interval|M9"
msgstr "s9"
#: src/const.py:107
msgid "interval|m9"
msgstr "l9"
#: src/const.py:108
msgid "interval|M10"
msgstr "s10"
#: src/const.py:108
msgid "interval|m10"
msgstr "l10"
#: src/dictation.py:75
#, fuzzy
msgid "_Play the whole music"
msgstr "Spil hele musikken"
#: src/dictation.py:77 src/harmonicprogressiondictation.py:69
#: src/idbyname.py:96
#, fuzzy
msgid "_Show"
msgstr "Vis"
#: src/harmonicinterval.py:140
#, fuzzy
msgid "Repeat _melodic"
msgstr "Gentag melodisk"
#: src/harmonicinterval.py:149
msgid "Ask for these intervals"
msgstr "Sprg efter disse intervaller"
#: src/harmonicinterval.py:163 src/melodicinterval.py:71
msgid "Try to keep question with range from"
msgstr "Forsg at holde sprgsmlet i omrdet fra"
#: src/harmonicinterval.py:167 src/melodicinterval.py:75
msgid "to"
msgstr "til"
#: src/harmonicinterval.py:179 src/melodicinterval.py:86
msgid "Input interface:"
msgstr "Inddatagrnseflade:"
#: src/harmonicinterval.py:193 src/melodicinterval.py:100
msgid "_Disable unused buttons"
msgstr ""
#: src/harmonicinterval.py:205
msgid "Harmonic interval"
msgstr "Harmonisk interval"
#: src/harmonicinterval.py:224 src/melodicinterval.py:149
msgid "Ignoring intervals greater than decim."
msgstr "Ignorr intervaller som er strre end en decim."
#: src/harmonicinterval.py:228 src/harmonicinterval.py:297
#: src/melodicinterval.py:135 src/melodicinterval.py:201
msgid "Click 'New interval' to begin."
msgstr "Tryk 'Nyt interval' for at begynde."
#: src/harmonicinterval.py:289
msgid "You have to select some intervals to practise."
msgstr "Du skal vlge nogen intervaller at trne p."
#: src/harmonicprogressiondictation.py:65
#, fuzzy
msgid "Guess _answer"
msgstr "Gt svar"
#: src/harmonicprogressiondictation.py:93
msgid "Harmonic progression dictation"
msgstr "Diktat med harmonisk progression"
#: src/harmonicprogressiondictation.py:175
msgid "Statistics for the lesson file '%s'"
msgstr "Statistik for lektionsfil '%s'"
#: src/idbyname.py:114
msgid "Identify by name"
msgstr "Identificr via navn"
#: src/identifybpm.py:127
#, fuzzy
msgid "_New tempo"
msgstr "Nyt tempo"
#: src/identifybpm.py:176
msgid "Click 'New tempo' to begin."
msgstr "Klik p 'Nyt tempo' for at begynde."
#: src/identifybpm.py:179
msgid "Correct, it is %i"
msgstr "Korrekt, det er %i"
#: src/identifyscale.py:152
#, fuzzy
msgid "_New scale"
msgstr "Ny skala"
#: src/identifyscale.py:157
#, fuzzy
msgid "Repeat s_lowly"
msgstr "Gentag langsomt"
#: src/identifyscale.py:168
msgid "Ask for these scales"
msgstr "Sprg efter disse skalaer"
#: src/identifyscale.py:184
msgid "Override global settings"
msgstr "Tilsidest globale indstillinger"
#: src/identifyscale.py:208
msgid "Identify scale"
msgstr "Identificr skala"
#: src/identifyscale.py:236
msgid "You have to select some scales to practise."
msgstr "Du skal vlge nogen skalaer at trne p."
#: src/identifyscale.py:255 src/identifyscale.py:267
msgid "Click 'New scale' to begin."
msgstr "Klik p 'Ny skala' for at begynde."
#: src/idtone.py:100
msgid ""
"This exercise don't work without GNOME.\n"
"It can pretty easy be converted to use Pixmap instead\n"
"of GnomeCanvas, but I (tca) don't have time to do this\n"
"right now. But I can answer questions if needed."
msgstr ""
#: src/idtone.py:125
#, fuzzy
msgid "_New tone"
msgstr "Ny node"
#: src/idtone.py:139
msgid "Weight"
msgstr "Vgt"
#: src/idtone.py:162
msgid "Octave:"
msgstr "Oktav:"
#: src/idtone.py:170
msgid "When you guess wrong"
msgstr "Nr du gtter forkert"
#: src/idtone.py:175
msgid "Play warning sound"
msgstr "Spil lydsignal"
#: src/idtone.py:177
msgid "Only one chance to get the answer right"
msgstr "Kun en chance til at f rigtigt svar"
#: src/idtone.py:184
msgid "idtone"
msgstr "idtone"
#: src/idtone.py:190
msgid ""
"You have to select some tones practise. Do this on the config page by "
"setting the weight of tones to a value greater than zero."
msgstr ""
#: src/idtone.py:197
msgid "First tone is %s"
msgstr "Frste node er %s"
#: src/idtone.py:204 src/idtone.py:251
msgid "Click 'New tone' to begin."
msgstr "Klik p 'Ny node' for at begynde."
#: src/inputwidgets.py:183
msgid ""
"Minor\n"
"second"
msgstr ""
"Lille\n"
"sekund"
#: src/inputwidgets.py:184
msgid ""
"Major\n"
"second"
msgstr ""
"Stor\n"
"sekund"
#: src/inputwidgets.py:185
msgid ""
"Minor\n"
"third"
msgstr ""
"Lille\n"
"terts"
#: src/inputwidgets.py:186
msgid ""
"Major\n"
"third"
msgstr ""
"Stor\n"
"terts"
#: src/inputwidgets.py:187
msgid ""
"Perfect\n"
"fourth"
msgstr ""
"Ren\n"
"kvart"
#: src/inputwidgets.py:188
msgid ""
"Diminished\n"
"fifth"
msgstr ""
"Formindsket\n"
"kvint"
#: src/inputwidgets.py:189
msgid ""
"Perfect\n"
"fifth"
msgstr ""
"Ren\n"
"kvint"
#: src/inputwidgets.py:190
msgid ""
"Minor\n"
"sixth"
msgstr ""
"Lille\n"
"sekst"
#: src/inputwidgets.py:191
msgid ""
"Major\n"
"sixth"
msgstr ""
"Stor\n"
"sekst"
#: src/inputwidgets.py:192
msgid ""
"Minor\n"
"seventh"
msgstr ""
"Lille\n"
"septim"
#: src/inputwidgets.py:193
msgid ""
"Major\n"
"seventh"
msgstr ""
"Stor\n"
"septim"
#: src/inputwidgets.py:194
msgid ""
"Perfect\n"
"octave"
msgstr ""
"Ren\n"
"oktav"
#: src/inputwidgets.py:195
msgid ""
"Minor\n"
"ninth"
msgstr ""
"Lille\n"
"none"
#: src/inputwidgets.py:196
msgid ""
"Major\n"
"ninth"
msgstr ""
"Stor\n"
"none"
#: src/inputwidgets.py:197
msgid ""
"Minor\n"
"decim"
msgstr ""
"Lille\n"
"decim"
#: src/inputwidgets.py:198
msgid ""
"Major\n"
"decim"
msgstr ""
"Stor\n"
"decim"
#: src/inputwidgets.py:561 src/inputwidgets.py:566
msgid "Buttons"
msgstr "Knapper"
#: src/inputwidgets.py:561 src/inputwidgets.py:569
msgid "Piano"
msgstr "Piano"
#: src/inputwidgets.py:561 src/inputwidgets.py:577
msgid "Guitar"
msgstr "Guitar"
#: src/inputwidgets.py:561 src/inputwidgets.py:580
msgid "Bass"
msgstr "Bas"
#: src/inputwidgets.py:562 src/inputwidgets.py:583
msgid "5 string bass"
msgstr "5-strenget bas"
#: src/inputwidgets.py:562 src/inputwidgets.py:586
msgid "6 string bass"
msgstr "6-strenget bas"
#: src/inputwidgets.py:563 src/inputwidgets.py:571
msgid "Accordion B griff"
msgstr "Harmonika (svensk)"
#: src/inputwidgets.py:563 src/inputwidgets.py:573
msgid "Accordion C griff"
msgstr "Harmonika (norsk)"
#: src/inputwidgets.py:564 src/inputwidgets.py:575
msgid "Accordion (system used in Finland)"
msgstr "Harmonika (system brugt i Finland)"
#: src/instrumentselector.py:73
msgid "Velocity:"
msgstr "Hastighed:"
#: src/instrumentselector.py:126
msgid "_Change midi instrument for this exercise"
msgstr "_ndr midi-instrument for denne opgave"
#: src/instrumentselector.py:133
msgid "Highest instrument"
msgstr "Hjeste instrument"
#: src/instrumentselector.py:137
msgid "Middle instrument"
msgstr "Midterste instrument"
#: src/instrumentselector.py:142
msgid "Lowest instrument"
msgstr "Laveste instrument"
#: src/intervals.py:102
msgid "tonika"
msgstr "tonika"
#: src/mainwin.py:115
msgid "Starting GNU Solfege %s"
msgstr "Starter GNU Solfege %s"
#: src/mainwin.py:223
msgid "Close"
msgstr "Luk"
#: src/mainwin.py:265
msgid ""
"Failed to parse the music for question number %(idx)i in '%(lf)s':\n"
"%(ex)s"
msgstr ""
#: src/mainwin.py:272
msgid "SOLFEGETRANSLATORS"
msgstr "Keld Simonsen"
#: src/mainwin.py:278
msgid "GPL'ed eartraining."
msgstr "retrning i GPL"
#: src/mainwin.py:280
msgid "(toolbar icons)"
msgstr "(vrktjlinjeikoner)"
#: src/mainwin.py:281
msgid "(some lessonfiles)"
msgstr "(nogen lektionsfiler)"
#: src/mainwin.py:282
msgid "(sound code for the MS Windows port)"
msgstr "(lydkode for MS Windows-porten)"
#: src/mainwin.py:383
msgid "_File"
msgstr "_Fil"
#: src/mainwin.py:384
msgid "_View"
msgstr ""
#: src/mainwin.py:385
msgid "_Help"
msgstr "_Hjlp"
#: src/mainwin.py:415
#, fuzzy
msgid "Preferences window"
msgstr "Brugervalg"
#: src/mainwin.py:418
msgid "_Exit"
msgstr ""
#: src/mainwin.py:426
#, fuzzy
msgid "_Toolbar"
msgstr "Hovedvrktjslinje"
#: src/mainwin.py:434
#, fuzzy
msgid "_Navigation buttons"
msgstr "Navigationsvrktjslinje"
#: src/mainwin.py:443
msgid "_User resizeable main window"
msgstr "_Bruger kan forandre vinduesstrrelse"
#: src/mainwin.py:452
msgid "Help viewer zoom in"
msgstr ""
#: src/mainwin.py:455
msgid "Help viewer zoom out"
msgstr ""
#: src/mainwin.py:458
msgid "Help viewer zoom reset"
msgstr ""
#: src/mainwin.py:492
msgid "_Help on current exercise"
msgstr "_Hjlp til denne velse"
#: src/mainwin.py:497
msgid "_Welcome"
msgstr "_Velkommen"
#: src/mainwin.py:498
msgid "_All help files"
msgstr "_Alle hjlpefiler"
#: src/mainwin.py:499
msgid "All installed _lesson files"
msgstr "Alle installerede _lektionsfiler"
#: src/mainwin.py:501
msgid "_Copyright notice"
msgstr "_Ophavsret"
#: src/mainwin.py:502
msgid "C_redits"
msgstr "_Bidragsydere"
#: src/mainwin.py:503
msgid "_Mailinglists, web page etc."
msgstr "_Epostlister, websider etc."
#: src/mainwin.py:504
msgid "Reporting _bugs"
msgstr "Rapportr _fejl"
#: src/mainwin.py:513
msgid "_About"
msgstr "_Om"
#: src/melodicinterval.py:107
msgid "Melodic interval"
msgstr "Melodisk interval"
#: src/melodicinterval.py:146
msgid "You have already identified this interval"
msgstr "Du har allerede identificeret dette interval"
#: src/melodicinterval.py:182
msgid "The exercise has to be better configured."
msgstr "Denne velse skal vre bedre konfigureret."
#: src/multipleintervalconfigwidget.py:71
msgid "Number of intervals:"
msgstr "Antal intervaller:"
#: src/multipleintervalconfigwidget.py:78
msgid "Configure all intervals in this exercise like this"
msgstr "Konfigurer alle intervaller i denne opgave som dette"
#: src/multipleintervalconfigwidget.py:86
msgid "Togglebuttons is for interval number:"
msgstr "Togglebutton er for interval nummer:"
#: src/multipleintervalconfigwidget.py:96
msgid "Up:"
msgstr "Op:"
#: src/multipleintervalconfigwidget.py:112
msgid "Down:"
msgstr "Ned:"
#: src/multipleintervalconfigwidget.py:128
msgid "Reset to default values"
msgstr "Genstil til standardvrdier"
#: src/polyrhythm.py:79
msgid "Go"
msgstr "Kr"
#: src/polyrhythm.py:80
msgid "Stop"
msgstr "Stop"
#: src/rhythm.py:267
#, fuzzy
msgid "_Backspace"
msgstr "Baglns"
#: src/rhythm.py:274
msgid "Rhythms to use in question"
msgstr "Rytmer til at bruge i sprgsml"
#: src/rhythm.py:295
msgid "Number of beats in question:"
msgstr "Antal slag i sprgsmlet:"
#: src/rhythm.py:304
msgid "Count in before question:"
msgstr "Optlling fr sprgsmlet:"
#: src/rhythm.py:321
msgid "Don't start the question with a rest"
msgstr "start ikke sprgsmlet med en pause"
#: src/rhythm.py:324
msgid "Beats per minute:"
msgstr "Slag per minut:"
#: src/rhythm.py:390
msgid "You have to configure this exercise properly"
msgstr "Du skal konfigurere denne velse ordentligt."
#: src/selectlessonfilewidget.py:29
msgid "Lesson file"
msgstr "Lektionsfil"
#: src/selectlessonfilewidget.py:49
msgid "Title"
msgstr "Titel"
#: src/selectlessonfilewidget.py:52
msgid "Details"
msgstr "Detaljer"
#: src/singchord.py:79
#, fuzzy
msgid "440h_z"
msgstr "440 Hz"
#: src/singchord.py:80 src/singinterval.py:90
#, fuzzy
msgid "_Play answer"
msgstr "Afspil svar"
#: src/singinterval.py:79
#, fuzzy
msgid ""
"_New interval,\n"
"last was correct"
msgstr ""
"Nyt interval,\n"
"sidste var ok"
#: src/singinterval.py:81
#, fuzzy
msgid ""
"New interval,\n"
"last was _wrong"
msgstr ""
"Nyt interval,\n"
"sidste var forkert"
#: src/singinterval.py:86
#, fuzzy
msgid "_Repeat first tone"
msgstr "Repeter frste tone"
#: src/singinterval.py:94
#, fuzzy
msgid "Play _last tone"
msgstr "Spil sidste tone"
#: src/singinterval.py:109
msgid "Sing interval"
msgstr "Syng interval"
#: src/singinterval.py:127
msgid ""
"The exercise has to be better configured.\n"
"Click 'Reset to default values' on the config\n"
"page if you don't know how to do this."
msgstr ""
"Denne velse skal konfigureres bedre.\n"
"Klik 'Genstil til standardvrdier' p\n"
"siden for konfiguration hvis du ikke vd\n"
"hvordan du kan gre dette."
#: src/statisticsviewer.py:66 src/statisticsviewer.py:175
msgid "Session"
msgstr "Session"
#: src/statisticsviewer.py:66 src/statisticsviewer.py:181
msgid "Today"
msgstr "I dag"
#: src/statisticsviewer.py:67 src/statisticsviewer.py:187
msgid "Last 7 days"
msgstr "Sidste 7 dage"
#: src/statisticsviewer.py:67 src/statisticsviewer.py:193
msgid "Total"
msgstr "Totalt"
#: src/statisticsviewer.py:76
msgid "Percent"
msgstr "Procent"
#: src/statisticsviewer.py:77
msgid "Count"
msgstr "Antal"
#: src/tracebackwindow.py:26
msgid "GNU Solfege message window"
msgstr ""
#: src/tracebackwindow.py:29
msgid ""
"Please report to bug-solfege@gnu.org if the content of the message make you "
"believe you have found a bug."
msgstr ""
#: src/twelvetone.py:69
#, fuzzy
msgid "_Play first note"
msgstr "Spil frste tone"
#: src/twelvetone.py:71
#, fuzzy
msgid "Play _last note"
msgstr "Spil sidste tone"
#: src/twelvetone.py:73
#, fuzzy
msgid "Play _all"
msgstr "Spil alt"
#: src/utils.py:44
msgid "up"
msgstr "op"
#: src/utils.py:46
msgid "down"
msgstr "ned"
#, fuzzy
#~ msgid "dominant seventh"
#~ msgstr "lille septim"
#~ msgid "m7 and M7 in inversions"
#~ msgstr "mol 7 og maj 7 i omvendinger"
#~ msgid "Major, minor, dim and aug in root position"
#~ msgstr "Dur, mol, formindsket og forstrret i grundstilling"
#~ msgid "Major and minor with inversions"
#~ msgstr "Dur og mol med omvendinger"
#~ msgid "Program error"
#~ msgstr "Programfejl"
#~ msgid ""
#~ "Hm... *something* is wrong. You should report this to bug-solfege@gnu.org "
#~ "or solfege-devel@lists.sourceforge.net if you think this is a bug in "
#~ "Solfege."
#~ msgstr ""
#~ "Et eller andet er forkert. Du br rapportere dette til gnu-solfege@gnu."
#~ "org eller solfege-devel@lists.sourceforge.net hvis du tror dette er en "
#~ "fejl i Solfege."
#~ msgid "Authors:"
#~ msgstr "Forfattere:"
#~ msgid "Repeat chord"
#~ msgstr "Gentag akkord"
#~ msgid "Show development menu"
#~ msgstr "Vis udviklingsmenu"
#~ msgid "Show answer"
#~ msgstr "Vis svar"
#~ msgid "Repeat scale"
#~ msgstr "Gentag skala"
#, fuzzy
#~ msgid "Developer docs"
#~ msgstr "_Udvikling"
#~ msgid "Apply"
#~ msgstr "Brug"
#~ msgid "Quit"
#~ msgstr "Afslut"
#~ msgid "About"
#~ msgstr "Om"
#~ msgid "Preferences"
#~ msgstr "Brugervalg"
#~ msgid "Help"
#~ msgstr "Hjlp"
#~ msgid "Ok"
#~ msgstr "Ok"
#, fuzzy
#~ msgid "http://www.solfege.org"
#~ msgstr "Ny version er tilgngelig p http://www.solfege.org"
#~ msgid "septim"
#~ msgstr "septim"
#~ msgid "Enable"
#~ msgstr "Aktivr"
#~ msgid "This exercise don't work without GNOME."
#~ msgstr "Denne velse virker ikke uden GNOME"
#~ msgid ""
#~ "This menu contains\n"
#~ "mostly useless stuff"
#~ msgstr ""
#~ "Denne menu indeholder\n"
#~ "kun ubrugelige ting"
#~ msgid "_Tempo"
#~ msgstr "_Tempo"
#~ msgid "Interval"
#~ msgstr "Interval"
#~ msgid "Rhythm"
#~ msgstr "Rytme"
#~ msgid "Tuner"
#~ msgstr "Tuner"
#~ msgid "Back"
#~ msgstr "Tilbage"
#~ msgid "Forward"
#~ msgstr "Frem"
#~ msgid ""
#~ "FIXME for windows. Solfege has two ways to play music. It can use /dev/"
#~ "music or an external midi player program. The preferred way is to use /"
#~ "dev/music since this offers features that will be utilized more in later "
#~ "versions of this program."
#~ msgstr ""
#~ "Solfege har to mder at spille musik. Programmet kan bruge /dev/music "
#~ "eller et eksternt program til at spille midifiler. Det anbefales at "
#~ "bruge /dev/music fordi dette giver muligheder som kommer til at blive "
#~ "brugt mere i senere versioner af programmet."
#~ msgid "Wrong, but hou have already solved this question"
#~ msgstr "Forkert, men du har allerede lst dette sprgsml"
#~ msgid "Start"
#~ msgstr "Start"
#~ msgid "Repeat question"
#~ msgstr "Repeter sprgsmlet"
#~ msgid "Click on 'Start' to begin."
#~ msgstr "Klik p 'Start' for at begynde."
|