diff -urN soundtracker-0.6.3/AUTHORS soundtracker-0.6.4/AUTHORS --- soundtracker-0.6.3/AUTHORS Wed Jan 3 14:46:41 2001 +++ soundtracker-0.6.4/AUTHORS Wed Jul 25 16:26:17 2001 @@ -70,6 +70,8 @@ (Win32 port) Felix Bohmann (borrowed me his SGI O2 for the IRIX port) +Aki Kemppainen + (reported various GUI bugs) Translations @@ -93,3 +95,5 @@ (fr) Matej Erman (sl) +Xosé Anxo Pereira Torreiro + (gl) diff -urN soundtracker-0.6.3/ChangeLog soundtracker-0.6.4/ChangeLog --- soundtracker-0.6.3/ChangeLog Thu May 24 20:18:59 2001 +++ soundtracker-0.6.4/ChangeLog Sun Aug 12 11:39:34 2001 @@ -1,3 +1,47 @@ +2001-08-12 Michael Krause + + * Released v0.6.4 + + * app/clavier.c (clavier_init): If "5x8" font can't be found, use + "fixed". + + * Added 'config.guess' and 'config.sub' files from automake + distribution (reported by Wilbern Cobb ). + +2001-08-04 Michael Krause + + * app/drivers/oss-input.c: Made "/dev/dsp" configurable. + (oss_release): Only remove polltag if polltag != 0. Fixes a glib + warning. + + * app/audioconfig.c (audioconfig_clist_select): When a different + driver is selected, don't just leave the default settings, but + load the settings from disk if there are saved settings. + +2001-07-31 Michael Krause + + * app/drivers/oss-output.c: Made "/dev/dsp" configurable. + +2001-07-25 Michael Krause + + * app/sample-editor.c (sample_editor_init_sample): If instrument + is initialized, initialize sample map with current sample number, + too. + + * app/tips-dialog.c: Added tip "Is your cursor trapped in a number + entry field? Just press Return or Tab to free yourself!". + + * soundtracker.spec: Disable ALSA when building an RPM. + + * po: Added gl.po by Xosé Anxo Pereira Torreiro + . + +2001-06-15 Michael Krause + + * app/main.c (main): On Linux, we use setresuid()/setresgid() + instead of seteuid()/setegid() in order to make gtk+-1.2.10 happy. + Otherwise, SoundTracker doesn't run if installed suid-root. + 2001-05-24 Michael Krause * Released v0.6.3 diff -urN soundtracker-0.6.3/FAQ soundtracker-0.6.4/FAQ --- soundtracker-0.6.3/FAQ Tue Aug 15 10:45:18 2000 +++ soundtracker-0.6.4/FAQ Wed Jul 25 16:22:56 2001 @@ -84,3 +84,13 @@ used to initialize the player at the beginning of the song! Of course you can also put two Fxx commands into the first pattern, in that case those two buttons get useless of course. + +------------------------------------------------------------------------ + +QQQQ: When I use the mouse to cycle the current song position during +playback and when I press 'Ctrl' before releasing the mouse button, +the spin button keeps cycling, which is rather unintended behaviour +:-) + +a: This is gtk+ bug #56248. A status report is available under +http://bugzilla.gnome.org/show_bug.cgi?id=56248 diff -urN soundtracker-0.6.3/INSTALL soundtracker-0.6.4/INSTALL --- soundtracker-0.6.3/INSTALL Wed Jan 3 14:11:31 2001 +++ soundtracker-0.6.4/INSTALL Wed Jul 25 16:09:16 2001 @@ -40,6 +40,10 @@ gtk+-1.2.1 and older versions have a bug which makes the GUI freeze as soon as you click into the menu bar. +The ALSA driver supports only the v0.4.x and v0.5.x architectures of +ALSA. For later versions, please use the OSS emulation included with +ALSA, and the standard OSS driver from SoundTracker. + FOR LIBC5 SYSTEMS ================== diff -urN soundtracker-0.6.3/Makefile.in soundtracker-0.6.4/Makefile.in --- soundtracker-0.6.3/Makefile.in Thu May 24 20:26:56 2001 +++ soundtracker-0.6.4/Makefile.in Sun Aug 12 12:07:15 2001 @@ -109,7 +109,8 @@ DIST_COMMON = README ./stamp-h.in ABOUT-NLS AUTHORS COPYING ChangeLog \ INSTALL Makefile.am Makefile.in NEWS TODO acconfig.h aclocal.m4 \ -config.h.in configure configure.in install-sh missing mkinstalldirs +config.guess config.h.in config.sub configure configure.in install-sh \ +missing mkinstalldirs DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) diff -urN soundtracker-0.6.3/NEWS soundtracker-0.6.4/NEWS --- soundtracker-0.6.3/NEWS Thu May 24 20:18:58 2001 +++ soundtracker-0.6.4/NEWS Sun Aug 12 11:40:26 2001 @@ -4,13 +4,22 @@ responsible for having coded a particular feature (full names in AUTHORS file). +What is new in soundtracker-0.6.4 (12-Aug-2001): + +* Fixed to work with gtk+-1.2.10 +* Input/output devices configurable in OSS drivers +* Cleaned up audio settings handling +* Added preliminary Galician translation (xtorreiro) +* Fixed instrument initialization when loading a sample into + a clean instrument and not into sample slot 0. + What is new in soundtracker-0.6.3 (24-May-2001): * Fixed crash that occured when changing the playback position and playing with the Ctrl key at the same time. * Fixed bug in audio settings saver (the settings _are_ actually saved now!) -* Updates russian and italian translation +* Updated russian and italian translation What is new in soundtracker-0.6.2 (03-Jan-2001): diff -urN soundtracker-0.6.3/README soundtracker-0.6.4/README --- soundtracker-0.6.3/README Thu May 24 20:19:01 2001 +++ soundtracker-0.6.4/README Wed Jul 25 16:06:32 2001 @@ -4,11 +4,11 @@ http://www.soundtracker.org/ -------------------------------------------------------------- - v0.6.3 + v0.6.4 Written and (C) 1998-2001 - by Michael Krause [ raw style / lego ] - m.krause@tu-harburg.de, http://www.tu-harburg.de/~semk2104/ + by Michael Krause [ raw style ^ farbrausch & lego ] + rawstyle@soundtracker.org, http://www.soundtracker.org/raw/ WHAT IS IT? diff -urN soundtracker-0.6.3/app/audioconfig.c soundtracker-0.6.4/app/audioconfig.c --- soundtracker-0.6.3/app/audioconfig.c Thu May 24 20:06:40 2001 +++ soundtracker-0.6.4/app/audioconfig.c Sat Aug 4 12:00:29 2001 @@ -37,6 +37,9 @@ #include "gui.h" #include "mixer.h" +/* List of available output and input drivers in this compilation of + SoundTracker. */ + GList *drivers[2] = { NULL, NULL }; GList *mixers = NULL; @@ -79,6 +82,26 @@ #define NUM_AUDIO_OBJECTS (sizeof(audio_objects) / sizeof(audio_objects[0])) static void +audioconfig_driver_load_config (audio_object *ao) +{ + st_driver *d = *ao->driver; + char buf[256]; + prefs_node *f; + + if(d->loadsettings) { + sprintf(buf, "audio-object-%s", ao->shorttitle); + f = prefs_open_read(buf); + if(f) { + d->loadsettings(*ao->driver_object, f); + prefs_close(f); + } else { + // set default values + // will use module defaults for now + } + } +} + +static void audioconfig_clist_select (GtkCList *list, gint row, gint column) @@ -91,6 +114,9 @@ GtkWidget *new_driverwidget; if(new_driver != old_driver) { + prefs_node *f; + char buf[256]; + // stop playing and sampling here sample_editor_stop_sampling(); gui_play_stop(); @@ -98,6 +124,17 @@ // get new driver object *object->driver_object = new_driver->new(); *object->driver = new_driver; + + /* Load object settings, if there are saved settings. */ + f = prefs_open_read("audio-objects"); + if(f) { + if(prefs_get_string(f, object->shorttitle, buf)) { + if(!strcmp(buf, new_driver->name)) { + audioconfig_driver_load_config(object); + } + } + prefs_close(f); + } } new_driverwidget = new_driver->getwidget(*object->driver_object); @@ -367,19 +404,7 @@ if(d) { // create driver instance *audio_objects[i].driver_object = d->new(); - - // load settings - if(d->loadsettings) { - sprintf(buf, "audio-object-%s", audio_objects[i].shorttitle); - f = prefs_open_read(buf); - if(f) { - d->loadsettings(*audio_objects[i].driver_object, f); - prefs_close(f); - } else { - // set default values - // will use module defaults for now - } - } + audioconfig_driver_load_config(&audio_objects[i]); } } } diff -urN soundtracker-0.6.3/app/clavier.c soundtracker-0.6.4/app/clavier.c --- soundtracker-0.6.3/app/clavier.c Wed Jan 3 14:24:07 2001 +++ soundtracker-0.6.4/app/clavier.c Sun Aug 12 11:38:35 2001 @@ -159,6 +159,12 @@ clavier_init (Clavier *clavier) { clavier->font = gdk_font_load(XFONTNAME); + if(!clavier->font) { + fprintf(stderr, "Hmpf. Strange X installation. You don't have the %s font?\n", XFONTNAME); + clavier->font = gdk_font_load("fixed"); + } + g_assert(clavier->font != NULL); + clavier->fonth = clavier->font->ascent + clavier->font->descent; clavier->fontw = gdk_string_width(clavier->font, "X"); /* let's just hope this is a non-proportional font */ clavier->keylabels = NULL; diff -urN soundtracker-0.6.3/app/drivers/Makefile.in soundtracker-0.6.4/app/drivers/Makefile.in --- soundtracker-0.6.3/app/drivers/Makefile.in Thu May 24 20:27:04 2001 +++ soundtracker-0.6.4/app/drivers/Makefile.in Sun Aug 12 12:07:27 2001 @@ -225,9 +225,7 @@ dsound-output.o: dsound-output.c ../../config.h dummy-drivers.o: dummy-drivers.c ../../config.h ../i18n.h ../driver-in.h \ ../driver.h ../preferences.h ../driver-out.h -esd-output.o: esd-output.c ../../config.h ../i18n.h ../driver-out.h \ - ../driver.h ../preferences.h ../mixer.h ../errors.h \ - ../gui-subs.h +esd-output.o: esd-output.c ../../config.h file-output.o: file-output.c ../../config.h ../i18n.h ../driver-out.h \ ../driver.h ../preferences.h ../mixer.h ../errors.h \ ../gui-subs.h diff -urN soundtracker-0.6.3/app/drivers/oss-input.c soundtracker-0.6.4/app/drivers/oss-input.c --- soundtracker-0.6.3/app/drivers/oss-input.c Wed Jan 3 14:24:11 2001 +++ soundtracker-0.6.4/app/drivers/oss-input.c Sat Aug 4 12:14:49 2001 @@ -46,6 +46,7 @@ typedef struct oss_driver { GtkWidget *configwidget; + GtkWidget *prefs_devdsp_w; int playrate; int stereo; @@ -59,6 +60,7 @@ void *sndbuf; int polltag; + gchar p_devdsp[128]; int p_resolution; int p_channels; int p_mixfreq; @@ -81,15 +83,50 @@ } static void +prefs_init_from_structure (oss_driver *d) +{ + gtk_entry_set_text(GTK_ENTRY(d->prefs_devdsp_w), d->p_devdsp); +} + +static void +oss_devdsp_changed (void *a, + oss_driver *d) +{ + strncpy(d->p_devdsp, gtk_entry_get_text(GTK_ENTRY(d->prefs_devdsp_w)), 127); +} + +static void oss_make_config_widgets (oss_driver *d) { - GtkWidget *thing, *mainbox; + GtkWidget *thing, *mainbox, *box2; d->configwidget = mainbox = gtk_vbox_new(FALSE, 2); - thing = gtk_label_new(_("no settings (yet), sorry!")); + thing = gtk_label_new(_("These changes won't take effect until you restart sampling.")); + gtk_widget_show(thing); gtk_box_pack_start(GTK_BOX(mainbox), thing, FALSE, TRUE, 0); + + thing = gtk_hseparator_new(); gtk_widget_show(thing); + gtk_box_pack_start(GTK_BOX(mainbox), thing, FALSE, TRUE, 0); + + box2 = gtk_hbox_new(FALSE, 4); + gtk_widget_show(box2); + gtk_box_pack_start(GTK_BOX(mainbox), box2, FALSE, TRUE, 0); + + thing = gtk_label_new(_("Input device (e.g. '/dev/dsp'):")); + gtk_widget_show(thing); + gtk_box_pack_start(GTK_BOX(box2), thing, FALSE, TRUE, 0); + add_empty_hbox(box2); + thing = gtk_entry_new_with_max_length(126); + gtk_widget_show(thing); + gtk_box_pack_start(GTK_BOX(box2), thing, FALSE, TRUE, 0); + gtk_entry_set_text(GTK_ENTRY(thing), d->p_devdsp); + gtk_signal_connect_after(GTK_OBJECT(thing), "changed", + GTK_SIGNAL_FUNC(oss_devdsp_changed), d); + d->prefs_devdsp_w = thing; + + prefs_init_from_structure(d); } static GtkWidget * @@ -105,9 +142,7 @@ { oss_driver *d = g_new(oss_driver, 1); - oss_make_config_widgets(d); - d->configmutex = g_mutex_new(); - + strcpy(d->p_devdsp, "/dev/dsp"); d->p_mixfreq = 44100; d->p_channels = 1; d->p_resolution = 16; @@ -115,6 +150,9 @@ d->soundfd = -1; d->sndbuf = NULL; d->polltag = 0; + d->configmutex = g_mutex_new(); + + oss_make_config_widgets(d); return d; } @@ -164,8 +202,10 @@ free(d->sndbuf); d->sndbuf = NULL; - gdk_input_remove(d->polltag); - d->polltag = 0; + if(d->polltag != 0) { + gdk_input_remove(d->polltag); + d->polltag = 0; + } if(d->soundfd >= 0) { close(d->soundfd); @@ -183,9 +223,9 @@ /* O_NONBLOCK is required for the es1370 driver in Linux 2.2.9, for example. It's open() behaviour is not OSS-conformant (though Thomas Sailer says it's okay). */ - if((d->soundfd = open("/dev/dsp", O_RDONLY | O_NONBLOCK)) < 0) { + if((d->soundfd = open(d->p_devdsp, O_RDONLY | O_NONBLOCK)) < 0) { char buf[256]; - sprintf(buf, _("Couldn't open /dev/dsp for sampling:\n%s"), strerror(errno)); + sprintf(buf, _("Couldn't open %s for sampling:\n%s"), d->p_devdsp, strerror(errno)); error_error(buf); goto out; } @@ -260,16 +300,42 @@ return FALSE; } +static gboolean +oss_loadsettings (void *dp, + prefs_node *f) +{ + oss_driver * const d = dp; + + prefs_get_string(f, "oss-devdsp", d->p_devdsp); + + prefs_init_from_structure(d); + + return TRUE; +} + +static gboolean +oss_savesettings (void *dp, + prefs_node *f) +{ + oss_driver * const d = dp; + + prefs_put_string(f, "oss-devdsp", d->p_devdsp); + + return TRUE; +} + st_in_driver driver_in_oss = { - { "OSS Sampling", + { "OSS Sampling", - oss_new, - oss_destroy, + oss_new, + oss_destroy, - oss_open, - oss_release, + oss_open, + oss_release, - oss_getwidget + oss_getwidget, + oss_loadsettings, + oss_savesettings, } }; diff -urN soundtracker-0.6.3/app/drivers/oss-output.c soundtracker-0.6.4/app/drivers/oss-output.c --- soundtracker-0.6.3/app/drivers/oss-output.c Wed Jan 3 14:24:11 2001 +++ soundtracker-0.6.4/app/drivers/oss-output.c Sat Aug 4 12:06:18 2001 @@ -47,6 +47,7 @@ typedef struct oss_driver { GtkWidget *configwidget; + GtkWidget *prefs_devdsp_w; GtkWidget *prefs_resolution_w[2]; GtkWidget *prefs_channels_w[2]; GtkWidget *prefs_mixfreq_w[4]; @@ -67,6 +68,7 @@ gpointer polltag; int firstpoll; + gchar p_devdsp[128]; int p_resolution; int p_channels; int p_mixfreq; @@ -129,6 +131,8 @@ gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(d->prefs_mixfreq_w[i]), TRUE); gtk_spin_button_set_value(GTK_SPIN_BUTTON(d->bufsizespin_w), d->p_fragsize); + + gtk_entry_set_text(GTK_ENTRY(d->prefs_devdsp_w), d->p_devdsp); } static void @@ -176,6 +180,13 @@ } static void +oss_devdsp_changed (void *a, + oss_driver *d) +{ + strncpy(d->p_devdsp, gtk_entry_get_text(GTK_ENTRY(d->prefs_devdsp_w)), 127); +} + +static void oss_make_config_widgets (oss_driver *d) { GtkWidget *thing, *mainbox, *box2, *box3; @@ -197,6 +208,22 @@ gtk_widget_show(box2); gtk_box_pack_start(GTK_BOX(mainbox), box2, FALSE, TRUE, 0); + thing = gtk_label_new(_("Output device (e.g. '/dev/dsp'):")); + gtk_widget_show(thing); + gtk_box_pack_start(GTK_BOX(box2), thing, FALSE, TRUE, 0); + add_empty_hbox(box2); + thing = gtk_entry_new_with_max_length(126); + gtk_widget_show(thing); + gtk_box_pack_start(GTK_BOX(box2), thing, FALSE, TRUE, 0); + gtk_entry_set_text(GTK_ENTRY(thing), d->p_devdsp); + gtk_signal_connect_after(GTK_OBJECT(thing), "changed", + GTK_SIGNAL_FUNC(oss_devdsp_changed), d); + d->prefs_devdsp_w = thing; + + box2 = gtk_hbox_new(FALSE, 4); + gtk_widget_show(box2); + gtk_box_pack_start(GTK_BOX(mainbox), box2, FALSE, TRUE, 0); + thing = gtk_label_new(_("Resolution:")); gtk_widget_show(thing); gtk_box_pack_start(GTK_BOX(box2), thing, FALSE, TRUE, 0); @@ -272,6 +299,7 @@ { oss_driver *d = g_new(oss_driver, 1); + strcpy(d->p_devdsp, "/dev/dsp"); d->p_mixfreq = 44100; d->p_channels = 2; d->p_resolution = 16; @@ -352,9 +380,9 @@ /* O_NONBLOCK is required for the es1370 driver in Linux 2.2.9, for example. It's open() behaviour is not OSS-conformant (though Thomas Sailer says it's okay). */ - if((d->soundfd = open("/dev/dsp", O_WRONLY | O_NONBLOCK)) < 0) { + if((d->soundfd = open(d->p_devdsp, O_WRONLY | O_NONBLOCK)) < 0) { char buf[256]; - sprintf(buf, _("Couldn't open /dev/dsp for sound output:\n%s"), strerror(errno)); + sprintf(buf, _("Couldn't open %s for sound output:\n%s"), d->p_devdsp, strerror(errno)); error_error(buf); goto out; } @@ -463,6 +491,7 @@ { oss_driver * const d = dp; + prefs_get_string(f, "oss-devdsp", d->p_devdsp); prefs_get_int(f, "oss-resolution", &d->p_resolution); prefs_get_int(f, "oss-channels", &d->p_channels); prefs_get_int(f, "oss-mixfreq", &d->p_mixfreq); @@ -479,6 +508,7 @@ { oss_driver * const d = dp; + prefs_put_string(f, "oss-devdsp", d->p_devdsp); prefs_put_int(f, "oss-resolution", d->p_resolution); prefs_put_int(f, "oss-channels", d->p_channels); prefs_put_int(f, "oss-mixfreq", d->p_mixfreq); diff -urN soundtracker-0.6.3/app/main.c soundtracker-0.6.4/app/main.c --- soundtracker-0.6.3/app/main.c Wed Jan 3 14:24:09 2001 +++ soundtracker-0.6.4/app/main.c Sun Aug 12 11:52:17 2001 @@ -23,6 +23,7 @@ #include +#include #include #include @@ -90,7 +91,6 @@ mixer_kbfloat, mixer_integer32; - g_thread_init(NULL); if(pipe(pipea) || pipe(pipeb)) { @@ -103,10 +103,22 @@ return 1; } - /* In case we run setuid root, the main thread must not have root privileges - -- it must be set back to the calling user ID! */ + /* In case we run setuid root, the main thread must not have root + privileges -- it must be set back to the calling user ID! The + setresuid() stuff is for gtk+-1.2.10 on Linux. */ +#ifdef HAVE_SETRESUID + /* These aren't in the header files, so we prototype them here. + */ + { + int setresuid(uid_t ruid, uid_t euid, uid_t suid); + int setresgid(gid_t rgid, gid_t egid, gid_t sgid); + setresuid(getuid(), getuid(), getuid()); + setresgid(getgid(), getgid(), getgid()); + } +#else seteuid(getuid()); setegid(getgid()); +#endif #if ENABLE_NLS gtk_set_locale(); diff -urN soundtracker-0.6.3/app/sample-editor.c soundtracker-0.6.4/app/sample-editor.c --- soundtracker-0.6.3/app/sample-editor.c Wed Jan 3 14:24:10 2001 +++ soundtracker-0.6.4/app/sample-editor.c Wed Jul 25 16:46:45 2001 @@ -1,3 +1,4 @@ + /* * The Real SoundTracker - sample editor * @@ -1077,6 +1078,7 @@ instr = instrument_editor_get_instrument(); if(st_instrument_num_samples(instr) == 0) { st_clean_instrument(instr, samplename); + memset(instr->samplemap, gui_get_current_sample(), sizeof(instr->samplemap)); } st_clean_sample(current_sample, samplename); diff -urN soundtracker-0.6.3/app/tips-dialog.c soundtracker-0.6.4/app/tips-dialog.c --- soundtracker-0.6.3/app/tips-dialog.c Wed Jan 3 14:24:10 2001 +++ soundtracker-0.6.4/app/tips-dialog.c Wed Jul 25 16:41:42 2001 @@ -265,7 +265,10 @@ N_("You can assign samples of an instrument to the individual keys by\n" "activating its sample and then clicking on the keyboard in the\n" - "instrument editor page.") + "instrument editor page."), + + N_("Is your cursor trapped in a number entry field?\n" + "Just press Return or Tab to free yourself!") }; static void diff -urN soundtracker-0.6.3/config.h.in soundtracker-0.6.4/config.h.in --- soundtracker-0.6.3/config.h.in Wed Dec 27 10:05:04 2000 +++ soundtracker-0.6.4/config.h.in Fri Jun 15 16:42:58 2001 @@ -102,6 +102,9 @@ /* Define if you have the setlocale function. */ #undef HAVE_SETLOCALE +/* Define if you have the setresuid function. */ +#undef HAVE_SETRESUID + /* Define if you have the stpcpy function. */ #undef HAVE_STPCPY diff -urN soundtracker-0.6.3/configure soundtracker-0.6.4/configure --- soundtracker-0.6.3/configure Thu May 24 20:26:17 2001 +++ soundtracker-0.6.4/configure Wed Jul 25 16:13:23 2001 @@ -727,7 +727,7 @@ PACKAGE=soundtracker -VERSION=0.6.3 +VERSION=0.6.4 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } @@ -1424,7 +1424,7 @@ fi -ALL_LINGUAS="de es fr it pl ja ru sl" +ALL_LINGUAS="de es fr gl it pl ja ru sl" echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 echo "configure:1430: checking for POSIXized ISC" >&5 if test -d /etc/conf/kconfig.d && @@ -4131,6 +4131,62 @@ done +for ac_func in setresuid +do +echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +echo "configure:4138: checking for $ac_func" >&5 +if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +$ac_func(); +#endif + +; return 0; } +EOF +if { (eval echo configure:4166: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_$ac_func=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then + echo "$ac_t""yes" 1>&6 + ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` + cat >> confdefs.h <&6 +fi +done + + # Check whether --enable-oss or --disable-oss was given. if test "${enable_oss+set}" = set; then @@ -4144,17 +4200,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4148: checking for $ac_hdr" >&5 +echo "configure:4204: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4158: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4199,7 +4255,7 @@ if test x$alsa_support != xno; then echo $ac_n "checking for snd_cards in -lasound""... $ac_c" 1>&6 -echo "configure:4203: checking for snd_cards in -lasound" >&5 +echo "configure:4259: checking for snd_cards in -lasound" >&5 ac_lib_var=`echo asound'_'snd_cards | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4207,7 +4263,7 @@ ac_save_LIBS="$LIBS" LIBS="-lasound $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4278: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4243,7 +4299,7 @@ LIBS="$LIBS -lasound" fi echo $ac_n "checking for snd_pcm_capture_params in -lasound""... $ac_c" 1>&6 -echo "configure:4247: checking for snd_pcm_capture_params in -lasound" >&5 +echo "configure:4303: checking for snd_pcm_capture_params in -lasound" >&5 ac_lib_var=`echo asound'_'snd_pcm_capture_params | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4251,7 +4307,7 @@ ac_save_LIBS="$LIBS" LIBS="-lasound $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4322: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4295,7 +4351,7 @@ fi echo $ac_n "checking for snd_pcm_channel_params in -lasound""... $ac_c" 1>&6 -echo "configure:4299: checking for snd_pcm_channel_params in -lasound" >&5 +echo "configure:4355: checking for snd_pcm_channel_params in -lasound" >&5 ac_lib_var=`echo asound'_'snd_pcm_channel_params | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4303,7 +4359,7 @@ ac_save_LIBS="$LIBS" LIBS="-lasound $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4374: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4398,7 +4454,7 @@ # Extract the first word of "esd-config", so it can be a program name with args. set dummy esd-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4402: checking for $ac_word" >&5 +echo "configure:4458: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_ESD_CONFIG'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4433,7 +4489,7 @@ min_esd_version=0.2.8 echo $ac_n "checking for ESD - version >= $min_esd_version""... $ac_c" 1>&6 -echo "configure:4437: checking for ESD - version >= $min_esd_version" >&5 +echo "configure:4493: checking for ESD - version >= $min_esd_version" >&5 no_esd="" if test "$ESD_CONFIG" = "no" ; then no_esd=yes @@ -4457,7 +4513,7 @@ echo $ac_n "cross compiling; assumed OK... $ac_c" else cat > conftest.$ac_ext < @@ -4515,7 +4571,7 @@ EOF -if { (eval echo configure:4519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4575: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -4549,7 +4605,7 @@ CFLAGS="$CFLAGS $ESD_CFLAGS" LIBS="$LIBS $ESD_LIBS" cat > conftest.$ac_ext < @@ -4559,7 +4615,7 @@ return 0; ; return 0; } EOF -if { (eval echo configure:4563: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding ESD or finding the wrong" @@ -4595,12 +4651,12 @@ for ac_func in esd_play_stream do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4599: checking for $ac_func" >&5 +echo "configure:4655: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4683: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4679,17 +4735,17 @@ if test x$sgi_support != xno; then ac_safe=`echo "dmedia/audio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dmedia/audio.h""... $ac_c" 1>&6 -echo "configure:4683: checking for dmedia/audio.h" >&5 +echo "configure:4739: checking for dmedia/audio.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4693: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4749: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4713,7 +4769,7 @@ if test $ac_cv_header_dmedia_audio_h = yes then echo $ac_n "checking for ALseterrorhandler in -laudio""... $ac_c" 1>&6 -echo "configure:4717: checking for ALseterrorhandler in -laudio" >&5 +echo "configure:4773: checking for ALseterrorhandler in -laudio" >&5 ac_lib_var=`echo audio'_'ALseterrorhandler | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4721,7 +4777,7 @@ ac_save_LIBS="$LIBS" LIBS="-laudio $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4767,14 +4823,14 @@ echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:4771: checking whether byte ordering is bigendian" >&5 +echo "configure:4827: checking whether byte ordering is bigendian" >&5 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat > conftest.$ac_ext < #include @@ -4785,11 +4841,11 @@ #endif ; return 0; } EOF -if { (eval echo configure:4789: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4845: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* # It does; now see whether it defined to BIG_ENDIAN or not. cat > conftest.$ac_ext < #include @@ -4800,7 +4856,7 @@ #endif ; return 0; } EOF -if { (eval echo configure:4804: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4860: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -4820,7 +4876,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_bigendian=no else diff -urN soundtracker-0.6.3/configure.in soundtracker-0.6.4/configure.in --- soundtracker-0.6.3/configure.in Thu May 24 20:19:00 2001 +++ soundtracker-0.6.4/configure.in Wed Jul 25 16:07:33 2001 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(app/endian-conv.h) -AM_INIT_AUTOMAKE(soundtracker, 0.6.3) +AM_INIT_AUTOMAKE(soundtracker, 0.6.4) AM_CONFIG_HEADER(config.h) dnl ----------------------------------------------------------------------- @@ -54,7 +54,7 @@ dnl ----------------------------------------------------------------------- dnl Also add new catalogs to soundtracker.spec (%build)! -ALL_LINGUAS="de es fr it pl ja ru sl" +ALL_LINGUAS="de es fr gl it pl ja ru sl" AM_GNU_GETTEXT dnl ----------------------------------------------------------------------- @@ -121,6 +121,8 @@ dnl AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h,, AC_MSG_ERROR(Need those header files.)) AC_CHECK_HEADERS(dlfcn.h) + +AC_CHECK_FUNCS(setresuid) dnl ----------------------------------------------------------------------- dnl Test for OSS headers diff -urN soundtracker-0.6.3/doc/hacking.html soundtracker-0.6.4/doc/hacking.html --- soundtracker-0.6.3/doc/hacking.html Thu May 24 20:26:59 2001 +++ soundtracker-0.6.4/doc/hacking.html Sun Aug 12 11:54:36 2001 @@ -1,7 +1,7 @@ + from hacking.texi on 12 August 2001 --> SoundTracker internals @@ -308,7 +308,7 @@


-This document was generated on 24 May 2001 using the +This document was generated on 12 August 2001 using the texi2html translator version 1.51.

diff -urN soundtracker-0.6.3/po/cat-id-tbl.c soundtracker-0.6.4/po/cat-id-tbl.c --- soundtracker-0.6.3/po/cat-id-tbl.c Wed Jan 3 14:48:47 2001 +++ soundtracker-0.6.4/po/cat-id-tbl.c Sat Aug 4 12:06:34 2001 @@ -46,460 +46,466 @@ %s", 27}, {"no settings (yet), sorry!", 28}, {"Can't open file for writing.", 29}, + {"These changes won't take effect until you restart sampling.", 30}, + {"Input device (e.g. '/dev/dsp'):", 31}, {"\ -Couldn't open /dev/dsp for sampling:\n\ -%s", 30}, - {"(%d samples)", 31}, - {"\ -Couldn't open /dev/dsp for sound output:\n\ +Couldn't open %s for sampling:\n\ %s", 32}, - {"Length", 33}, - {"Current", 34}, - {"Offset", 35}, - {"Value", 36}, - {"Insert", 37}, - {"Delete", 38}, + {"(%d samples)", 33}, + {"Output device (e.g. '/dev/dsp'):", 34}, + {"\ +Couldn't open %s for sound output:\n\ +%s", 35}, + {"Length", 36}, + {"Current", 37}, + {"Offset", 38}, + {"Value", 39}, + {"Insert", 40}, + {"Delete", 41}, {"\ Graphical\n\ Envelope\n\ Editor\n\ only in\n\ -GNOME Version", 39}, - {"Sustain", 40}, - {"Point", 41}, - {"Loop", 42}, - {"Start", 43}, - {"End", 44}, - {"Load Module", 45}, - {"Save Module", 46}, - {"Render WAV", 47}, - {"Save Song", 48}, - {"Load Sample", 49}, - {"Save Sample", 50}, - {"Load Instrument", 51}, - {"Save Instrument", 52}, - {"File", 53}, - {"Operation not supported.", 54}, - {"Scopes Frequency", 55}, - {"Tracker Frequency", 56}, - {"GUI Configuration", 57}, - {"Hexadecimal row numbers", 58}, - {"Use upper case letters for hex numbers", 59}, - {"Advance cursor horizontally in effect columns", 60}, - {"Asynchronous Editing", 61}, - {"Channel numbering", 62}, - {"Tempo and BPM update", 63}, - {"Auto switch", 64}, - {"Use anti-aliased envelope editor", 65}, - {"You need to restart SoundTracker for this change to come into effect.", 66}, - {"Scopes buffer size [MB]", 67}, - {"Highlight rows:", 68}, - {"Track line format:", 69}, - {"`Save XM' saves all non-empty patterns", 70}, - {"Idle.", 71}, - {"Playing song...", 72}, - {"Playing pattern...", 73}, - {"Loading module...", 74}, - {"Module loaded.", 75}, - {"Saving module...", 76}, - {"Module saved.", 77}, - {"Loading sample...", 78}, - {"Sample loaded.", 79}, - {"Saving sample...", 80}, - {"Sample saved.", 81}, - {"Loading instrument...", 82}, - {"Instrument loaded.", 83}, - {"Saving instrument...", 84}, - {"Instrument saved.", 85}, - {"Saving song...", 86}, - {"Song saved.", 87}, - {"Question", 88}, - {"Cancel", 89}, - {"Warning", 90}, - {"Error!", 91}, - {"Tempo", 92}, +GNOME Version", 42}, + {"Sustain", 43}, + {"Point", 44}, + {"Loop", 45}, + {"Start", 46}, + {"End", 47}, + {"Load Module", 48}, + {"Save Module", 49}, + {"Render WAV", 50}, + {"Save Song", 51}, + {"Load Sample", 52}, + {"Save Sample", 53}, + {"Load Instrument", 54}, + {"Save Instrument", 55}, + {"File", 56}, + {"Operation not supported.", 57}, + {"Scopes Frequency", 58}, + {"Tracker Frequency", 59}, + {"GUI Configuration", 60}, + {"Hexadecimal row numbers", 61}, + {"Use upper case letters for hex numbers", 62}, + {"Advance cursor horizontally in effect columns", 63}, + {"Asynchronous Editing", 64}, + {"Channel numbering", 65}, + {"Tempo and BPM update", 66}, + {"Auto switch", 67}, + {"Use anti-aliased envelope editor", 68}, + {"You need to restart SoundTracker for this change to come into effect.", 69}, + {"Scopes buffer size [MB]", 70}, + {"Highlight rows:", 71}, + {"Track line format:", 72}, + {"`Save XM' saves all non-empty patterns", 73}, + {"Idle.", 74}, + {"Playing song...", 75}, + {"Playing pattern...", 76}, + {"Loading module...", 77}, + {"Module loaded.", 78}, + {"Saving module...", 79}, + {"Module saved.", 80}, + {"Loading sample...", 81}, + {"Sample loaded.", 82}, + {"Saving sample...", 83}, + {"Sample saved.", 84}, + {"Loading instrument...", 85}, + {"Instrument loaded.", 86}, + {"Saving instrument...", 87}, + {"Instrument saved.", 88}, + {"Saving song...", 89}, + {"Song saved.", 90}, + {"Question", 91}, + {"Cancel", 92}, + {"Warning", 93}, + {"Error!", 94}, + {"Tempo", 95}, {"\ Are you sure you want to free the current project?\n\ -All changes will be lost!", 93}, - {"Are you sure you want to overwrite the file?", 94}, - {"Load XM...", 95}, - {"Save XM...", 96}, - {"Render module as WAV...", 97}, - {"Save song as XM...", 98}, - {"Play Song", 99}, - {"Play Pattern", 100}, - {"Stop", 101}, - {"Number of Channels:", 102}, - {"Pattern", 103}, - {"PatLength", 104}, - {"Octave", 105}, - {"Jump", 106}, - {"Instr", 107}, - {"Sample", 108}, - {"%M:%S", 109}, - {"VolFade", 110}, - {"VibSpeed", 111}, - {"VibDepth", 112}, - {"VibSweep", 113}, - {"Can't open file.", 114}, - {"Sine", 115}, - {"Square", 116}, - {"Saw Down", 117}, - {"Saw Up", 118}, - {"Instrument Editor", 119}, - {"Volume envelope", 120}, - {"Panning envelope", 121}, - {"Load Instrument...", 122}, - {"Save Instrument...", 123}, - {"Load XI", 124}, - {"Save XI", 125}, - {"Vibrato Type:", 126}, - {"Note:", 127}, - {"Initialize", 128}, - {"The key that inserts the special keyoff note for FastTracker modules.", 129}, - {"Upper Octave Keys...", 130}, +All changes will be lost!", 96}, + {"Are you sure you want to overwrite the file?", 97}, + {"Load XM...", 98}, + {"Save XM...", 99}, + {"Render module as WAV...", 100}, + {"Save song as XM...", 101}, + {"Play Song", 102}, + {"Play Pattern", 103}, + {"Stop", 104}, + {"Number of Channels:", 105}, + {"Pattern", 106}, + {"PatLength", 107}, + {"Octave", 108}, + {"Jump", 109}, + {"Instr", 110}, + {"Sample", 111}, + {"%M:%S", 112}, + {"VolFade", 113}, + {"VibSpeed", 114}, + {"VibDepth", 115}, + {"VibSweep", 116}, + {"Can't open file.", 117}, + {"Sine", 118}, + {"Square", 119}, + {"Saw Down", 120}, + {"Saw Up", 121}, + {"Instrument Editor", 122}, + {"Volume envelope", 123}, + {"Panning envelope", 124}, + {"Load Instrument...", 125}, + {"Save Instrument...", 126}, + {"Load XI", 127}, + {"Save XI", 128}, + {"Vibrato Type:", 129}, + {"Note:", 130}, + {"Initialize", 131}, + {"The key that inserts the special keyoff note for FastTracker modules.", 132}, + {"Upper Octave Keys...", 133}, {"\ These are the keys on the upper half of the keyboard. The c key is normally \ the key to the right of the TAB key. The rest of the keys should be ordered \ -in a piano keyboard fashion, including the number keys row above.", 131}, - {"Lower Octave Keys...", 132}, +in a piano keyboard fashion, including the number keys row above.", 134}, + {"Lower Octave Keys...", 135}, {"\ These are the keys on the lower half of the keyboard. The c key is normally \ the first character key to the right of the left Shift key. The rest of the \ -keys should be ordered in a piano keyboard fashion, including the row above.", 133}, - {"Other Keys...", 134}, - {"Various other keys", 135}, - {"Function", 136}, - {"Assignment", 137}, - {"Keyboard Configuration", 138}, - {"Key Group Explanation", 139}, - {"Key Explanation", 140}, - {"Modifiers:", 141}, - {"Learn selected key", 142}, - {"Learn all keys", 143}, +keys should be ordered in a piano keyboard fashion, including the row above.", 136}, + {"Other Keys...", 137}, + {"Various other keys", 138}, + {"Function", 139}, + {"Assignment", 140}, + {"Keyboard Configuration", 141}, + {"Key Group Explanation", 142}, + {"Key Explanation", 143}, + {"Modifiers:", 144}, + {"Learn selected key", 145}, + {"Learn all keys", 146}, {"\ Please press the desired key combination!\n\ -Click into left list to cancel", 144}, - {"Ok", 145}, - {"Apply", 146}, +Click into left list to cancel", 147}, + {"Ok", 148}, + {"Apply", 149}, {"\ The keyboard configuration file is defective.\n\ -Please use the Keyboard Configuration dialog.", 147}, +Please use the Keyboard Configuration dialog.", 150}, {"\ Automatic key configuration unsuccessful.\n\ Please use the Keyboard Configuration dialog\n\ -in the Settings menu.", 148}, +in the Settings menu.", 151}, {"\ Are you sure you want to do this?\n\ -All changes will be lost!", 149}, +All changes will be lost!", 152}, {"\ Are you sure you want to quit?\n\ -All changes will be lost!", 150}, - {"_Open...", 151}, - {"Save _as...", 152}, - {"Save Module as _WAV...", 153}, - {"Save XM without samples...", 154}, - {"_Quit", 155}, - {"Clear _All", 156}, - {"Clear _Patterns Only", 157}, - {"_Optimize Module", 158}, - {"C_ut", 159}, - {"_Copy", 160}, - {"_Paste", 161}, - {"_Kill notes", 162}, - {"_Insert", 163}, - {"_Delete", 164}, - {"Increment cmd value", 165}, - {"Decrement cmd value", 166}, - {"_Mark mode", 167}, - {"C_lear block marks", 168}, - {"_Interpolate effects", 169}, - {"_Jazz Edit Mode", 170}, - {"Transp_osition...", 171}, - {"_Pattern", 172}, - {"_Track", 173}, - {"_Selection", 174}, - {"_Find Unused Pattern", 175}, - {"_Copy Current to Unused Pattern", 176}, - {"C_lear Unused Patterns", 177}, - {"_Pack Patterns", 178}, - {"_Load XI...", 179}, - {"_Save XI...", 180}, - {"_Clear Current", 181}, - {"_Delete Unused Instruments", 182}, - {"Use _Backing Store", 183}, - {"_Previous font", 184}, - {"_Next font", 185}, - {"Display _Oscilloscopes", 186}, - {"_Tracker", 187}, - {"_Keyboard Configuration...", 188}, - {"_Audio Configuration...", 189}, - {"_GUI Configuration...", 190}, - {"_MIDI Configuration...", 191}, - {"_Save Settings now", 192}, - {"Save Settings on _Exit", 193}, - {"_About...", 194}, - {"Show _Tips...", 195}, - {"_XM Effects...", 196}, - {"_File", 197}, - {"_Module", 198}, - {"_Edit", 199}, - {"_Instrument", 200}, - {"_Settings", 201}, - {"_Help", 202}, - {"/_File", 203}, - {"/File/_Open...", 204}, - {"/File/Save _as...", 205}, - {"/File/-", 206}, - {"/File/Save Module as _WAV...", 207}, - {"/File/Save XM without samples...", 208}, - {"/File/_Quit", 209}, - {"/_Module", 210}, - {"/Module/Clear _All", 211}, - {"/Module/Clear _Patterns Only", 212}, - {"/Module/_Optimize Module", 213}, - {"/_Edit", 214}, - {"/Edit/_Jazz Edit Mode", 215}, - {"/Edit/-", 216}, - {"/Edit/_Transposition...", 217}, - {"/Edit/_Pattern", 218}, - {"/Edit/Pattern/C_ut", 219}, - {"/Edit/Pattern/_Copy", 220}, - {"/Edit/Pattern/_Paste", 221}, - {"/Edit/_Track", 222}, - {"/Edit/Track/C_ut", 223}, - {"/Edit/Track/_Copy", 224}, - {"/Edit/Track/_Paste", 225}, - {"/Edit/Track/_Kill notes", 226}, - {"/Edit/Track/_Insert", 227}, - {"/Edit/Track/_Delete", 228}, - {"/Edit/_Selection", 229}, - {"/Edit/Selection/_Mark mode", 230}, - {"/Edit/Selection/C_lear block marks", 231}, - {"/Edit/Selection/C_ut", 232}, - {"/Edit/Selection/_Copy", 233}, - {"/Edit/Selection/_Paste", 234}, - {"/Edit/Selection/_Interpolate effects", 235}, - {"/Edit/Track/Increment cmd value", 236}, - {"/Edit/Track/Decrement cmd value", 237}, - {"/_Pattern", 238}, - {"/Pattern/_Find Unused Pattern", 239}, - {"/Pattern/_Copy Current to Unused Pattern", 240}, - {"/Pattern/C_lear Unused Patterns", 241}, - {"/Pattern/_Pack Patterns", 242}, - {"/_Instrument", 243}, - {"/Instrument/_Load XI...", 244}, - {"/Instrument/_Save XI...", 245}, - {"/Instrument/-", 246}, - {"/Instrument/_Clear Current", 247}, - {"/Instrument/_Delete Unused Instruments", 248}, - {"/_Settings", 249}, - {"/Settings/Display _Oscilloscopes", 250}, - {"/Settings/_Tracker", 251}, - {"/Settings/Tracker/Use _Backing Store", 252}, - {"/Settings/Tracker/_Previous font", 253}, - {"/Settings/Tracker/_Next font", 254}, - {"/Settings/-", 255}, - {"/Settings/_Keyboard Configuration...", 256}, - {"/Settings/_Audio Configuration...", 257}, - {"/Settings/_GUI Configuration...", 258}, - {"/Settings/_MIDI Configuration...", 259}, - {"/Settings/_Save Settings now", 260}, - {"/Settings/Save Settings on _Exit", 261}, - {"/_Help", 262}, - {"/Help/_About...", 263}, - {"/Help/-", 264}, - {"/Help/Show _Tips...", 265}, - {"/Help/_XM Effects...", 266}, - {"Instrument Name", 267}, - {"#smpl", 268}, - {"Sample Name", 269}, - {"Linear", 270}, - {"Amiga", 271}, - {"Module Info", 272}, - {"Songname:", 273}, - {"Frequencies:", 274}, - {"ProTracker Mode", 275}, - {"Song length", 276}, - {"Current pos", 277}, - {"Restart pos", 278}, +All changes will be lost!", 153}, + {"_Open...", 154}, + {"Save _as...", 155}, + {"Save Module as _WAV...", 156}, + {"Save XM without samples...", 157}, + {"_Quit", 158}, + {"Clear _All", 159}, + {"Clear _Patterns Only", 160}, + {"_Optimize Module", 161}, + {"C_ut", 162}, + {"_Copy", 163}, + {"_Paste", 164}, + {"_Kill notes", 165}, + {"_Insert", 166}, + {"_Delete", 167}, + {"Increment cmd value", 168}, + {"Decrement cmd value", 169}, + {"_Mark mode", 170}, + {"C_lear block marks", 171}, + {"_Interpolate effects", 172}, + {"_Jazz Edit Mode", 173}, + {"Transp_osition...", 174}, + {"_Pattern", 175}, + {"_Track", 176}, + {"_Selection", 177}, + {"_Find Unused Pattern", 178}, + {"_Copy Current to Unused Pattern", 179}, + {"C_lear Unused Patterns", 180}, + {"_Pack Patterns", 181}, + {"_Load XI...", 182}, + {"_Save XI...", 183}, + {"_Clear Current", 184}, + {"_Delete Unused Instruments", 185}, + {"Use _Backing Store", 186}, + {"_Previous font", 187}, + {"_Next font", 188}, + {"Display _Oscilloscopes", 189}, + {"_Tracker", 190}, + {"_Keyboard Configuration...", 191}, + {"_Audio Configuration...", 192}, + {"_GUI Configuration...", 193}, + {"_MIDI Configuration...", 194}, + {"_Save Settings now", 195}, + {"Save Settings on _Exit", 196}, + {"_About...", 197}, + {"Show _Tips...", 198}, + {"_XM Effects...", 199}, + {"_File", 200}, + {"_Module", 201}, + {"_Edit", 202}, + {"_Instrument", 203}, + {"_Settings", 204}, + {"_Help", 205}, + {"/_File", 206}, + {"/File/_Open...", 207}, + {"/File/Save _as...", 208}, + {"/File/-", 209}, + {"/File/Save Module as _WAV...", 210}, + {"/File/Save XM without samples...", 211}, + {"/File/_Quit", 212}, + {"/_Module", 213}, + {"/Module/Clear _All", 214}, + {"/Module/Clear _Patterns Only", 215}, + {"/Module/_Optimize Module", 216}, + {"/_Edit", 217}, + {"/Edit/_Jazz Edit Mode", 218}, + {"/Edit/-", 219}, + {"/Edit/_Transposition...", 220}, + {"/Edit/_Pattern", 221}, + {"/Edit/Pattern/C_ut", 222}, + {"/Edit/Pattern/_Copy", 223}, + {"/Edit/Pattern/_Paste", 224}, + {"/Edit/_Track", 225}, + {"/Edit/Track/C_ut", 226}, + {"/Edit/Track/_Copy", 227}, + {"/Edit/Track/_Paste", 228}, + {"/Edit/Track/_Kill notes", 229}, + {"/Edit/Track/_Insert", 230}, + {"/Edit/Track/_Delete", 231}, + {"/Edit/_Selection", 232}, + {"/Edit/Selection/_Mark mode", 233}, + {"/Edit/Selection/C_lear block marks", 234}, + {"/Edit/Selection/C_ut", 235}, + {"/Edit/Selection/_Copy", 236}, + {"/Edit/Selection/_Paste", 237}, + {"/Edit/Selection/_Interpolate effects", 238}, + {"/Edit/Track/Increment cmd value", 239}, + {"/Edit/Track/Decrement cmd value", 240}, + {"/_Pattern", 241}, + {"/Pattern/_Find Unused Pattern", 242}, + {"/Pattern/_Copy Current to Unused Pattern", 243}, + {"/Pattern/C_lear Unused Patterns", 244}, + {"/Pattern/_Pack Patterns", 245}, + {"/_Instrument", 246}, + {"/Instrument/_Load XI...", 247}, + {"/Instrument/_Save XI...", 248}, + {"/Instrument/-", 249}, + {"/Instrument/_Clear Current", 250}, + {"/Instrument/_Delete Unused Instruments", 251}, + {"/_Settings", 252}, + {"/Settings/Display _Oscilloscopes", 253}, + {"/Settings/_Tracker", 254}, + {"/Settings/Tracker/Use _Backing Store", 255}, + {"/Settings/Tracker/_Previous font", 256}, + {"/Settings/Tracker/_Next font", 257}, + {"/Settings/-", 258}, + {"/Settings/_Keyboard Configuration...", 259}, + {"/Settings/_Audio Configuration...", 260}, + {"/Settings/_GUI Configuration...", 261}, + {"/Settings/_MIDI Configuration...", 262}, + {"/Settings/_Save Settings now", 263}, + {"/Settings/Save Settings on _Exit", 264}, + {"/_Help", 265}, + {"/Help/_About...", 266}, + {"/Help/-", 267}, + {"/Help/Show _Tips...", 268}, + {"/Help/_XM Effects...", 269}, + {"Instrument Name", 270}, + {"#smpl", 271}, + {"Sample Name", 272}, + {"Linear", 273}, + {"Amiga", 274}, + {"Module Info", 275}, + {"Songname:", 276}, + {"Frequencies:", 277}, + {"ProTracker Mode", 278}, + {"Song length", 279}, + {"Current pos", 280}, + {"Restart pos", 281}, {"\ A directory called '.soundtracker' has been created in your\n\ -home directory to store configuration files.\n", 279}, - {"No loop", 280}, - {"PingPong", 281}, - {"8 bits", 282}, - {"16 bits", 283}, - {"Sample Editor", 284}, - {"Volume", 285}, - {"Panning", 286}, - {"Finetune", 287}, - {"Selection:", 288}, - {"None", 289}, - {"All", 290}, - {"Length:", 291}, - {"Set as loop", 292}, - {"RelNote", 293}, - {"Load Sample...", 294}, - {"Save WAV...", 295}, - {"Save region as WAV...", 296}, - {"Save WAV", 297}, - {"Save Region", 298}, - {"Monitor", 299}, - {"Volume Ramp", 300}, - {"Zoom to selection", 301}, - {"Show all", 302}, - {"Zoom in (+50%)", 303}, - {"Zoom out (-50%)", 304}, - {"Reverse", 305}, - {"Cut", 306}, - {"Remove", 307}, - {"Copy", 308}, - {"Paste", 309}, - {"Clear Sample", 310}, - {"(no selection)", 311}, - {"", 312}, - {"Read error.", 313}, - {"Load stereo sample", 314}, +home directory to store configuration files.\n", 282}, + {"No loop", 283}, + {"PingPong", 284}, + {"8 bits", 285}, + {"16 bits", 286}, + {"Sample Editor", 287}, + {"Volume", 288}, + {"Panning", 289}, + {"Finetune", 290}, + {"Selection:", 291}, + {"None", 292}, + {"All", 293}, + {"Length:", 294}, + {"Set as loop", 295}, + {"RelNote", 296}, + {"Load Sample...", 297}, + {"Save WAV...", 298}, + {"Save region as WAV...", 299}, + {"Save WAV", 300}, + {"Save Region", 301}, + {"Monitor", 302}, + {"Volume Ramp", 303}, + {"Zoom to selection", 304}, + {"Show all", 305}, + {"Zoom in (+50%)", 306}, + {"Zoom out (-50%)", 307}, + {"Reverse", 308}, + {"Cut", 309}, + {"Remove", 310}, + {"Copy", 311}, + {"Paste", 312}, + {"Clear Sample", 313}, + {"(no selection)", 314}, + {"", 315}, + {"Read error.", 316}, + {"Load stereo sample", 317}, {"\ You have selected a stereo sample!\n\ (SoundTracker can only handle mono samples!)\n\ \n\ -Please choose which channel to load:", 315}, - {"Left", 316}, - {"Mix", 317}, - {"Right", 318}, - {"Load raw sample", 319}, +Please choose which channel to load:", 318}, + {"Left", 319}, + {"Mix", 320}, + {"Right", 321}, + {"Load raw sample", 322}, {"\ You have selected a sample that is not\n\ in a known format. You can load the raw data now.\n\ \n\ -Please choose a format:", 320}, - {"Wortformat:", 321}, - {"OK", 322}, - {"Can't read sample", 323}, - {"Sample is too long for current mixer module. Loading anyway.", 324}, - {"Can only handle 8 and 16 bit samples with up to 2 channels", 325}, - {"Nothing to save.", 326}, - {"Start sampling", 327}, - {"No sampling driver available", 328}, - {"Sampling Window", 329}, - {"", 330}, - {"Recorded sample is too long for current mixer module. Using it anyway.", 331}, - {"Normalize", 332}, - {"Execute", 333}, - {"Volume Ramping", 334}, - {"Perform linear volume fade on Selection", 335}, - {"Left [%]:", 336}, - {"H", 337}, - {"D", 338}, - {"Right [%]:", 339}, - {"SoundTracker Tip of the day", 340}, - {"Previous Tip", 341}, - {"Next Tip", 342}, - {"Show tip next time", 343}, +Please choose a format:", 323}, + {"Wortformat:", 324}, + {"OK", 325}, + {"Can't read sample", 326}, + {"Sample is too long for current mixer module. Loading anyway.", 327}, + {"Can only handle 8 and 16 bit samples with up to 2 channels", 328}, + {"Nothing to save.", 329}, + {"Start sampling", 330}, + {"No sampling driver available", 331}, + {"Sampling Window", 332}, + {"", 333}, + {"Recorded sample is too long for current mixer module. Using it anyway.", 334}, + {"Normalize", 335}, + {"Execute", 336}, + {"Volume Ramping", 337}, + {"Perform linear volume fade on Selection", 338}, + {"Left [%]:", 339}, + {"H", 340}, + {"D", 341}, + {"Right [%]:", 342}, + {"SoundTracker Tip of the day", 343}, + {"Previous Tip", 344}, + {"Next Tip", 345}, + {"Show tip next time", 346}, {"\ Welcome to SoundTracker!\n\ \n\ If you are new to this type of program, you will want to get hold of\n\ -some XM or MOD files first and play with them.", 344}, +some XM or MOD files first and play with them.", 347}, {"\ You can make SoundTracker's edit mode more responsive to keyboard\n\ input by decreasing the mixing buffer size of the \"Editing\" object in\n\ -the Audio Configuration.", 345}, +the Audio Configuration.", 348}, {"\ You can adjust the loop points in the sample editor by holding Shift\n\ -and using the left and right mousebuttons.\n", 346}, +and using the left and right mousebuttons.\n", 349}, {"\ If you want to know more about tracking, and how the various commands\n\ -work, have a look at http://www.united-trackers.org/", 347}, +work, have a look at http://www.united-trackers.org/", 350}, {"\ You can assign samples of an instrument to the individual keys by\n\ activating its sample and then clicking on the keyboard in the\n\ -instrument editor page.", 348}, - {"Arpeggio", 349}, - {"Porta up", 350}, - {"Porta down", 351}, - {"Tone porta", 352}, - {"Vibrato", 353}, - {"Tone porta + Volume slide", 354}, - {"Vibrato + Volume slide", 355}, - {"Tremolo", 356}, - {"Set panning", 357}, - {"Position jump", 358}, - {"Set volume", 359}, - {"Pattern break", 360}, - {"Set tempo/bpm", 361}, - {"Set global volume", 362}, - {"Global volume slide", 363}, - {"Key off", 364}, - {"Set envelop position", 365}, - {"Panning slide", 366}, - {"LP filter resonance", 367}, - {"Multi retrig note", 368}, - {"Tremor", 369}, - {"LP filter cutoff", 370}, - {"Fine porta up", 371}, - {"Fine porta down", 372}, - {"Set gliss control", 373}, - {"Set vibrato control", 374}, - {"Set finetune", 375}, - {"Set loop begin/loop", 376}, - {"Set tremolo control", 377}, - {"Retrig note", 378}, - {"Fine volume slide up", 379}, - {"Fine volume slide down", 380}, - {"Note cut", 381}, - {"Note delay", 382}, - {"Pattern delay", 383}, - {"Volume slide down", 384}, - {"Volume slide up", 385}, - {"Set vibrato speed", 386}, - {"Panning slide left", 387}, - {"Panning slide right", 388}, - {"sine", 389}, - {"ramp down", 390}, - {"square", 391}, - {"Jazz Edit:", 392}, - {"Tracker", 393}, - {"Font list", 394}, - {"Add font", 395}, - {"Delete font", 396}, - {"Apply font", 397}, - {"Up", 398}, - {"Down", 399}, - {"Select font...", 400}, - {"Whole Song", 401}, - {"All Patterns", 402}, - {"Current Pattern", 403}, - {"Current Track", 404}, - {"Current Instrument", 405}, - {"All Instruments", 406}, - {"Half note up", 407}, - {"Half note down", 408}, - {"Octave up", 409}, - {"Octave down", 410}, - {"Exchange 1 <-> 2", 411}, - {"Change 1 -> 2", 412}, - {"Transposition Tools", 413}, - {"Scope of the operation:", 414}, - {"Note Transposition", 415}, - {"Instrument Changing", 416}, - {"Instrument 1:", 417}, - {"Current instrument", 418}, - {"Instrument 2:", 419}, - {"Pattern length out of range: %d.\n", 420}, - {"File is no XI instrument.", 421}, - {"Unknown XI version 0x%x\n", 422}, - {"Invalid vibtype %d, using Sine.\n", 423}, - {"Error while loading patterns.", 424}, - {"Can't open file", 425}, - {"XM header length != 276. Maybe a pre-0.0.12 SoundTracker module? :-)\n", 426}, - {"Error while loading instruments.", 427}, +instrument editor page.", 351}, + {"\ +Is your cursor trapped in a number entry field?\n\ +Just press Return or Tab to free yourself!", 352}, + {"Arpeggio", 353}, + {"Porta up", 354}, + {"Porta down", 355}, + {"Tone porta", 356}, + {"Vibrato", 357}, + {"Tone porta + Volume slide", 358}, + {"Vibrato + Volume slide", 359}, + {"Tremolo", 360}, + {"Set panning", 361}, + {"Position jump", 362}, + {"Set volume", 363}, + {"Pattern break", 364}, + {"Set tempo/bpm", 365}, + {"Set global volume", 366}, + {"Global volume slide", 367}, + {"Key off", 368}, + {"Set envelop position", 369}, + {"Panning slide", 370}, + {"LP filter resonance", 371}, + {"Multi retrig note", 372}, + {"Tremor", 373}, + {"LP filter cutoff", 374}, + {"Fine porta up", 375}, + {"Fine porta down", 376}, + {"Set gliss control", 377}, + {"Set vibrato control", 378}, + {"Set finetune", 379}, + {"Set loop begin/loop", 380}, + {"Set tremolo control", 381}, + {"Retrig note", 382}, + {"Fine volume slide up", 383}, + {"Fine volume slide down", 384}, + {"Note cut", 385}, + {"Note delay", 386}, + {"Pattern delay", 387}, + {"Volume slide down", 388}, + {"Volume slide up", 389}, + {"Set vibrato speed", 390}, + {"Panning slide left", 391}, + {"Panning slide right", 392}, + {"sine", 393}, + {"ramp down", 394}, + {"square", 395}, + {"Jazz Edit:", 396}, + {"Tracker", 397}, + {"Font list", 398}, + {"Add font", 399}, + {"Delete font", 400}, + {"Apply font", 401}, + {"Up", 402}, + {"Down", 403}, + {"Select font...", 404}, + {"Whole Song", 405}, + {"All Patterns", 406}, + {"Current Pattern", 407}, + {"Current Track", 408}, + {"Current Instrument", 409}, + {"All Instruments", 410}, + {"Half note up", 411}, + {"Half note down", 412}, + {"Octave up", 413}, + {"Octave down", 414}, + {"Exchange 1 <-> 2", 415}, + {"Change 1 -> 2", 416}, + {"Transposition Tools", 417}, + {"Scope of the operation:", 418}, + {"Note Transposition", 419}, + {"Instrument Changing", 420}, + {"Instrument 1:", 421}, + {"Current instrument", 422}, + {"Instrument 2:", 423}, + {"Pattern length out of range: %d.\n", 424}, + {"File is no XI instrument.", 425}, + {"Unknown XI version 0x%x\n", 426}, + {"Invalid vibtype %d, using Sine.\n", 427}, + {"Error while loading patterns.", 428}, + {"Can't open file", 429}, + {"XM header length != 276. Maybe a pre-0.0.12 SoundTracker module? :-)\n", 430}, + {"Error while loading instruments.", 431}, {"\ Module contains sample(s) that are too long for the current mixer.\n\ -Maximum sample length is %d.", 428}, - {"Not FastTracker XM and not supported MOD format!", 429}, +Maximum sample length is %d.", 432}, + {"Not FastTracker XM and not supported MOD format!", 433}, }; -int _msg_tbl_length = 429; +int _msg_tbl_length = 433; Binary files soundtracker-0.6.3/po/de.gmo and soundtracker-0.6.4/po/de.gmo differ diff -urN soundtracker-0.6.3/po/de.po soundtracker-0.6.4/po/de.po --- soundtracker-0.6.3/po/de.po Thu May 24 20:26:57 2001 +++ soundtracker-0.6.4/po/de.po Sun Aug 12 12:07:16 2001 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: soundtracker-0.3.3\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 1999-09-21 23:00+02:00\n" "Last-Translator: Colin Marquardt \n" "Language-Team: German \n" @@ -13,47 +13,47 @@ "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Playbackausgang" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Editierausgang" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Samplen" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Treibermodul" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 #, fuzzy msgid "Mixer Module" msgstr "Treibermodul" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 #, fuzzy msgid "Description" msgstr "Frage" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Audio-Konfiguration" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 #, fuzzy msgid "Drivers" msgstr "Treibermodul" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 #, fuzzy msgid "Mixers" msgstr "Modifizierer:" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "Schließen" @@ -69,27 +69,27 @@ msgstr "Geschätzte Audio-Verzögerung: %f Mikrosekunden" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Diese Änderungen werden erst beim nächsten Neustart wirksam." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Auflösung:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Kanäle:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Frequenz [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Puffergröße:" @@ -111,7 +111,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Erforderliches Soundausgabeformat nicht unterstützt.\n" @@ -119,7 +119,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Erforderliche Soundausgabeparameter nicht unterstützt..\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, fuzzy, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Geschätzte Audio-Verzögerung: %f Mikrosekunden" @@ -150,32 +150,45 @@ "Konnte /dev/dsp nicht zur Soundausgabe öffnen:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "Keine Einstellungen (zur Zeit), sorry!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "Kann Datei nicht zum Schreiben öffnen." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Diese Änderungen werden erst beim nächsten Neustart wirksam." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "Konnte /dev/dsp nicht zum Samplen öffnen:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d Samples)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "Konnte /dev/dsp nicht zur Soundausgabe öffnen:\n" @@ -231,11 +244,11 @@ msgid "Loop" msgstr "Loop" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Anfang" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Ende" @@ -258,7 +271,7 @@ msgid "Save Song" msgstr "Spiele Song" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "Lade Sample" @@ -441,8 +454,8 @@ msgid "Question" msgstr "Frage" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Abbrechen" @@ -1265,7 +1278,7 @@ msgid "Linear" msgstr "Linear" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1305,157 +1318,157 @@ "Ein Verzeichnis namens '.soundtracker' wurde in Ihrem Home-Verzeichnis \n" "angelegt, um Konfigurationsdateien darin zu speichern.\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "Keine Loop" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "PingPong" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 Bits" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 Bits" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "Sample-Editor" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "Lautstärke" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "Balance" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "Feineinstellung" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 #, fuzzy msgid "Selection:" msgstr "_Auswahl" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 #, fuzzy msgid "None" msgstr "Note:" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 #, fuzzy msgid "Length:" msgstr "Länge" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "RelNote" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 #, fuzzy msgid "Load Sample..." msgstr "Lade Sample..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 #, fuzzy msgid "Save WAV..." msgstr "Speichere WAV..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 #, fuzzy msgid "Save region as WAV..." msgstr "Speichere WAV..." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "Speichere WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "Monitor" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "Lautstärke" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "Zoom in Auswahl" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Zeige alles" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "Zoom in (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "Zoom out (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 #, fuzzy msgid "Reverse" msgstr "Entfernen" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "Ausschneiden" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "Entfernen" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "Kopieren" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "Einfügen" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 #, fuzzy msgid "Clear Sample" msgstr "Lade Sample" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 #, fuzzy msgid "(no selection)" msgstr "Zoom in Auswahl" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "Lesefehler." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 #, fuzzy msgid "Load stereo sample" msgstr "Lade Sample" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1463,26 +1476,26 @@ "Please choose which channel to load:" msgstr "" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 #, fuzzy msgid "Left" msgstr "Links [%]:" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 #, fuzzy msgid "Right" msgstr "Rechts [%]:" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 #, fuzzy msgid "Load raw sample" msgstr "Lade Sample" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1490,82 +1503,82 @@ "Please choose a format:" msgstr "" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "OK" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "Kann Sample nicht lesen" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "Sample ist zu lang für aktuelles Mixer-Modul. Lade trotzdem." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 #, fuzzy msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "Kann nur mono- 8 und 16 Bit Samples verarbeiten" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "" -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "Starte Sampling" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "Sampling-Fenster" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "Aufgezeichnetes Sample ist zu lang für aktuelles Mixer-Modul. Verwende es " "trotzdem." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "Normalisieren" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "Ausführen" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "Lautstärke-Anpassung" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "Lineare Lautstärkenverringerung auf Markierung" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "Links [%]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "Rechts [%]:" @@ -1636,6 +1649,12 @@ "Sie können Samples eines Instruments einzelnen Tasten zuweisen, indem Sie \n" "das Sample aktivieren und dann auf die Tastatur im Instrumenten-Editor " "klicken." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/es.gmo and soundtracker-0.6.4/po/es.gmo differ diff -urN soundtracker-0.6.3/po/es.po soundtracker-0.6.4/po/es.po --- soundtracker-0.6.3/po/es.po Thu May 24 20:26:57 2001 +++ soundtracker-0.6.4/po/es.po Sun Aug 12 12:07:16 2001 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 1999-10-02 23:58+0200\n" "Last-Translator: German Gomez >\n" "Language-Team: Spanish \n" @@ -14,47 +14,47 @@ "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Salida para reproducción" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Salida para edición" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Muestreo" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Módulo de dispositivo" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 #, fuzzy msgid "Mixer Module" msgstr "Módulo de dispositivo" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 #, fuzzy msgid "Description" msgstr "Pregunta" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Configuración de Audio" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 #, fuzzy msgid "Drivers" msgstr "Módulo de dispositivo" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 #, fuzzy msgid "Mixers" msgstr "Modificadores" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "" @@ -70,27 +70,27 @@ msgstr "Retraso de audio estimado: %f microsegundos" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Estos cambios no tendrán efecto hasta la próxima reproducción" #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Resolución:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Canales:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Frecuencia [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Tamaño del buffer:" @@ -113,7 +113,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "El formato sonoro solicitado no esta soportado.\n" @@ -121,7 +121,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Los parámetros de salida de sonido no estan soportados.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, fuzzy, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Retraso de audio estimado: %f microsegundos" @@ -153,32 +153,45 @@ "No se pudo abrir /dev/dsp para salida de sonido:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "no hay preferencias (todavía), ¡lo siento!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "" -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Estos cambios no tendrán efecto hasta la próxima reproducción" + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "No se pudo abrir /dev/dsp para muestreo:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d muestras)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "No se pudo abrir /dev/dsp para salida de sonido:\n" @@ -234,11 +247,11 @@ msgid "Loop" msgstr "Ciclo" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Comienzo" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Final" @@ -260,7 +273,7 @@ msgid "Save Song" msgstr "Reproducir Cancion" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "" @@ -433,8 +446,8 @@ msgid "Question" msgstr "Pregunta" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Cancelar" @@ -1214,7 +1227,7 @@ msgid "Linear" msgstr "" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "" @@ -1252,153 +1265,153 @@ "home directory to store configuration files.\n" msgstr "" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 #, fuzzy msgid "Selection:" msgstr "Resolución:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 #, fuzzy msgid "None" msgstr "Nota:" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 #, fuzzy msgid "Length:" msgstr "Longitud" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 #, fuzzy msgid "Load Sample..." msgstr "Abrir XM..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 #, fuzzy msgid "Save WAV..." msgstr "Guardar XM..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "" -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 #, fuzzy msgid "Clear Sample" msgstr "Muestra" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "" -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1406,25 +1419,25 @@ "Please choose which channel to load:" msgstr "" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 #, fuzzy msgid "Left" msgstr "Longitud" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 #, fuzzy msgid "Load raw sample" msgstr "Abrir XM..." -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1432,79 +1445,79 @@ "Please choose a format:" msgstr "" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "" -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "" -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "" @@ -1556,6 +1569,12 @@ "You can assign samples of an instrument to the individual keys by\n" "activating its sample and then clicking on the keyboard in the\n" "instrument editor page." +msgstr "" + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" msgstr "" #: app/track-editor.c:85 Binary files soundtracker-0.6.3/po/fr.gmo and soundtracker-0.6.4/po/fr.gmo differ diff -urN soundtracker-0.6.3/po/fr.po soundtracker-0.6.4/po/fr.po --- soundtracker-0.6.3/po/fr.po Thu May 24 20:26:57 2001 +++ soundtracker-0.6.4/po/fr.po Sun Aug 12 12:07:16 2001 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: soundtracker-0.6.1\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 2000-11-16 04:37GMT\n" "Last-Translator: \n" "Language-Team: \n" @@ -14,45 +14,45 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.5.5\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Sortie Sonore" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Edition de la Sortie Sonore" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Echantillonneur" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Module de pilote" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 #, fuzzy msgid "Mixer Module" msgstr "Module de pilote" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "Description" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Configuration sonore" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 #, fuzzy msgid "Drivers" msgstr "Module de pilote" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "Mélangeur" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "Fermer" @@ -68,27 +68,27 @@ msgstr "Délaie estimé: %f microsecondes" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Les changements ne prendront effet qu'au redémarrage de l'application." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Résolution:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Canaux:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Fréquence [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Taille du tampon:" @@ -110,7 +110,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Le format sonore n'est pas supporté.\n" @@ -118,7 +118,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Les paramètres sonores ne sont pas supportés.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Délaie estimé: %f microsecondes" @@ -154,32 +154,45 @@ "Impossible de se connecter a ESD pour la sortie sonore:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "Pas de configuration (pour l'instant), désolé!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "Impossible d'ouvrir le fichier pour l'écriture." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Les changements ne prendront effet qu'au redémarrage de l'application." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "Impossible d'ouvrir /dev/dsp pour l'échantillonneur:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d échantillons)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "Impossible d'ouvrir /dev/dsp pour la sortie sonore:\n" @@ -235,11 +248,11 @@ msgid "Loop" msgstr "Boucle" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Démarrer" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Fin" @@ -259,7 +272,7 @@ msgid "Save Song" msgstr "Sauver Musique" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "Charger Echantillon" @@ -422,8 +435,8 @@ msgid "Question" msgstr "Question" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Annuler" @@ -1192,7 +1205,7 @@ msgid "Linear" msgstr "Linéaire" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1232,147 +1245,147 @@ "Un répertoire appeler '.soundtracker' a été créé dans votre\n" "répertoire maison pour y créer un fichier de sauvegarde .\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "Pas de boucle" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "Ping Pong" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 bits" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 bits" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "Editeur d'échantillon" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "Volume" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "Panoramique" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "Regulation affinée" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "Sélection:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "Aucun" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "Tout" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "Durée:" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "Assigner en tant que boucle" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "NoteRelative" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "Charger Echantillon.." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "Sauver WAV.." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "Sauver la région en WAV.." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "Sauver WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "Sauver Region" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "Moniteur" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "Rampe du Volume" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "Zoom dans la sélection" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Montrer tout" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "Zoom avant (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "Zoom arrière (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "Inverser" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "Couper" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "Enlever" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "Copier" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "Coller" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "Effacer Echantillon" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "(pas de sélection)" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "Erreur de lecture." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "Charger Echantillon Stéréo" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1384,23 +1397,23 @@ "\n" "SVP choisissez le canal à charger:" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "Gauche" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "Mixer" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "Droit" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "Charger Echantillon brut" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1412,82 +1425,82 @@ "\n" "SVP choisissez un format:" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "Wortformat:" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "OK" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "Impossible de lire l'échantillon" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "" "L'échantillon est trop long pour le mixer. Continue chargementnéanmoins." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 #, fuzzy msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "Ne peut supporter que les échantillons mono 8/16 bits" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "Rien à sauver." -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "Démarre l'échantillonage" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "Pas de pilotes d'échantillon disponible" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "Fenêtre d'echantillonage" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "L'échantillon enregistré est trop long pour le mixer. Continuenéanmoins." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "Normaliser" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "Exécuter" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "Rampe du Volume" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "Appliquer un volume linéaire à la sélection " -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "Gauche [%]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "H" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "D" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "Droit [%]:" @@ -1555,6 +1568,12 @@ "Vous pouvez assignez des échantillons d'un instrument à differentes touches\n" "en activant ses échantillons et en cliquant ensuite sur le clavier dans la\n" "page de l'éditeur d'instrument." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/gl.gmo and soundtracker-0.6.4/po/gl.gmo differ diff -urN soundtracker-0.6.3/po/gl.po soundtracker-0.6.4/po/gl.po --- soundtracker-0.6.3/po/gl.po Thu Jan 1 01:00:00 1970 +++ soundtracker-0.6.4/po/gl.po Sun Aug 12 12:07:17 2001 @@ -0,0 +1,2055 @@ +# Mensaxes en galego pra o SoundTracker +# Copyright (C) 2000 Free Software Foundation, Inc. +# Xosé Anxo Pereira Torreiro , 2000. +# +msgid "" +msgstr "" +"Project-Id-Version: soundtracker 0.3.9\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" +"PO-Revision-Date: 2000-11-01 17:07+01:00\n" +"Last-Translator: Xosé Anxo Pereira Torreiro \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: app/audioconfig.c:62 +msgid "Playback Output" +msgstr "Saída de Reproducción" + +#: app/audioconfig.c:68 +msgid "Editing Output" +msgstr "Saída de Edición" + +#: app/audioconfig.c:74 +msgid "Sampling" +msgstr "Sampleado" + +#: app/audioconfig.c:260 +msgid "Driver Module" +msgstr "Módulo do Controlador" + +#: app/audioconfig.c:261 +#, fuzzy +msgid "Mixer Module" +msgstr "Módulo do Controlador" + +#: app/audioconfig.c:262 +#, fuzzy +msgid "Description" +msgstr "Pregunta" + +#: app/audioconfig.c:270 app/audioconfig.c:273 +msgid "Audio Configuration" +msgstr "Configuración do Son" + +#: app/audioconfig.c:288 +#, fuzzy +msgid "Drivers" +msgstr "Módulo do Controlador" + +#: app/audioconfig.c:325 +#, fuzzy +msgid "Mixers" +msgstr "Mesturado" + +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 +#: app/tips-dialog.c:165 app/transposition.c:313 +msgid "Close" +msgstr "Pechar" + +#: app/drivers/alsa-input.c:125 app/drivers/alsa-output.c:134 +#, c-format +msgid "(%d bytes)" +msgstr "(%d bytes)" + +#: app/drivers/alsa-input.c:128 +#, c-format +msgid "Estimated audio delay: %f microseconds" +msgstr "Retraso estimado no son: %f microsegundos" + +#: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 +#: app/drivers/oss-output.c:199 +msgid "These changes won't take effect until you restart playing." +msgstr "Estes cambios non terán efecto ata que reinicie a reproducción." + +#: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 +msgid "Resolution:" +msgstr "Resolución:" + +#: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 +msgid "Channels:" +msgstr "Canles:" + +#: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 +#: app/drivers/oss-output.c:247 +msgid "Frequency [Hz]:" +msgstr "Frecuencia [Hz]:" + +#: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 +#: app/drivers/oss-output.c:257 +msgid "Buffer Size:" +msgstr "Tamaño de Buffer:" + +#: app/drivers/alsa-input.c:268 app/drivers/alsa-output.c:274 +msgid "ALSA card number:" +msgstr "Número de tarxeta ALSA" + +#: app/drivers/alsa-input.c:283 app/drivers/alsa-output.c:289 +msgid "ALSA device number:" +msgstr "Número de dispositivo ALSA" + +#: app/drivers/alsa-input.c:374 +#, c-format +msgid "" +"Couldn't open ALSA device for sound input (card:%d, device:%d):\n" +"%s" +msgstr "" +"Non se puido abri-lo dispositivo ALSA para entrada de son (tarxeta:%d, " +"dispositivo:%d):\n" +"%s" + +#: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 +msgid "Required sound output format not supported.\n" +msgstr "O formato requirido para a saída de son non está soportado.\n" + +#: app/drivers/alsa-input.c:439 app/drivers/alsa-output.c:441 +msgid "Required sound output parameters not supported.\n" +msgstr "Os parámetros requiridos para a saída de son non están soportados.\n" + +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 +#, fuzzy, c-format +msgid "Estimated audio delay: %f milliseconds" +msgstr "Retraso estimado no son: %f microsegundos" + +#: app/drivers/alsa-output.c:377 +#, c-format +msgid "" +"Couldn't open ALSA device for sound output (card:%d, device:%d):\n" +"%s" +msgstr "" +"Non se puido abri-lo dispositivo ALSA para a saída de son (tarxeta:%d, " +"dispositivo:%d):\n" +"%s" + +#: app/drivers/esd-output.c:96 +#, fuzzy +msgid "" +"Note that the ESD output is unusable in\n" +"interactive mode because of the latency added\n" +"by ESD. Use the OSS or ALSA output plug-ins\n" +"for serious work." +msgstr "" +"Advirta que a saída ESD non se pode\n" +"usar de xeito interactivo.\n" +"Use os plug-ins de ALSA ou OSS\n" +"para traballos serios.\n" + +#: app/drivers/esd-output.c:161 +#, c-format +msgid "" +"Couldn't connect to ESD for sound output:\n" +"%s" +msgstr "" +"Non se puido conectar coa saída de son ESD:\n" +"%s" + +#: app/drivers/file-output.c:86 +msgid "no settings (yet), sorry!" +msgstr "non é configurable (ainda), síntoo" + +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 +msgid "Can't open file for writing." +msgstr "Non se pode abri-lo ficheiro para escritura" + +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Estes cambios non terán efecto ata que reinicie a reproducción." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format +msgid "" +"Couldn't open %s for sampling:\n" +"%s" +msgstr "" +"Non se puido abrir /dev/dsp para sampleado:\n" +"%s" + +#: app/drivers/oss-output.c:177 +#, c-format +msgid "(%d samples)" +msgstr "(%d samples)" + +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format +msgid "" +"Couldn't open %s for sound output:\n" +"%s" +msgstr "" +"Non se puido abrir /dev/dsp para a saída de son:\n" +"%s" + +#: app/envelope-box.c:878 +msgid "Length" +msgstr "Lonxitude" + +#: app/envelope-box.c:879 +msgid "Current" +msgstr "Actual" + +#: app/envelope-box.c:880 +msgid "Offset" +msgstr "Desprazamento" + +#: app/envelope-box.c:881 +msgid "Value" +msgstr "Valor" + +#: app/envelope-box.c:887 app/playlist.c:301 +msgid "Insert" +msgstr "Inserir" + +#: app/envelope-box.c:893 app/playlist.c:307 +msgid "Delete" +msgstr "Suprimir" + +#: app/envelope-box.c:982 +msgid "" +"Graphical\n" +"Envelope\n" +"Editor\n" +"only in\n" +"GNOME Version" +msgstr "" +"Editor de\n" +"Envolvente\n" +"Gráfico\n" +"só na\n" +"Versión GNOME" + +#: app/envelope-box.c:997 +msgid "Sustain" +msgstr "Soster" + +#: app/envelope-box.c:1005 +msgid "Point" +msgstr "Punto" + +#: app/envelope-box.c:1007 +msgid "Loop" +msgstr "Lazo" + +#: app/envelope-box.c:1015 app/sample-editor.c:244 +msgid "Start" +msgstr "Comezo" + +#: app/envelope-box.c:1016 app/sample-editor.c:245 +msgid "End" +msgstr "Remate" + +#: app/file-operations.c:153 +msgid "Load Module" +msgstr "Cargar Módulo" + +#: app/file-operations.c:154 +msgid "Save Module" +msgstr "Gardar Módulo" + +#: app/file-operations.c:155 +msgid "Render WAV" +msgstr "Crear WAV" + +#: app/file-operations.c:156 +#, fuzzy +msgid "Save Song" +msgstr "Reproducir Peza" + +#: app/file-operations.c:157 app/sample-editor.c:352 +msgid "Load Sample" +msgstr "Cargar Sample" + +#: app/file-operations.c:158 +msgid "Save Sample" +msgstr "Gardar Sample" + +#: app/file-operations.c:159 +msgid "Load Instrument" +msgstr "Cargar Instrumento" + +#: app/file-operations.c:160 +msgid "Save Instrument" +msgstr "Gardar Instrumento" + +#: app/file-operations.c:166 +msgid "File" +msgstr "Ficheiro" + +#: app/file-operations.c:217 +msgid "Operation not supported." +msgstr "Operación non soportada." + +#: app/gui-settings.c:92 +msgid "Scopes Frequency" +msgstr "Frecuencia de alcance" + +#: app/gui-settings.c:95 +msgid "Tracker Frequency" +msgstr "Frecuencia de Rastreo" + +#: app/gui-settings.c:316 app/gui-settings.c:319 +msgid "GUI Configuration" +msgstr "Configuración GUI" + +#: app/gui-settings.c:353 +#, fuzzy +msgid "Hexadecimal row numbers" +msgstr "Usar Números Hexadecimais" + +#: app/gui-settings.c:360 +msgid "Use upper case letters for hex numbers" +msgstr "Usar letras maiúsculas nos números hexadecimais" + +#: app/gui-settings.c:367 +#, fuzzy +msgid "Advance cursor horizontally in effect columns" +msgstr "Avanza-lo Cursor nas Columnas FX" + +#: app/gui-settings.c:374 +msgid "Asynchronous Editing" +msgstr "" + +#: app/gui-settings.c:381 +msgid "Channel numbering" +msgstr "" + +#: app/gui-settings.c:388 +msgid "Tempo and BPM update" +msgstr "" + +#: app/gui-settings.c:395 +msgid "Auto switch" +msgstr "" + +#: app/gui-settings.c:402 +msgid "Use anti-aliased envelope editor" +msgstr "Usa-lo editor de envolvente con antialiasing" + +#: app/gui-settings.c:408 +msgid "You need to restart SoundTracker for this change to come into effect." +msgstr "Precisa reiniciar SoundTraker para que os cambios teñan efecto" + +#: app/gui-settings.c:417 +msgid "Scopes buffer size [MB]" +msgstr "Tamaño do Buffer dos Osciloscopios [MB]" + +#: app/gui-settings.c:436 +msgid "Highlight rows:" +msgstr "Salientar filas" + +#: app/gui-settings.c:460 +msgid "Track line format:" +msgstr "" + +#: app/gui-settings.c:512 +msgid "`Save XM' saves all non-empty patterns" +msgstr "'Gardar XM' garda todolos patróns que non estean baleiros" + +#: app/gui-subs.c:32 +msgid "Idle." +msgstr "" + +#: app/gui-subs.c:33 +#, fuzzy +msgid "Playing song..." +msgstr "Reproducir Peza" + +#: app/gui-subs.c:34 +#, fuzzy +msgid "Playing pattern..." +msgstr "Reproducir Patrón" + +#: app/gui-subs.c:35 +#, fuzzy +msgid "Loading module..." +msgstr "Cargar Módulo" + +#: app/gui-subs.c:36 +#, fuzzy +msgid "Module loaded." +msgstr "Información do Módulo" + +#: app/gui-subs.c:37 +#, fuzzy +msgid "Saving module..." +msgstr "Gardar Módulo" + +#: app/gui-subs.c:38 +#, fuzzy +msgid "Module saved." +msgstr "_Módulo" + +#: app/gui-subs.c:39 +#, fuzzy +msgid "Loading sample..." +msgstr "Cargar Sample.." + +#: app/gui-subs.c:40 +#, fuzzy +msgid "Sample loaded." +msgstr "Nome do Sample" + +#: app/gui-subs.c:41 +#, fuzzy +msgid "Saving sample..." +msgstr "Gardar Sample" + +#: app/gui-subs.c:42 +#, fuzzy +msgid "Sample saved." +msgstr "Nome do Sample" + +#: app/gui-subs.c:43 +#, fuzzy +msgid "Loading instrument..." +msgstr "Cargar Instrumento" + +#: app/gui-subs.c:44 +#, fuzzy +msgid "Instrument loaded." +msgstr "Nome do Instrumento" + +#: app/gui-subs.c:45 +#, fuzzy +msgid "Saving instrument..." +msgstr "Gardar Instrumento.." + +#: app/gui-subs.c:46 +#, fuzzy +msgid "Instrument saved." +msgstr "Nome do Instrumento" + +#: app/gui-subs.c:47 +#, fuzzy +msgid "Saving song..." +msgstr "Gardar _coma..." + +#: app/gui-subs.c:48 +#, fuzzy +msgid "Song saved." +msgstr "Nome da Peza:" + +#: app/gui-subs.c:470 +msgid "Question" +msgstr "Pregunta" + +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 +msgid "Cancel" +msgstr "Cancelar" + +#: app/gui-subs.c:505 +msgid "Warning" +msgstr "Aviso" + +#: app/gui-subs.c:531 +msgid "Error!" +msgstr "¡Erro!" + +#: app/gui.c:87 +msgid "Tempo" +msgstr "Tempo" + +#: app/gui.c:237 +msgid "" +"Are you sure you want to free the current project?\n" +"All changes will be lost!" +msgstr "" +"¿Esta certo de que quere deixa-lo proxecto actual?\n" +"Ha perder todolos cambios" + +#: app/gui.c:251 app/gui.c:265 app/gui.c:279 +msgid "Are you sure you want to overwrite the file?" +msgstr "¿Esta certo de que quere sobrescribi-lo ficheiro?" + +#: app/gui.c:1250 +msgid "Load XM..." +msgstr "Cargar XM..." + +#: app/gui.c:1252 +msgid "Save XM..." +msgstr "Gardar XM..." + +#: app/gui.c:1255 +msgid "Render module as WAV..." +msgstr "Crear un WAV do módulo..." + +#: app/gui.c:1258 +#, fuzzy +msgid "Save song as XM..." +msgstr "Gardar XM..." + +#: app/gui.c:1309 +msgid "Play Song" +msgstr "Reproducir Peza" + +#: app/gui.c:1315 +msgid "Play Pattern" +msgstr "Reproducir Patrón" + +#: app/gui.c:1321 +msgid "Stop" +msgstr "Deter" + +#: app/gui.c:1340 +msgid "Number of Channels:" +msgstr "Número de Canles:" + +#: app/gui.c:1357 app/playlist.c:294 +msgid "Pattern" +msgstr "Patrón" + +#: app/gui.c:1374 +msgid "PatLength" +msgstr "LonxPat" + +#: app/gui.c:1467 +msgid "Octave" +msgstr "Oitava" + +#: app/gui.c:1476 +msgid "Jump" +msgstr "Salto" + +#: app/gui.c:1485 +msgid "Instr" +msgstr "Instr" + +#: app/gui.c:1501 +msgid "Sample" +msgstr "Sample" + +#: app/gui.c:1565 +msgid "%M:%S" +msgstr "" + +#: app/instrument-editor.c:75 +msgid "VolFade" +msgstr "DiminVol" + +#: app/instrument-editor.c:76 +msgid "VibSpeed" +msgstr "VelocVib" + +#: app/instrument-editor.c:77 +msgid "VibDepth" +msgstr "ProfVib" + +#: app/instrument-editor.c:78 +msgid "VibSweep" +msgstr "ArrastVib" + +#: app/instrument-editor.c:156 app/instrument-editor.c:179 +msgid "Can't open file." +msgstr "Non se pode abri-lo ficheiro" + +#: app/instrument-editor.c:216 +msgid "Sine" +msgstr "Seo" + +#: app/instrument-editor.c:216 +msgid "Square" +msgstr "Cadrada" + +#: app/instrument-editor.c:216 +msgid "Saw Down" +msgstr "Serra Abaixo" + +#: app/instrument-editor.c:216 +msgid "Saw Up" +msgstr "Serra Arriba" + +#: app/instrument-editor.c:220 +msgid "Instrument Editor" +msgstr "Editor de Instrumentos" + +#: app/instrument-editor.c:229 +msgid "Volume envelope" +msgstr "Envolvente de Volume" + +#: app/instrument-editor.c:237 +msgid "Panning envelope" +msgstr "Envolvente de Canle" + +#: app/instrument-editor.c:254 +#, fuzzy +msgid "Load Instrument..." +msgstr "Cargar Instrumento" + +#: app/instrument-editor.c:256 +#, fuzzy +msgid "Save Instrument..." +msgstr "Gardar Instrumento.." + +#: app/instrument-editor.c:258 +msgid "Load XI" +msgstr "Cargar XI" + +#: app/instrument-editor.c:264 +msgid "Save XI" +msgstr "Gardar XI" + +#: app/instrument-editor.c:283 +msgid "Vibrato Type:" +msgstr "Tipo de Vibrato:" + +#: app/instrument-editor.c:355 +msgid "Note:" +msgstr "Nota:" + +#: app/instrument-editor.c:373 +msgid "Initialize" +msgstr "Inicializar" + +#: app/keys.c:126 +msgid "The key that inserts the special keyoff note for FastTracker modules." +msgstr "" +"A tecla que inserta a nota especial 'keyoff' para os módulos de FastTracker" + +#: app/keys.c:139 +#, fuzzy +msgid "Upper Octave Keys..." +msgstr "Teclas da Oitava Superior" + +#: app/keys.c:140 +msgid "" +"These are the keys on the upper half of the keyboard. The c key is normally " +"the key to the right of the TAB key. The rest of the keys should be ordered " +"in a piano keyboard fashion, including the number keys row above." +msgstr "" +"Estas son a teclas da metade alta do teclado. A tecla Do adoita se-la tecla " +"da dereita do tabulador. O resto das teclas están ordeadas coma as dun " +"organo electrónico, incluíndo as teclas dos números." + +#: app/keys.c:146 +#, fuzzy +msgid "Lower Octave Keys..." +msgstr "Teclas da Oitava Inferior.." + +#: app/keys.c:147 +msgid "" +"These are the keys on the lower half of the keyboard. The c key is normally " +"the first character key to the right of the left Shift key. The rest of the " +"keys should be ordered in a piano keyboard fashion, including the row above." +msgstr "" +"Estas son a teclas da metade inferior do teclado. A tecla Do adoita se-la " +"primeira á dereita da tecla de maiúsculas da esquerda. O resto das teclas " +"están ordeadas coma as dun organo electrónico, incluindo a fila de enriba." + +#: app/keys.c:153 +#, fuzzy +msgid "Other Keys..." +msgstr "Outras teclas.." + +#: app/keys.c:154 +msgid "Various other keys" +msgstr "Outras teclas" + +#: app/keys.c:507 +msgid "Function" +msgstr "Función" + +#: app/keys.c:508 +msgid "Assignment" +msgstr "Asignación" + +#: app/keys.c:517 app/keys.c:520 +msgid "Keyboard Configuration" +msgstr "Configuración do Teclado" + +#: app/keys.c:569 +msgid "Key Group Explanation" +msgstr "Comentario do Grupo de Teclas" + +#: app/keys.c:586 +msgid "Key Explanation" +msgstr "Comentario da tecla" + +#: app/keys.c:617 +msgid "Modifiers:" +msgstr "Modificadores:" + +#: app/keys.c:643 +msgid "Learn selected key" +msgstr "Aprende-la tecla seleccionada" + +#: app/keys.c:649 +msgid "Learn all keys" +msgstr "Aprender tódalas teclas" + +#: app/keys.c:655 +msgid "" +"Please press the desired key combination!\n" +"Click into left list to cancel" +msgstr "" +"Prema a combinación de teclas correspondente\n" +"Prema na lista da esquerda para cancelar" + +#: app/keys.c:685 app/menubar.c:99 +msgid "Ok" +msgstr "Aceptar" + +#: app/keys.c:695 +msgid "Apply" +msgstr "" + +#: app/keys.c:765 +msgid "" +"The keyboard configuration file is defective.\n" +"Please use the Keyboard Configuration dialog." +msgstr "" +"O ficheiro de configuración do teclado é defectuoso.\n" +"Por favor, use o diálogo de Configuración do Teclado." + +#: app/keys.c:1016 +msgid "" +"Automatic key configuration unsuccessful.\n" +"Please use the Keyboard Configuration dialog\n" +"in the Settings menu." +msgstr "" +"Fallou a configuración automática de teclas.\n" +"Por favor, use a opción Configuración do Teclado\n" +"do menú Configuración." + +#: app/menubar.c:135 +msgid "" +"Are you sure you want to do this?\n" +"All changes will be lost!" +msgstr "" +"¿Está certo de que quere facer isto?\n" +"Ha perder tódolos cambios" + +#: app/menubar.c:157 +msgid "" +"Are you sure you want to quit?\n" +"All changes will be lost!" +msgstr "" +"¿Está certo de que quere saír?\n" +"Ha perder tódolos cambios" + +#: app/menubar.c:280 +msgid "_Open..." +msgstr "_Abrir..." + +#: app/menubar.c:282 +msgid "Save _as..." +msgstr "Gardar _coma..." + +#: app/menubar.c:288 +msgid "Save Module as _WAV..." +msgstr "Gardar Módulo coma _WAV..." + +#: app/menubar.c:290 +msgid "Save XM without samples..." +msgstr "" + +#: app/menubar.c:295 +msgid "_Quit" +msgstr "_Saír" + +#: app/menubar.c:302 +msgid "Clear _All" +msgstr "Limpalo _Todo" + +#: app/menubar.c:304 +msgid "Clear _Patterns Only" +msgstr "Limpar Só os _Patróns" + +#: app/menubar.c:306 +msgid "_Optimize Module" +msgstr "_Optimizar Módulo" + +#: app/menubar.c:313 app/menubar.c:324 app/menubar.c:349 app/menubar.c:383 +msgid "C_ut" +msgstr "C_ortar" + +#: app/menubar.c:315 app/menubar.c:326 app/menubar.c:351 app/menubar.c:385 +msgid "_Copy" +msgstr "_Copiar" + +#: app/menubar.c:317 app/menubar.c:328 app/menubar.c:353 app/menubar.c:387 +msgid "_Paste" +msgstr "_Pegar" + +#: app/menubar.c:330 +msgid "_Kill notes" +msgstr "" + +#: app/menubar.c:332 +msgid "_Insert" +msgstr "_Inserir" + +#: app/menubar.c:334 +msgid "_Delete" +msgstr "_Borrar" + +#: app/menubar.c:336 +msgid "Increment cmd value" +msgstr "" + +#: app/menubar.c:338 +msgid "Decrement cmd value" +msgstr "" + +#: app/menubar.c:345 +#, fuzzy +msgid "_Mark mode" +msgstr "_Marcar" + +#: app/menubar.c:347 app/menubar.c:381 +msgid "C_lear block marks" +msgstr "" + +#: app/menubar.c:355 app/menubar.c:389 +msgid "_Interpolate effects" +msgstr "" + +#: app/menubar.c:363 +msgid "_Jazz Edit Mode" +msgstr "Modo de Edición _Jazz" + +#: app/menubar.c:368 +msgid "Transp_osition..." +msgstr "Trasp_osicións..." + +#: app/menubar.c:373 app/menubar.c:396 app/menubar.c:496 +msgid "_Pattern" +msgstr "_Patrón" + +#: app/menubar.c:374 app/menubar.c:397 +msgid "_Track" +msgstr "_Pista" + +#: app/menubar.c:375 app/menubar.c:398 +msgid "_Selection" +msgstr "_Selección" + +#: app/menubar.c:403 +msgid "_Find Unused Pattern" +msgstr "_Buscar Patróns sen Usar" + +#: app/menubar.c:405 +msgid "_Copy Current to Unused Pattern" +msgstr "_Copia-lo Seleccionado a un Patrón sen Usar" + +#: app/menubar.c:407 +msgid "C_lear Unused Patterns" +msgstr "_Limpar Patrons sen Usar" + +#: app/menubar.c:409 +msgid "_Pack Patterns" +msgstr "Em_pacar Patróns" + +#: app/menubar.c:416 +msgid "_Load XI..." +msgstr "_Cargar XI..." + +#: app/menubar.c:418 +msgid "_Save XI..." +msgstr "_Gardar XI..." + +#: app/menubar.c:423 +msgid "_Clear Current" +msgstr "_Limpa-lo Seleccionado" + +#: app/menubar.c:428 +msgid "_Delete Unused Instruments" +msgstr "_Borra-los Instrumentos sen Usar" + +#: app/menubar.c:435 +msgid "Use _Backing Store" +msgstr "Usar Espacio de _Respaldo" + +#: app/menubar.c:438 +#, fuzzy +msgid "_Previous font" +msgstr "Consello anterior" + +#: app/menubar.c:440 +msgid "_Next font" +msgstr "" + +#: app/menubar.c:448 +msgid "Display _Oscilloscopes" +msgstr "Amosa-los _Osciloscopios" + +#: app/menubar.c:451 +#, fuzzy +msgid "_Tracker" +msgstr "Tracker" + +#: app/menubar.c:455 +msgid "_Keyboard Configuration..." +msgstr "Configuración do _Teclado..." + +#: app/menubar.c:457 +msgid "_Audio Configuration..." +msgstr "_Configuración de Son..." + +#: app/menubar.c:459 +msgid "_GUI Configuration..." +msgstr "Configuración _GUI..." + +#: app/menubar.c:465 +#, fuzzy +msgid "_MIDI Configuration..." +msgstr "Configuración _GUI..." + +#: app/menubar.c:470 +msgid "_Save Settings now" +msgstr "_Garda-la Configuración agora" + +#: app/menubar.c:472 +msgid "Save Settings on _Exit" +msgstr "Garda-la Configuración ao _Saír" + +#: app/menubar.c:479 +msgid "_About..." +msgstr "_Acerca de..." + +#: app/menubar.c:484 +msgid "Show _Tips..." +msgstr "Amosar _Consellos..." + +#: app/menubar.c:486 +msgid "_XM Effects..." +msgstr "Efectos _XM..." + +#: app/menubar.c:493 +msgid "_File" +msgstr "_Ficheiro" + +#: app/menubar.c:494 +msgid "_Module" +msgstr "_Módulo" + +#: app/menubar.c:495 +msgid "_Edit" +msgstr "_Edición" + +#: app/menubar.c:497 +msgid "_Instrument" +msgstr "_Instrumento" + +#: app/menubar.c:498 +msgid "_Settings" +msgstr "_Configuración" + +#: app/menubar.c:499 +msgid "_Help" +msgstr "_Axuda" + +#: app/menubar.c:536 +msgid "/_File" +msgstr "/_Ficheiro" + +#: app/menubar.c:537 +msgid "/File/_Open..." +msgstr "/Ficheiro/_Abrir..." + +#: app/menubar.c:538 +msgid "/File/Save _as..." +msgstr "/Ficheiro/Gardar _coma..." + +#: app/menubar.c:539 app/menubar.c:542 +msgid "/File/-" +msgstr "/Ficheiro/-" + +#: app/menubar.c:540 +msgid "/File/Save Module as _WAV..." +msgstr "/Ficheiro/Gardar Módulo coma _WAV..." + +#: app/menubar.c:541 +#, fuzzy +msgid "/File/Save XM without samples..." +msgstr "/Ficheiro/Gardar Módulo coma _WAV..." + +#: app/menubar.c:543 +msgid "/File/_Quit" +msgstr "/Ficheiro/_Saír" + +#: app/menubar.c:544 +msgid "/_Module" +msgstr "/_Módulo" + +#: app/menubar.c:545 +msgid "/Module/Clear _All" +msgstr "/Módulo/Limpalo _Todo" + +#: app/menubar.c:546 +msgid "/Module/Clear _Patterns Only" +msgstr "/Módulo/Limpar Só os _Patróns" + +#: app/menubar.c:547 +msgid "/Module/_Optimize Module" +msgstr "/Módulo/_Optimizar Módulo" + +#: app/menubar.c:548 +msgid "/_Edit" +msgstr "/_Edición" + +#: app/menubar.c:549 +msgid "/Edit/_Jazz Edit Mode" +msgstr "/Edición/Modo de Edición _Jazz" + +#: app/menubar.c:550 app/menubar.c:552 +msgid "/Edit/-" +msgstr "/Edición/-" + +#: app/menubar.c:551 +msgid "/Edit/_Transposition..." +msgstr "/Edición/_Transposicións..." + +#: app/menubar.c:553 +msgid "/Edit/_Pattern" +msgstr "/Edición/_Patrón" + +#: app/menubar.c:554 +msgid "/Edit/Pattern/C_ut" +msgstr "/Edición/Patrón/C_ortar" + +#: app/menubar.c:555 +msgid "/Edit/Pattern/_Copy" +msgstr "/Edición/Patrón/_Copiar" + +#: app/menubar.c:556 +msgid "/Edit/Pattern/_Paste" +msgstr "/Edición/Patrón/_Pegar" + +#: app/menubar.c:557 +msgid "/Edit/_Track" +msgstr "/Edición/_Pista" + +#: app/menubar.c:558 +msgid "/Edit/Track/C_ut" +msgstr "/Edición/Pista/C_ortar" + +#: app/menubar.c:559 +msgid "/Edit/Track/_Copy" +msgstr "/Edición/Pista/_Copiar" + +#: app/menubar.c:560 +msgid "/Edit/Track/_Paste" +msgstr "/Edición/Pista/_Pegar" + +#: app/menubar.c:561 +#, fuzzy +msgid "/Edit/Track/_Kill notes" +msgstr "/Edición/Pista/_Suprimir" + +#: app/menubar.c:562 +msgid "/Edit/Track/_Insert" +msgstr "/Edición/Pista/_Inserir" + +#: app/menubar.c:563 +msgid "/Edit/Track/_Delete" +msgstr "/Edición/Pista/_Suprimir" + +#: app/menubar.c:564 +msgid "/Edit/_Selection" +msgstr "/Edición/_Selección" + +#: app/menubar.c:565 +#, fuzzy +msgid "/Edit/Selection/_Mark mode" +msgstr "/Edición/Selección/_Marcar" + +#: app/menubar.c:566 +#, fuzzy +msgid "/Edit/Selection/C_lear block marks" +msgstr "/Edición/Selección/_Marcar" + +#: app/menubar.c:567 +msgid "/Edit/Selection/C_ut" +msgstr "/Edición/Selección/C_ortar" + +#: app/menubar.c:568 +msgid "/Edit/Selection/_Copy" +msgstr "/Edición/Selección/_Copiar" + +#: app/menubar.c:569 +msgid "/Edit/Selection/_Paste" +msgstr "/Edición/Selección/_Pegar" + +#: app/menubar.c:570 +#, fuzzy +msgid "/Edit/Selection/_Interpolate effects" +msgstr "/Edición/Selección/_Pegar" + +#: app/menubar.c:571 +#, fuzzy +msgid "/Edit/Track/Increment cmd value" +msgstr "/Edición/Pista/_Inserir" + +#: app/menubar.c:572 +#, fuzzy +msgid "/Edit/Track/Decrement cmd value" +msgstr "/Edición/Pista/_Suprimir" + +#: app/menubar.c:573 +msgid "/_Pattern" +msgstr "/_Patrón" + +#: app/menubar.c:574 +msgid "/Pattern/_Find Unused Pattern" +msgstr "/Patrón/_Buscar Patróns sen Uso" + +#: app/menubar.c:575 +msgid "/Pattern/_Copy Current to Unused Pattern" +msgstr "/Patrón/_Copia-lo Seleccionado a un Patrón sen Uso" + +#: app/menubar.c:576 +msgid "/Pattern/C_lear Unused Patterns" +msgstr "/Patrón/_Borra-los patrons sen Uso" + +#: app/menubar.c:577 +msgid "/Pattern/_Pack Patterns" +msgstr "/Patrón/Em_pacar Patróns" + +#: app/menubar.c:578 +msgid "/_Instrument" +msgstr "/_Instrumento" + +#: app/menubar.c:579 +msgid "/Instrument/_Load XI..." +msgstr "/Instrumento/_Cargar XI..." + +#: app/menubar.c:580 +msgid "/Instrument/_Save XI..." +msgstr "/Instrumento/_Gardar XI..." + +#: app/menubar.c:581 app/menubar.c:583 +msgid "/Instrument/-" +msgstr "/Instrumento/-" + +#: app/menubar.c:582 +msgid "/Instrument/_Clear Current" +msgstr "/Instrumento/_Borra-lo Actual" + +#: app/menubar.c:584 +msgid "/Instrument/_Delete Unused Instruments" +msgstr "Instrumento/Borrar _Instrumentos sen Uso" + +#: app/menubar.c:585 +msgid "/_Settings" +msgstr "/_Configuración" + +#: app/menubar.c:586 +msgid "/Settings/Display _Oscilloscopes" +msgstr "/Configuración/Amosar _Osciloscopios" + +#: app/menubar.c:587 +#, fuzzy +msgid "/Settings/_Tracker" +msgstr "/Configuración/-" + +#: app/menubar.c:588 +#, fuzzy +msgid "/Settings/Tracker/Use _Backing Store" +msgstr "/Configuración/Usar _Espacio de Respaldo" + +#: app/menubar.c:589 +msgid "/Settings/Tracker/_Previous font" +msgstr "" + +#: app/menubar.c:590 +#, fuzzy +msgid "/Settings/Tracker/_Next font" +msgstr "/Configuración/Garda-la Configuración ao _Saír" + +#: app/menubar.c:591 app/menubar.c:596 +msgid "/Settings/-" +msgstr "/Configuración/-" + +#: app/menubar.c:592 +msgid "/Settings/_Keyboard Configuration..." +msgstr "/Configuración/Configuración do _Teclado..." + +#: app/menubar.c:593 +msgid "/Settings/_Audio Configuration..." +msgstr "/Configuración/Configuración de _Son..." + +#: app/menubar.c:594 +msgid "/Settings/_GUI Configuration..." +msgstr "/Configuracións/Configuración _GUI..." + +#: app/menubar.c:595 +#, fuzzy +msgid "/Settings/_MIDI Configuration..." +msgstr "/Configuracións/Configuración _GUI..." + +#: app/menubar.c:597 +msgid "/Settings/_Save Settings now" +msgstr "/Configuración/_Garda-la Configuración Agora" + +#: app/menubar.c:598 +msgid "/Settings/Save Settings on _Exit" +msgstr "/Configuración/Garda-la Configuración ao _Saír" + +#: app/menubar.c:599 +msgid "/_Help" +msgstr "/_Axuda" + +#: app/menubar.c:600 +msgid "/Help/_About..." +msgstr "/Axuda/_Acerca de..." + +#: app/menubar.c:601 +msgid "/Help/-" +msgstr "/Axuda/-" + +#: app/menubar.c:602 +msgid "/Help/Show _Tips..." +msgstr "/Axuda/Amosar _Consellos..." + +#: app/menubar.c:603 +msgid "/Help/_XM Effects..." +msgstr "/Axuda/Efectos _XM..." + +#: app/module-info.c:115 +msgid "Instrument Name" +msgstr "Nome do Instrumento" + +#: app/module-info.c:115 +msgid "#smpl" +msgstr "#smpl" + +#: app/module-info.c:116 +msgid "Sample Name" +msgstr "Nome do Sample" + +#: app/module-info.c:117 +msgid "Linear" +msgstr "Lineal" + +#: app/module-info.c:117 app/sample-editor.c:204 +msgid "Amiga" +msgstr "Amiga" + +#: app/module-info.c:124 +msgid "Module Info" +msgstr "Información do Módulo" + +#: app/module-info.c:164 +msgid "Songname:" +msgstr "Nome da Peza:" + +#: app/module-info.c:179 +msgid "Frequencies:" +msgstr "Frecuencias:" + +#: app/module-info.c:184 +msgid "ProTracker Mode" +msgstr "Modo ProTracker" + +#: app/playlist.c:292 +msgid "Song length" +msgstr "" + +#: app/playlist.c:293 +#, fuzzy +msgid "Current pos" +msgstr "Actual" + +#: app/playlist.c:295 +msgid "Restart pos" +msgstr "" + +#: app/preferences.c:72 +msgid "" +"A directory called '.soundtracker' has been created in your\n" +"home directory to store configuration files.\n" +msgstr "" +"Creouse un directorio chamado '.soundtracker' no seu\n" +"directorio home para garda-los ficheiros de configuración.\n" + +#: app/sample-editor.c:203 +msgid "No loop" +msgstr "Sen lazo" + +#: app/sample-editor.c:205 +msgid "PingPong" +msgstr "PingPong" + +#: app/sample-editor.c:209 +msgid "8 bits" +msgstr "8 bits" + +#: app/sample-editor.c:210 +msgid "16 bits" +msgstr "16 bits" + +#: app/sample-editor.c:216 +msgid "Sample Editor" +msgstr "Editor de Sample" + +#: app/sample-editor.c:256 +msgid "Volume" +msgstr "Volume" + +#: app/sample-editor.c:257 +msgid "Panning" +msgstr "Panning" + +#: app/sample-editor.c:258 +msgid "Finetune" +msgstr "Axuste fino" + +#: app/sample-editor.c:278 +#, fuzzy +msgid "Selection:" +msgstr "_Selección" + +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 +#, fuzzy +msgid "None" +msgstr "Nota:" + +#: app/sample-editor.c:288 +#, fuzzy +msgid "All" +msgstr "Sel Todo" + +#: app/sample-editor.c:309 +#, fuzzy +msgid "Length:" +msgstr "Lonxitude" + +#: app/sample-editor.c:325 +msgid "Set as loop" +msgstr "" + +#: app/sample-editor.c:333 +msgid "RelNote" +msgstr "NotaRel" + +#: app/sample-editor.c:344 +#, fuzzy +msgid "Load Sample..." +msgstr "Cargar Sample.." + +#: app/sample-editor.c:346 +#, fuzzy +msgid "Save WAV..." +msgstr "Gardar WAV.." + +#: app/sample-editor.c:348 +#, fuzzy +msgid "Save region as WAV..." +msgstr "Gardar Módulo coma _WAV..." + +#: app/sample-editor.c:361 +msgid "Save WAV" +msgstr "Gardar WAV" + +#: app/sample-editor.c:371 +msgid "Save Region" +msgstr "" + +#: app/sample-editor.c:382 +msgid "Monitor" +msgstr "Monitor" + +#: app/sample-editor.c:388 +msgid "Volume Ramp" +msgstr "Rampla de Volume" + +#: app/sample-editor.c:398 +msgid "Zoom to selection" +msgstr "Zoom á selección" + +#: app/sample-editor.c:404 +msgid "Show all" +msgstr "Amosar todo" + +#: app/sample-editor.c:410 +msgid "Zoom in (+50%)" +msgstr "Achegar zoom (+50%)" + +#: app/sample-editor.c:416 +msgid "Zoom out (-50%)" +msgstr "Alonxar zoom (-50%)" + +#: app/sample-editor.c:422 +msgid "Reverse" +msgstr "Inverter" + +#: app/sample-editor.c:432 +msgid "Cut" +msgstr "Cortar" + +#: app/sample-editor.c:438 +msgid "Remove" +msgstr "Suprimir" + +#: app/sample-editor.c:444 +msgid "Copy" +msgstr "Copiar" + +#: app/sample-editor.c:450 +msgid "Paste" +msgstr "Pegar" + +#: app/sample-editor.c:456 +msgid "Clear Sample" +msgstr "Limpar Sample" + +#: app/sample-editor.c:506 +#, fuzzy +msgid "(no selection)" +msgstr "Zoom á selección" + +#: app/sample-editor.c:1106 +msgid "" +msgstr "" + +#: app/sample-editor.c:1223 app/sample-editor.c:1235 +msgid "Read error." +msgstr "Erro de lectura." + +#: app/sample-editor.c:1372 +msgid "Load stereo sample" +msgstr "Cargando o sample estéreo" + +#: app/sample-editor.c:1380 +msgid "" +"You have selected a stereo sample!\n" +"(SoundTracker can only handle mono samples!)\n" +"\n" +"Please choose which channel to load:" +msgstr "" +"¡Seleccionou un sample estéreo!\n" +"(Soundtraker so pode manexar samples mono)\n" +"\n" +"Por favor, escolla a canle para cargar:" + +#: app/sample-editor.c:1391 +msgid "Left" +msgstr "Esquerda" + +#: app/sample-editor.c:1397 +msgid "Mix" +msgstr "Mesturado" + +#: app/sample-editor.c:1403 +msgid "Right" +msgstr "Dereita" + +#: app/sample-editor.c:1481 +#, fuzzy +msgid "Load raw sample" +msgstr "Cargando o sample estéreo" + +#: app/sample-editor.c:1489 +msgid "" +"You have selected a sample that is not\n" +"in a known format. You can load the raw data now.\n" +"\n" +"Please choose a format:" +msgstr "" + +#: app/sample-editor.c:1515 +msgid "Wortformat:" +msgstr "" + +#: app/sample-editor.c:1547 app/sample-editor.c:1753 +msgid "OK" +msgstr "Aceptar" + +#: app/sample-editor.c:1593 +msgid "Can't read sample" +msgstr "Non se pode le-lo sample" + +#: app/sample-editor.c:1602 +msgid "Sample is too long for current mixer module. Loading anyway." +msgstr "" +"O sample é demasiado longo pra o módulo mesturador actual. Cargando de " +"todo-los xeitos." + +#: app/sample-editor.c:1616 +msgid "Can only handle 8 and 16 bit samples with up to 2 channels" +msgstr "So se poden manexar samples de 8 e 16 bit con ata dúas canles" + +#: app/sample-editor.c:1726 +msgid "Nothing to save." +msgstr "" + +#: app/sample-editor.c:1761 +msgid "Start sampling" +msgstr "Comezando o Sampleado" + +#: app/sample-editor.c:1791 +msgid "No sampling driver available" +msgstr "" + +#: app/sample-editor.c:1801 app/sample-editor.c:1804 +msgid "Sampling Window" +msgstr "Xanela de Sampleado" + +#: app/sample-editor.c:1904 +msgid "" +msgstr "" + +#: app/sample-editor.c:1935 +msgid "Recorded sample is too long for current mixer module. Using it anyway." +msgstr "" +"O sample gravado é demasiado longo para o módulo mesturador actual. Usándoo " +"de tódolos xeitos." + +#: app/sample-editor.c:1988 +msgid "Normalize" +msgstr "Normalizar" + +#: app/sample-editor.c:1989 +msgid "Execute" +msgstr "Executar" + +#: app/sample-editor.c:1999 app/sample-editor.c:2002 +msgid "Volume Ramping" +msgstr "Rampleando Volume" + +#: app/sample-editor.c:2018 +msgid "Perform linear volume fade on Selection" +msgstr "Facer un desvaecemento lineal de son no seleccionado" + +#: app/sample-editor.c:2030 +msgid "Left [%]:" +msgstr "Esquerda [%]:" + +#: app/sample-editor.c:2033 app/sample-editor.c:2050 +msgid "H" +msgstr "" + +#: app/sample-editor.c:2039 app/sample-editor.c:2056 +msgid "D" +msgstr "" + +#: app/sample-editor.c:2047 +msgid "Right [%]:" +msgstr "Dereita [%]:" + +#: app/tips-dialog.c:87 +#, fuzzy +msgid "SoundTracker Tip of the day" +msgstr "Consello SoundTraker de hoxe" + +#: app/tips-dialog.c:149 +msgid "Previous Tip" +msgstr "Consello anterior" + +#: app/tips-dialog.c:157 +msgid "Next Tip" +msgstr "Seguinte consello" + +#: app/tips-dialog.c:177 +msgid "Show tip next time" +msgstr "Mostrar consellos a próxima vez" + +#: app/tips-dialog.c:251 +msgid "" +"Welcome to SoundTracker!\n" +"\n" +"If you are new to this type of program, you will want to get hold of\n" +"some XM or MOD files first and play with them." +msgstr "" +"Benvido a SoundTracker\n" +"\n" +"Se é novo neste tipo de programas, poida que queira obter algúns\n" +"ficheiros XM ou MOD e fuchicar con eles." + +#: app/tips-dialog.c:256 +#, fuzzy +msgid "" +"You can make SoundTracker's edit mode more responsive to keyboard\n" +"input by decreasing the mixing buffer size of the \"Editing\" object in\n" +"the Audio Configuration." +msgstr "" +"Pode facer que o modo de edición de SoundTracker responda máis rápido\n" +"ao teclado reducindo o tamaño do buffer de mestura no obxecto \"Edición\"\n" +"na configuración de son.\n" + +#: app/tips-dialog.c:260 +msgid "" +"You can adjust the loop points in the sample editor by holding Shift\n" +"and using the left and right mousebuttons.\n" +msgstr "" +"Pode axusta-los puntos de lazo no editor de samples premendo a tecla de\n" +"maiúsculas á vez que os botóns esquerdo ou dereito do rato.\n" + +#: app/tips-dialog.c:263 +msgid "" +"If you want to know more about tracking, and how the various commands\n" +"work, have a look at http://www.united-trackers.org/" +msgstr "" +"Se quere saber máis do tracking, e como funcionan os comandos, visite\n" +"http://www.united-trackers.org/" + +#: app/tips-dialog.c:266 +msgid "" +"You can assign samples of an instrument to the individual keys by\n" +"activating its sample and then clicking on the keyboard in the\n" +"instrument editor page." +msgstr "" +"Pode asignar samples dun instrumento a teclas individuais activando o\n" +"sample e logo premendo no teclado na páxina de edición de instrumentos." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" + +#: app/track-editor.c:85 +msgid "Arpeggio" +msgstr "" + +#. 0 +#: app/track-editor.c:86 +msgid "Porta up" +msgstr "" + +#. 1 +#: app/track-editor.c:87 +#, fuzzy +msgid "Porta down" +msgstr "Baixar unha oitava" + +#. 2 +#: app/track-editor.c:88 app/track-editor.c:152 +msgid "Tone porta" +msgstr "" + +#. 3 +#: app/track-editor.c:89 app/track-editor.c:148 +#, fuzzy +msgid "Vibrato" +msgstr "Tipo de Vibrato:" + +#. 4 +#: app/track-editor.c:90 +msgid "Tone porta + Volume slide" +msgstr "" + +#. 5 +#: app/track-editor.c:91 +msgid "Vibrato + Volume slide" +msgstr "" + +#. 6 +#: app/track-editor.c:92 +#, fuzzy +msgid "Tremolo" +msgstr "Tempo" + +#. 7 +#: app/track-editor.c:93 app/track-editor.c:149 +#, fuzzy +msgid "Set panning" +msgstr "Panning" + +#. 8 +#: app/track-editor.c:94 app/track-editor.c:96 +msgid "Position jump" +msgstr "" + +#. 9 +#: app/track-editor.c:95 app/track-editor.c:97 app/track-editor.c:173 +#, fuzzy +msgid "Set volume" +msgstr "Volume" + +#. C +#: app/track-editor.c:98 +#, fuzzy +msgid "Pattern break" +msgstr "Patrón" + +#. D +#. E +#: app/track-editor.c:100 +msgid "Set tempo/bpm" +msgstr "" + +#. F +#: app/track-editor.c:101 +msgid "Set global volume" +msgstr "" + +#. G +#: app/track-editor.c:102 +msgid "Global volume slide" +msgstr "" + +#. H +#. I +#. J +#: app/track-editor.c:105 +msgid "Key off" +msgstr "" + +#. K +#: app/track-editor.c:106 +msgid "Set envelop position" +msgstr "" + +#. L +#. M +#. N +#. O +#: app/track-editor.c:110 +#, fuzzy +msgid "Panning slide" +msgstr "Panning" + +#. P +#: app/track-editor.c:111 +msgid "LP filter resonance" +msgstr "" + +#. Q +#: app/track-editor.c:112 +msgid "Multi retrig note" +msgstr "" + +#. R +#. S +#: app/track-editor.c:114 +#, fuzzy +msgid "Tremor" +msgstr "Tempo" + +#. T +#. U +#. V +#. W +#. X +#. Y +#: app/track-editor.c:120 +msgid "LP filter cutoff" +msgstr "" + +#. 0 +#: app/track-editor.c:125 +msgid "Fine porta up" +msgstr "" + +#. 1 +#: app/track-editor.c:126 +msgid "Fine porta down" +msgstr "" + +#. 2 +#: app/track-editor.c:127 +msgid "Set gliss control" +msgstr "" + +#. 3 +#: app/track-editor.c:128 +msgid "Set vibrato control" +msgstr "" + +#. 4 +#: app/track-editor.c:129 +#, fuzzy +msgid "Set finetune" +msgstr "Axuste fino" + +#. 5 +#: app/track-editor.c:130 +msgid "Set loop begin/loop" +msgstr "" + +#. 6 +#: app/track-editor.c:131 +msgid "Set tremolo control" +msgstr "" + +#. 7 +#. 8 +#: app/track-editor.c:133 +msgid "Retrig note" +msgstr "" + +#. 9 +#: app/track-editor.c:134 app/track-editor.c:146 +msgid "Fine volume slide up" +msgstr "" + +#. A +#: app/track-editor.c:135 app/track-editor.c:145 +msgid "Fine volume slide down" +msgstr "" + +#. B +#: app/track-editor.c:136 +#, fuzzy +msgid "Note cut" +msgstr "Nota:" + +#. C +#: app/track-editor.c:137 +msgid "Note delay" +msgstr "" + +#. D +#: app/track-editor.c:138 +#, fuzzy +msgid "Pattern delay" +msgstr "Patrón" + +#: app/track-editor.c:143 +msgid "Volume slide down" +msgstr "" + +#: app/track-editor.c:144 +#, fuzzy +msgid "Volume slide up" +msgstr "Rampla de Volume" + +#: app/track-editor.c:147 +#, fuzzy +msgid "Set vibrato speed" +msgstr "Tipo de Vibrato:" + +#: app/track-editor.c:150 +#, fuzzy +msgid "Panning slide left" +msgstr "Envolvente de Canle" + +#: app/track-editor.c:151 +msgid "Panning slide right" +msgstr "" + +#: app/track-editor.c:156 +#, fuzzy +msgid "sine" +msgstr "Seo" + +#. 0 +#: app/track-editor.c:157 +#, fuzzy +msgid "ramp down" +msgstr "Baixar unha oitava" + +#. 1 +#: app/track-editor.c:158 +#, fuzzy +msgid "square" +msgstr "Cadrada" + +#: app/track-editor.c:332 +msgid "Jazz Edit:" +msgstr "Edición Jazz:" + +#: app/track-editor.c:377 +msgid "Tracker" +msgstr "Tracker" + +#: app/tracker-settings.c:233 +msgid "Font list" +msgstr "" + +#: app/tracker-settings.c:257 +msgid "Add font" +msgstr "" + +#: app/tracker-settings.c:263 +#, fuzzy +msgid "Delete font" +msgstr "Suprimir" + +#: app/tracker-settings.c:269 +msgid "Apply font" +msgstr "" + +#: app/tracker-settings.c:284 +msgid "Up" +msgstr "" + +#: app/tracker-settings.c:287 +#, fuzzy +msgid "Down" +msgstr "Serra Abaixo" + +#: app/tracker-settings.c:290 +#, fuzzy +msgid "Select font..." +msgstr "_Selección" + +#: app/transposition.c:166 +msgid "Whole Song" +msgstr "Peza" + +#: app/transposition.c:167 +msgid "All Patterns" +msgstr "Tódolos Patróns" + +#: app/transposition.c:168 +msgid "Current Pattern" +msgstr "Patrón Actual" + +#: app/transposition.c:169 +msgid "Current Track" +msgstr "Pista Actual" + +#: app/transposition.c:173 +msgid "Current Instrument" +msgstr "Instrumento Actual" + +#: app/transposition.c:174 +msgid "All Instruments" +msgstr "Tódolos Instrumentos" + +#: app/transposition.c:178 +msgid "Half note up" +msgstr "Subir media nota" + +#: app/transposition.c:179 +msgid "Half note down" +msgstr "Baixar media nota" + +#: app/transposition.c:180 +msgid "Octave up" +msgstr "Subir unha oitava" + +#: app/transposition.c:181 +msgid "Octave down" +msgstr "Baixar unha oitava" + +#: app/transposition.c:184 +msgid "Exchange 1 <-> 2" +msgstr "Intercambio 1 <-> 2" + +#: app/transposition.c:185 +msgid "Change 1 -> 2" +msgstr "Cambiar 1 -> 2" + +#: app/transposition.c:194 app/transposition.c:197 +msgid "Transposition Tools" +msgstr "Ferramentas de Transposición" + +#: app/transposition.c:218 +msgid "Scope of the operation:" +msgstr "Alcance da operación:" + +#: app/transposition.c:225 +msgid "Note Transposition" +msgstr "Transposición de Notas" + +#: app/transposition.c:255 +msgid "Instrument Changing" +msgstr "Cambio de Instrumento" + +#: app/transposition.c:270 +msgid "Instrument 1:" +msgstr "Instrumento 1:" + +#: app/transposition.c:272 app/transposition.c:282 +msgid "Current instrument" +msgstr "Instrumento actual" + +#: app/transposition.c:280 +msgid "Instrument 2:" +msgstr "Instrumento 2:" + +#: app/xm.c:190 +#, c-format +msgid "Pattern length out of range: %d.\n" +msgstr "Lonxitude de patrón fóra de rango: %d.\n" + +#: app/xm.c:528 +msgid "File is no XI instrument." +msgstr "O ficheiro non é un instrumento XI." + +#: app/xm.c:538 +#, c-format +msgid "Unknown XI version 0x%x\n" +msgstr "Versión descoñecida de XI 0x%x\n" + +#: app/xm.c:568 +#, c-format +msgid "Invalid vibtype %d, using Sine.\n" +msgstr "vibtype non válido %d, usando Seo.\n" + +#: app/xm.c:840 app/xm.c:960 +msgid "Error while loading patterns." +msgstr "Erro ao cargar os patróns." + +#: app/xm.c:908 +msgid "Can't open file" +msgstr "Non se pode abrir o ficheiro" + +#: app/xm.c:922 +msgid "XM header length != 276. Maybe a pre-0.0.12 SoundTracker module? :-)\n" +msgstr "" +"A cabeceira do XM ten unha lonxitude != 276. Poida que sexa un módulo de " +"SoundTracker pre-0.0.12 \n" + +#: app/xm.c:966 +msgid "Error while loading instruments." +msgstr "Produciuse un erro ao carga-los instrumentos." + +#: app/xm.c:977 +#, c-format +msgid "" +"Module contains sample(s) that are too long for the current mixer.\n" +"Maximum sample length is %d." +msgstr "" +"O módulo contén sample(s) que son longos de máis para o mesturador actual.\n" +"A lonxitude máxima de sample é %d." + +#: app/xm.c:1349 +#, fuzzy +msgid "Not FastTracker XM and not supported MOD format!" +msgstr "¡Non é un XM de FastTracker nin un formato MOD soportado!" + +#~ msgid "Master Reverb" +#~ msgstr "Reberveración Principal" + +#~ msgid "Playback Effects Configuration" +#~ msgstr "Configuración de Efectos na Reproducción" + +#~ msgid "_Playback Effects..." +#~ msgstr "Efectos de _Reproducción" + +#~ msgid "/Settings/_Playback Effects..." +#~ msgstr "/Configuración/_Efectos de Reproducción..." + +#~ msgid "SelStart" +#~ msgstr "ComezoSel" + +#~ msgid "SelEnd" +#~ msgstr "FinSel" + +#~ msgid "Sel None" +#~ msgstr "Sel Nada" + +#~ msgid "Length: 0" +#~ msgstr "Lonxitude: 0" + +#~ msgid "Filter" +#~ msgstr "Filtrar" + +#~ msgid "Length: %d" +#~ msgstr "Lonxitude: %d" Binary files soundtracker-0.6.3/po/it.gmo and soundtracker-0.6.4/po/it.gmo differ diff -urN soundtracker-0.6.3/po/it.po soundtracker-0.6.4/po/it.po --- soundtracker-0.6.3/po/it.po Thu May 24 20:26:57 2001 +++ soundtracker-0.6.4/po/it.po Sun Aug 12 12:07:17 2001 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: soundtracker-0.6.2\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 2001-01-05 19:19+01:00\n" "Last-Translator: Yuri Bongiorno \n" "Language-Team: Italian \n" @@ -14,43 +14,43 @@ "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Output per il playback" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Output per l'editing" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Campionamento" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Modulo del driver" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 msgid "Mixer Module" msgstr "Modulo del mixer" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "Descrizione" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Configurazione dell'audio" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 msgid "Drivers" msgstr "Driver" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "Mixer" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "Chiudi" @@ -66,27 +66,27 @@ msgstr "Ritardo stimato dell'audio: %f microsecondi" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Questi cambiamenti avranno effetto alla prossima riproduzione." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Risoluzione:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Canali:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Frequenza [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Dimensione del buffer:" @@ -109,7 +109,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Il formato sonoro di output richiesto non è supportato.\n" @@ -117,7 +117,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "I parametri sonori di output richiesti non sono supportati.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Ritardo stimato dell'audio: %f millisecondi" @@ -153,32 +153,45 @@ "Impossibile connettersi a ESD per l'output del suono:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "non ci sono (ancora) impostazioni, mi dispiace!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "Impossibile aprire il file per la scrittura." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Questi cambiamenti avranno effetto alla prossima riproduzione." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "Impossibile aprire /dev/dsp per il campionamento:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d campioni)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "Impossibile aprire /dev/dsp per l'output del suono:\n" @@ -234,11 +247,11 @@ msgid "Loop" msgstr "Ciclo" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Inizio" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Fine" @@ -258,7 +271,7 @@ msgid "Save Song" msgstr "Salva il brano" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "Carica il campione" @@ -418,8 +431,8 @@ msgid "Question" msgstr "Domanda" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Annulla" @@ -1189,7 +1202,7 @@ msgid "Linear" msgstr "Lineare" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1229,147 +1242,147 @@ "Una directory chiamata '.soundtracker' è stata creata nella tua\n" "home directory per immagazzinare i file di configurazione.\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "Nessun ciclo" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "Ping Pong" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 bit" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 bit" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "Editor del campione" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "Volume" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "Pan" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "Regolazione fine" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "Selezione:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "Niente" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "Tutto" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "Lunghezza:" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "Imposta come ciclo" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "Nota relativa" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "Carica il campione..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "Salva WAV..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "Salva la regione come WAV..." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "Salva WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "Salva la regione" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "Monitor" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "Volume ramp" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "Ingrandisci la selezione" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Mostra tutto" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "Ingrandisci (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "Riduci (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "Capovolgi" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "Taglia" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "Rimuove" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "Copia" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "Incolla" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "Cancella campione" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "(nessuna selezione)" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "Errore di lettura." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "Carica il campione stereo" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1381,23 +1394,23 @@ "\n" "Per favore scegli quale canale caricare:" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "Sinistro" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "Miscelati" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "Destro" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "Carica campione raw" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1409,80 +1422,80 @@ "\n" "Per favore scegli un formato:" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "Formato word:" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "OK" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "Impossibile leggere il campione" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "Il campione è troppo lungo per l'attuale mixer. Lo carico comunque." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "Può solo gestire campioni da 8 e 16 bit fino a 2 canali" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "Niente da salvare." -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "Inizia il campionamento" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "Nessun driver di campionamento libero" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "Finestra di campionamento" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "Il campione registrato è troppo lungo per l'attuale mixer. Lo uso comunque." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "Normalizza" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "Esegui" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "Volume ramp" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "Esegue una dissolvenza lineare del volume sulla selezione" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "Sinistra [%]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "50" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "200" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "Destra [%]:" @@ -1549,6 +1562,12 @@ "Puoi assegnare i campioni di uno strumento ai singoli tasti attivando\n" "il suo campione e poi cliccando sulla tastiera nella pagina dell'editor\n" "degli strumenti." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/ja.gmo and soundtracker-0.6.4/po/ja.gmo differ diff -urN soundtracker-0.6.3/po/ja.po soundtracker-0.6.4/po/ja.po --- soundtracker-0.6.3/po/ja.po Thu May 24 20:26:58 2001 +++ soundtracker-0.6.4/po/ja.po Sun Aug 12 12:07:18 2001 @@ -7,50 +7,50 @@ msgid "" msgstr "" "Project-Id-Version: SoundTracker 0.3.10\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 2000-09-26 13:37+09:00\n" "Last-Translator: Atsushi Yamagata \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8-bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "±éÁÕ½ÐÎÏ" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "ÊÔ½¸½ÐÎÏ" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "¥µ¥ó¥×¥ê¥ó¥°" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "¥É¥é¥¤¥Ð¡¦¥â¥¸¥å¡¼¥ë" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 msgid "Mixer Module" msgstr "¥ß¥­¥µ¡¦¥â¥¸¥å¡¼¥ë" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "ÀâÌÀ" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "¥ª¡¼¥Ç¥£¥ªÀßÄê" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 msgid "Drivers" msgstr "¥É¥é¥¤¥Ð" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "¥ß¥­¥µ" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "ÊĤ¸¤ë" @@ -66,27 +66,27 @@ msgstr "¿äÄꥪ¡¼¥Ç¥£¥ª¡¦¥Ç¥£¥ì¥¤: %f¥Þ¥¤¥¯¥íÉÃ" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "±éÁÕ¤òºÆ³«¤¹¤ë¤Þ¤Ç¤³¤ì¤é¤ÎÊѹ¹¤Ï¤Ê¤µ¤ì¤Þ¤»¤ó¡£" #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "²òÁüÅÙ:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "¥Á¥ã¥ó¥Í¥ë:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "¼þÇÈ¿ô [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "¥Ð¥Ã¥Õ¥¡¡¦¥µ¥¤¥º:" @@ -108,7 +108,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Í׵ᤵ¤ì¤¿¥µ¥¦¥ó¥É½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" @@ -116,7 +116,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Í׵ᤵ¤ì¤¿¥µ¥¦¥ó¥É½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "¿äÄꥪ¡¼¥Ç¥£¥ª¡¦¥Ç¥£¥ì¥¤: %f¥ß¥êÉÃ" @@ -151,32 +151,45 @@ "¥µ¥¦¥ó¥É½ÐÎϤòESD¤ËÀܳ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "¤¹¤ß¤Þ¤»¤ó¡¢(¤Þ¤À)ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "½ñ¤­¹þ¤ß¤Î¤¿¤á¤Ë¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "±éÁÕ¤òºÆ³«¤¹¤ë¤Þ¤Ç¤³¤ì¤é¤ÎÊѹ¹¤Ï¤Ê¤µ¤ì¤Þ¤»¤ó¡£" + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "¥µ¥ó¥×¥ê¥ó¥°¤¹¤ë¤Î¤Ë/dev/dsp¤¬³«¤±¤Þ¤»¤ó¤Ç¤·¤¿:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d¥µ¥ó¥×¥ë)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "¥µ¥¦¥ó¥É½ÐÎϤËÂФ·¤Æ/dev/dsp¤¬³«¤±¤Þ¤»¤ó¤Ç¤·¤¿:\n" @@ -232,11 +245,11 @@ msgid "Loop" msgstr "¥ë¡¼¥×" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "³«»Ï" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "½ªÎ»" @@ -256,7 +269,7 @@ msgid "Save Song" msgstr "¶ÊÊݸ" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "¥µ¥ó¥×¥ë¡¦¥í¡¼¥É" @@ -416,8 +429,8 @@ msgid "Question" msgstr "¼ÁÌä" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "¼è¾Ã" @@ -1181,7 +1194,7 @@ msgid "Linear" msgstr "Àþ·¿" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1221,147 +1234,147 @@ "ÀßÄê¥Õ¥¡¥¤¥ë¤òµ­²±¤¹¤ë¤¿¤á¡¢¤¢¤Ê¤¿¤Î¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë\n" "¥Ç¥£¥ì¥¯¥È¥ê'.soundtracker'¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "¥ë¡¼¥×̵¤·" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "¥Ô¥ó¥Ý¥ó" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8¥Ó¥Ã¥È" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16¥Ó¥Ã¥È" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "¥µ¥ó¥×¥ëÊÔ½¸" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "²»ÎÌ" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "ÈùÄ´À°" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "ÁªÂò:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "̵" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "Á´¤Æ" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "Ťµ:" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "¥ë¡¼¥×¤È¤·¤ÆÀßÄê" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "¥µ¥ó¥×¥ë¡¦¥í¡¼¥É..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "WAVÊݸ..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "WAV¤È¤·¤ÆÈϰÏÊݸ..." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "WAVÊݸ" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "ÈϰÏÊݸ" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "¥â¥Ë¥¿" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "ÁªÂòÉôʬ³ÈÂç" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Á´¤ÆÉ½¼¨" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "³ÈÂç(+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "½Ì¾®(-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "¥ê¥Ð¡¼¥¹" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "ÀÚ¼è" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "°Üư" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "¥³¥Ô¡¼" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "ŽÉÕ" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "¥µ¥ó¥×¥ë¾Ãµî" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "(̵ÁªÂò)" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "<º£Å½ÉÕ¤±¤µ¤ì¤Þ¤·¤¿>" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "ÆÉ¤ß¹þ¤ß¥¨¥é¡¼¡£" -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "¥¹¥Æ¥ì¥ª¡¦¥µ¥ó¥×¥ë¡¦¥í¡¼¥É" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1373,23 +1386,23 @@ "\n" "¥í¡¼¥É¤¹¤ë¤¿¤á¤Î¥Á¥ã¥ó¥Í¥ë¤òÁª¤ó¤Ç¤¯¤À¤µ¤¤:" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "º¸" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "¥ß¥Ã¥¯¥¹" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "±¦" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "À¸¥µ¥ó¥×¥ë¡¦¥í¡¼¥É" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1401,83 +1414,83 @@ "\n" "½ñ¼°¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤:" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "λ²ò" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "¥µ¥ó¥×¥ë¤¬ÆÉ¤ß¹þ¤á¤Þ¤»¤ó" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "" "¥µ¥ó¥×¥ë¤¬¸½ºß¤Î¥ß¥­¥µ¡¦¥â¥¸¥å¡¼¥ë¤Ë¤ÏĹ²á¤®¤Þ¤¹¡£\n" "¤È¤Ë¤«¤¯¥í¡¼¥É¤·¤Þ¤¹¡£" -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "2¥Á¥ã¥ó¥Í¥ë¤Þ¤Ç¤Ç 8¡¢16¥Ó¥Ã¥È¡¦¥µ¥ó¥×¥ë¤Î¤ß½èÍý¤Ç¤­¤Þ¤¹" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "²¿¤âÊݸ¤·¤Ê¤¤¡£" -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "¥µ¥ó¥×¥ê¥ó¥°³«»Ï" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "¥µ¥ó¥×¥ê¥ó¥°¡¦¥É¥é¥¤¥Ð¤¬»ÈÍѤǤ­¤Þ¤»¤ó" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "¥µ¥ó¥×¥ê¥ó¥°¡¦¥¦¥£¥ó¥É¥¦" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "<º£¥µ¥ó¥×¥ê¥ó¥°¤·¤Þ¤·¤¿>" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "Ï¿²»¤·¤¿¥µ¥ó¥×¥ë¤¬¸½ºß¤Î¥ß¥­¥µ¡¦¥â¥¸¥å¡¼¥ë¤Ë¤ÏĹ²á¤®¤Þ¤¹¡£\n" "¤È¤Ë¤«¤¯¤½¤ì¤ò»È¤¤¤Þ¤¹¡£" -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "µ¬³Ê²½" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "¼Â¹Ô" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "ÁªÂò»þ¤Ë²»Î̤òÀþ·¿¤Ë¥Õ¥§¡¼¥É¤¹¤ë" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "º¸ [%]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "±¦ [%]:" @@ -1543,6 +1556,12 @@ msgstr "" "³Ú´ïÊÔ½¸¥Ú¡¼¥¸¤Ç¡¢¥µ¥ó¥×¥ë¤ò¥¢¥¯¥Æ¥£¥Ö¤Ë¤·¤Æ¤«¤é¥­¡¼¥Ü¡¼¥É¤ò¥¯¥ê¥Ã¥¯\n" "¤¹¤ë¤È¸Ä¡¹¤Î¥­¡¼¤Ë³Ú´ï¤Î¥µ¥ó¥×¥ë¤ò³äÅö¤Æ¤é¤ì¤ë¤è¡£" + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/pl.gmo and soundtracker-0.6.4/po/pl.gmo differ diff -urN soundtracker-0.6.3/po/pl.po soundtracker-0.6.4/po/pl.po --- soundtracker-0.6.3/po/pl.po Thu May 24 20:26:58 2001 +++ soundtracker-0.6.4/po/pl.po Sun Aug 12 12:07:18 2001 @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: soundtracker\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 1999-09-05 15:58+0200\n" "Last-Translator: GNOME PL Team\n" "Language-Team: Polish \n" @@ -9,47 +9,47 @@ "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Wyj¶cie odtwarzania" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Wyj¶cie edycji" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Próbkowanie" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Modu³ sterownika" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 #, fuzzy msgid "Mixer Module" msgstr "Modu³ sterownika" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 #, fuzzy msgid "Description" msgstr "Pytanie" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Konfiguracja d¼wiêku" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 #, fuzzy msgid "Drivers" msgstr "Modu³ sterownika" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 #, fuzzy msgid "Mixers" msgstr "Modyfikatory:" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "Zamknij" @@ -65,27 +65,27 @@ msgstr "Szacowane opó¼nienie d¼wiêku: %f mikrosekund" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Zmiany odnios± efekt po ponownym rozpoczêciu odgrywania." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Rozdzielczo¶æ:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Kana³y:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Czêstotliwo¶æ [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Rozmiar bufora:" @@ -108,7 +108,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Wymagany format wyj¶cia d¼wiêku nie jest obs³ugiwany.\n" @@ -116,7 +116,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Wymagane parametry wyj¶cia d¼wiêku nie s± obs³ugiwane.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, fuzzy, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Szacowane opó¼nienie d¼wiêku: %f mikrosekund" @@ -149,32 +149,45 @@ "Nie mo¿na otworzyæ /dev/dsp dla wyj¶cia d¼wiêku:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "na razie brak ustawieñ!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "Nie mo¿na otworzyæ pliku do zapisu." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Zmiany odnios± efekt po ponownym rozpoczêciu odgrywania." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "Nie mo¿na otworzyæ /dev/dsp dla próbkowania:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d próbek)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "Nie mo¿na otworzyæ /dev/dsp dla wyj¶cia d¼wiêku:\n" @@ -230,11 +243,11 @@ msgid "Loop" msgstr "Pêtla" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Pocz±tek" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Koniec" @@ -257,7 +270,7 @@ msgid "Save Song" msgstr "Odtwórz utwór" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "Wczytaj próbkê" @@ -437,8 +450,8 @@ msgid "Question" msgstr "Pytanie" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Anuluj" @@ -1257,7 +1270,7 @@ msgid "Linear" msgstr "Liniowe" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1297,157 +1310,157 @@ "W katalogu domowym zosta³ utworzony katalog .soundtracker, w\n" "którym zapisywane bêd± pliki konfiguracyjne.\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "Bez pêtli" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "PingPong" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 bitów" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 bitów" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "Edytor próbek" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "G³o¶no¶æ" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "Przemieszczenie" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "Dopasowanie" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 #, fuzzy msgid "Selection:" msgstr "Rozdzielczo¶æ:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 #, fuzzy msgid "None" msgstr "Nuta:" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 #, fuzzy msgid "Length:" msgstr "D³ugo¶æ" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "WzglNuta" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 #, fuzzy msgid "Load Sample..." msgstr "Wczytaj próbkê.." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 #, fuzzy msgid "Save WAV..." msgstr "Zapisz WAV.." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 #, fuzzy msgid "Save region as WAV..." msgstr "Zapisz WAV.." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "Zapisz WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "Monitoruj" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "Nachyl g³o¶no¶æ" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "Powiêksz do zaznaczenia" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Wy¶wietl ca³o¶æ" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "Powiêksz (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "Pomniejsz (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 #, fuzzy msgid "Reverse" msgstr "Usuñ" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "Wytnij" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "Usuñ" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "Kopiuj" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "Wklej" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 #, fuzzy msgid "Clear Sample" msgstr "Wczytaj próbkê" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 #, fuzzy msgid "(no selection)" msgstr "Powiêksz do zaznaczenia" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "B³±d odczytu." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 #, fuzzy msgid "Load stereo sample" msgstr "Wczytaj próbkê" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1455,26 +1468,26 @@ "Please choose which channel to load:" msgstr "" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 #, fuzzy msgid "Left" msgstr "Lewy [%s]:" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 #, fuzzy msgid "Right" msgstr "Prawy [%]:" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 #, fuzzy msgid "Load raw sample" msgstr "Wczytaj próbkê" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1482,83 +1495,83 @@ "Please choose a format:" msgstr "" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "OK" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "Nie mo¿na wczytaæ próbki" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "" "Próbka jest zbyt d³uga dla aktualnego modu³u miksera. Pomimo tego wczytywana." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 #, fuzzy msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "Obs³ugiwane s± tylko próbki 8 i 16 bitowe" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "" -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "Rozpocznij próbkowanie" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "Okno próbkowania" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "Nagrana próbka jest zbyt d³uga dla modu³u miksera. Pomimo tego zostanie " "wykorzystana." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "Normalizuj" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "Wykonaj" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "Nachylenie g³o¶no¶ci" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "Liniowa zmiana g³o¶no¶ci zaznaczonego fragmentu" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "Lewy [%s]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "Prawy [%]:" @@ -1625,6 +1638,12 @@ msgstr "" "Mo¿esz przypisaæ próbki instrumenu do poszczególnych klawiszy poprzez\n" "aktywowanie jego próbki i klikniêcie klawiatury w edytorze instrumentów." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/ru.gmo and soundtracker-0.6.4/po/ru.gmo differ diff -urN soundtracker-0.6.3/po/ru.po soundtracker-0.6.4/po/ru.po --- soundtracker-0.6.3/po/ru.po Thu May 24 20:26:58 2001 +++ soundtracker-0.6.4/po/ru.po Sun Aug 12 12:07:18 2001 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: soundtracker-0.3.10\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 2000-02-21 11:12+0200\n" "Last-Translator: Michael Shigorin \n" "Language-Team: Russian \n" @@ -19,43 +19,43 @@ "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "÷ÙÈÏÄ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÑ" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "÷ÙÈÏÄ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "ïÃÉÆÒÏ×ËÁ" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "íÏÄÕÌØ ÄÒÁÊ×ÅÒÁ" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 msgid "Mixer Module" msgstr "íÏÄÕÌØ ÍÉËÓÅÒÁ" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "ïÐÉÓÁÎÉÅ" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "ëÏÎÆÉÇÕÒÁÃÉÑ ÁÕÄÉÏ" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 msgid "Drivers" msgstr "äÒÁÊ×ÅÒÙ" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "íÉËÓÅÒÙ" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "úÁËÒÙÔØ" @@ -71,27 +71,27 @@ msgstr "ïÖÉÄÁÅÍÁÑ ÚÁÄÅÒÖËÁ Ú×ÕËÁ: %f ÍÉËÒÏÓÅËÕÎÄ" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "üÔÉ ÉÚÍÅÎÅÎÉÑ ×ÓÔÕÐÑÔ × ÓÉÌÕ ÐÒÉ ÓÌÅÄÕÀÝÅÍ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÉ." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "òÁÚÒÅÛÅÎÉÅ:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "ëÁÎÁÌÙ:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "þÁÓÔÏÔÁ [çÃ]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "òÁÚÍÅÒ ÂÕÆÅÒÁ:" @@ -114,7 +114,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "ôÒÅÂÕÅÍÙÊ ÆÏÒÍÁÔ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÑ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ.\n" @@ -122,7 +122,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "ôÒÅÂÕÅÍÙÅ ÐÁÒÁÍÅÔÒÙ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÑ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "ïÖÉÄÁÅÍÁÑ ÚÁÄÅÒÖËÁ Ú×ÕËÁ: %f ÍÉÌÌÉÓÅËÕÎÄ" @@ -158,32 +158,45 @@ "ðÏÄËÌÀÞÅÎÉÅ Ë ESD ÄÌÑ ×Ù×ÏÄÁ Ú×ÕËÁ ÎÅ ÕÄÁÌÏÓØ:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "(ÐÏËÁ) ÎÅÔ ÎÁÓÔÒÏÅË, sorry!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ ÄÌÑ ÚÁÐÉÓÉ." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "üÔÉ ÉÚÍÅÎÅÎÉÑ ×ÓÔÕÐÑÔ × ÓÉÌÕ ÐÒÉ ÓÌÅÄÕÀÝÅÍ ×ÏÓÐÒÏÉÚ×ÅÄÅÎÉÉ." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ /dev/dsp ÄÌÑ ÏÃÉÆÒÏ×ËÉ:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d ÓÜÍÐÌÏ×)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ /dev/dsp ÄÌÑ ×Ù×ÏÄÁ Ú×ÕËÁ:\n" @@ -241,11 +254,11 @@ msgid "Loop" msgstr "ãÉËÌ" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "îÁÞÁÌÏ" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "ëÏÎÅÃ" @@ -265,7 +278,7 @@ msgid "Save Song" msgstr "óÏÈÒÁÎÉÔØ ÐÅÓÎÀ" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "úÁÇÒÕÚÉÔØ ÓÜÍÐÌ" @@ -425,8 +438,8 @@ msgid "Question" msgstr "÷ÏÐÒÏÓ" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "ïÔÍÅÎÁ" @@ -1195,7 +1208,7 @@ msgid "Linear" msgstr "ìÉÎÅÊÎÏ" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1235,149 +1248,149 @@ "ëÁÔÁÌÏÇ ÐÏÄ ÎÁÚ×ÁÎÉÅÍ '.soundtracker' ÓÏÚÄÁÎ × ×ÁÛÅÍ ÄÏÍÁÛÎÅÍ\n" "ËÁÔÁÌÏÇÅ ÄÌÑ ÈÒÁÎÅÎÉÑ ÆÁÊÌÏ× ËÏÎÆÉÇÕÒÁÃÉÉ.\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "âÅÚ ÃÉËÌÁ" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "ðÉÎÇ-ÐÏÎÇ" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 ÂÉÔ" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 ÂÉÔ" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "òÅÄÁËÔÏÒ ÓÜÍÐÌÏ×" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "çÒÏÍËÏÓÔØ" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "ðÁÎÏÒÁÍÉÒÏ×ÁÎÉÅ" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "ðÏÄÓÔÒÏÊËÁ" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "÷ÙÄÅÌÅÎÉÅ:" # ? -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "îÉÞÅÇÏ" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "÷ÓÅ" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "äÌÉÎÁ:" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "õÓÔÁÎÏ×ÉÔØ ÃÉËÌ" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "ïÔÎ. ÎÏÔÁ" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "úÁÇÒÕÚÉÔØ ÓÜÍÐÌ..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "óÏÈÒÁÎÉÔØ WAV..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "óÏÈÒÁÎÉÔØ ÕÞÁÓÔÏË ËÁË WAV..." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "óÏÈÒÁÎÉÔØ WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "óÏÈÒÁÎÉÔØ ÕÞÁÓÔÏË" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "óÌÅÄÉÔØ" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "óÐÁÄ ÇÒÏÍËÏÓÔÉ" # ? -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "õ×ÅÌÉÞÉÔØ ×ÙÄÅÌÅÎÉÅ" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "ðÏËÁÚÁÔØ ×ÓÅ" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "õ×ÅÌÉÞÉÔØ (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "õÍÅÎØÛÉÔØ (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "ïÂÒÁÔÉÔØ" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "÷ÙÒÅÚÁÔØ" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "õÄÁÌÉÔØ" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "ëÏÐÉÒÏ×ÁÔØ" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "÷ÓÔÁ×ÉÔØ" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "ïÞÉÓÔÉÔØ ÓÜÍÐÌ" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "(ÎÅÔ ×ÙÄÅÌÅÎÉÑ)" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "<ÔÏÌØËÏ ÞÔÏ ×ÓÔÁ×ÌÅÎÏ>" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "úÁÇÒÕÚÉÔØ ÓÔÅÒÅÏÓÜÍÐÌ" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1389,23 +1402,23 @@ "\n" "÷ÙÂÅÒÉÔÅ, ËÁËÏÊ ÉÚ ËÁÎÁÌÏ× ÚÁÇÒÕÚÉÔØ:" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "ìÅ×ÙÊ" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "ïÂßÅÄÉÎÉÔØ" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "ðÒÁ×ÙÊ" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "úÁÇÒÕÚÉÔØ raw-ÓÜÍÐÌ" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1418,82 +1431,82 @@ "÷ÙÂÅÒÉÔÅ ÆÏÒÍÁÔ, ÐÏÖÁÌÕÊÓÔÁ:" # ? -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "ïë" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÓÜÍÐÌ" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "óÜÍÐÌ ÓÌÉÛËÏÍ ÄÌÉÎÎÙÊ ÄÌÑ ÔÅËÕÝÅÇÏ ÍÉËÓÅÒ-ÍÏÄÕÌÑ. îÏ ÇÒÕÚÉÍ." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "ðÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÔÏÌØËÏ ÓÜÍÐÌÙ 8/16 ÂÉÔ, ÄÏ 2 ËÁÎÁÌÏ×" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "îÅÞÅÇÏ ÓÏÈÒÁÎÑÔØ." -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "îÁÞÁÔØ ÏÃÉÆÒÏ×ËÕ" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "îÅÔ ÄÒÁÊ×ÅÒÁ ÏÃÉÆÒÏ×ËÉ " -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "ïËÎÏ ÏÃÉÆÒÏ×ËÉ" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "<ÔÏÌØËÏ ÞÔÏ ÏÃÉÆÒÏ×ÁÎÏ>" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "úÁÐÉÓÁÎÎÙÊ ÓÜÍÐÌ ÓÌÉÛËÏÍ ÄÌÉÎÎÙÊ ÄÌÑ ÔÅËÕÝÅÇÏ ÍÉËÓÅÒ-ÍÏÄÕÌÑ. îÏ ÉÓÐÏÌØÚÕÅÍ." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "îÏÒÍÁÌÉÚÏ×ÁÔØ" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "÷ÙÐÏÌÎÉÔØ" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "óÐÁÄ ÇÒÏÍËÏÓÔÉ" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "ðÒÏÉÚ×ÅÓÔÉ ÌÉÎÅÊÎÏÅ ÓÐÁÄÁÎÉÅ ÇÒÏÍËÏÓÔÉ ÎÁ ×ÙÂÒÁÎÎÏÍ ÕÞÁÓÔËÅ" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "ìÅ×ÙÊ [%]:" # ? -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "H" # ? -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "D" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "ðÒÁ×ÙÊ [%]:" @@ -1560,6 +1573,12 @@ "÷Ù ÍÏÖÅÔÅ ÐÒÉ×ÑÚÁÔØ ÓÜÍÐÌÙ ÉÎÓÔÒÕÍÅÎÔÁ Ë ÏÐÒÅÄÅÌÅÎÎÙÍ ËÌÁ×ÉÛÁÍ,\n" "ÁËÔÉ×ÉÒÏ×Á× ÎÕÖÎÙÊ ÓÜÍÐÌ É ËÌÁÃÎÕ× ÐÏ ËÌÁ×ÉÁÔÕÒÅ ÎÁ ÓÔÒÁÎÉÞËÅ\n" "ÒÅÄÁËÔÏÒÁ ÉÎÓÔÒÕÍÅÎÔÏ×." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" Binary files soundtracker-0.6.3/po/sl.gmo and soundtracker-0.6.4/po/sl.gmo differ diff -urN soundtracker-0.6.3/po/sl.po soundtracker-0.6.4/po/sl.po --- soundtracker-0.6.3/po/sl.po Thu May 24 20:26:58 2001 +++ soundtracker-0.6.4/po/sl.po Sun Aug 12 12:07:18 2001 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: SoundTracker 0.6.0\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: 2000-08-17 15:00+0200\n" "Last-Translator: Matej Erman \n" "Language-Team: slovenian \n" @@ -14,43 +14,43 @@ "Content-Type: text/plain; charset=iso8859-2\n" "Content-Transfer-Encoding: 8 bit\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "Izhod za predvajanje" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "Izhod za urejanje" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "Vzorèenje" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "Gonilni modul" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 msgid "Mixer Module" msgstr "Me¹alni modul" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "Opis" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "Nastavitev audia" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 msgid "Drivers" msgstr "Gonilniki" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "Me¹alniki" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "Zapri" @@ -66,27 +66,27 @@ msgstr "Predvidena zakasnitev audia: %f mikrosekund" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "Te nastavitve bodo upo¹tevane ¹ele po ponovnem predvajanju." #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "Loèljivost:" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "Kanali:" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "Frekvenca [Hz]:" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "Velikost predbranja:" @@ -108,7 +108,7 @@ "%s" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "Zahtevani format za zvoèni izhod ni podprt.\n" @@ -116,7 +116,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "Zahtevani parametri za zvoèni izhod niso podprti.\n" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "Predvidena zakasnitev audia: %f milisekund" @@ -150,32 +150,45 @@ "Nisem mogel povezati ESD za zvoèni izhod:\n" "%s" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "®al (zaenkrat) ¹e brez nastavitev!" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "Ne morem odpreti datoteke za pisanje." -#: app/drivers/oss-input.c:188 -#, c-format +#: app/drivers/oss-input.c:105 +#, fuzzy +msgid "These changes won't take effect until you restart sampling." +msgstr "Te nastavitve bodo upo¹tevane ¹ele po ponovnem predvajanju." + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" "Nisem mogel odpreti /dev/dsp za vzorèenje:\n" "%s" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "(%d vzorcev)" -#: app/drivers/oss-output.c:357 -#, c-format +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 +#, fuzzy, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" "Nisem mogel odpreti /dev/dsp za zvoèni izhod:\n" @@ -231,11 +244,11 @@ msgid "Loop" msgstr "Zanka" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "Zaèetek" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "Konec" @@ -255,7 +268,7 @@ msgid "Save Song" msgstr "Shrani skladbo" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "Nalo¾i vzorec" @@ -416,8 +429,8 @@ msgid "Question" msgstr "Vpra¹anje" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "Preklièi" @@ -1184,7 +1197,7 @@ msgid "Linear" msgstr "Linearno" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "Amiga" @@ -1224,147 +1237,147 @@ "V va¹em domaèem imeniku je bil usvarjen imenik\n" "'.soundtracker' za shranjevanje nastavitnevih datotek.\n" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "Brez zanke" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "Ping pong" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "8 bitni" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "16 bitni" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "Urejevalnik vzorcev" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "Glasnost" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "Panorama" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "Natanèna uglasitev" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "Izbor:" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "Brez" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "Vse" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "Dol¾ina:" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "Nastavi kot zanko" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "Osnov. nota" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "Nalo¾i vzorec..." -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "Shrani WAV..." -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "Shrani odsek kot WAV..." -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "Shrani WAV" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "Shrani odsek" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "Spremljaj" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "Nagib glasnosti" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "Poveèaj na izbrano" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "Poka¾i vse" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "Poveèaj (+50%)" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "Pomanj¹aj (-50%)" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "Obrni" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "Izre¾i" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "Odstrani" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "Prepi¹i" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "Prilepi" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "Poèisti vzorec" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "(neizbrano)" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "Bralna napaka." -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "Nalo¾i stereo vzorec" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1376,23 +1389,23 @@ "\n" "Prosim izberite kateri vzorec hoèete nalo¾iti:" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "Levi" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "Me¹aj" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "Desni" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "Nalo¾i raw vzorec" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1404,80 +1417,80 @@ "\n" "Prosim izberite format:" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "Wortformat:" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "V redu" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "Ne morem prebrati vzorca" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "Vzorec je predolg za trenutni me¹alni modul. Vseeno ga nalagam." -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "Obdelujem lahko le 8 ali 16 bitne vzorce z najveè 2 kanaloma" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "Niè ni za shraniti." -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "Zaèni vzorèiti" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "Gonilnika za vzorèenje ni na voljo" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "Vzorèevalno okno" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" "Posneti vzorec je predolg za trenutni me¹alni modul. Vseeno ga uporabljam." -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "Normaliziraj" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "Izvr¹i" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "Nagibanje glasnosti" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "Izvedi linearni prehod na izboru" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "Levo [%]:" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "P" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "D" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "Desno [%]:" @@ -1543,6 +1556,12 @@ "Instrumentu lahko dodelite vzorce na doloèene tipke tako, da\n" "aktivirate vzorec in potem kliknite na klaviaturo v urejevalniku " "instrumentov." + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" +msgstr "" #: app/track-editor.c:85 msgid "Arpeggio" diff -urN soundtracker-0.6.3/po/soundtracker.pot soundtracker-0.6.4/po/soundtracker.pot --- soundtracker-0.6.3/po/soundtracker.pot Thu May 24 20:14:26 2001 +++ soundtracker-0.6.4/po/soundtracker.pot Sun Aug 12 11:53:50 2001 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-05-24 20:14+0200\n" +"POT-Creation-Date: 2001-08-12 11:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,43 +14,43 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: app/audioconfig.c:59 +#: app/audioconfig.c:62 msgid "Playback Output" msgstr "" -#: app/audioconfig.c:65 +#: app/audioconfig.c:68 msgid "Editing Output" msgstr "" -#: app/audioconfig.c:71 +#: app/audioconfig.c:74 msgid "Sampling" msgstr "" -#: app/audioconfig.c:223 +#: app/audioconfig.c:260 msgid "Driver Module" msgstr "" -#: app/audioconfig.c:224 +#: app/audioconfig.c:261 msgid "Mixer Module" msgstr "" -#: app/audioconfig.c:225 +#: app/audioconfig.c:262 msgid "Description" msgstr "" -#: app/audioconfig.c:233 app/audioconfig.c:236 +#: app/audioconfig.c:270 app/audioconfig.c:273 msgid "Audio Configuration" msgstr "" -#: app/audioconfig.c:251 +#: app/audioconfig.c:288 msgid "Drivers" msgstr "" -#: app/audioconfig.c:288 +#: app/audioconfig.c:325 msgid "Mixers" msgstr "" -#: app/audioconfig.c:321 app/gui-settings.c:547 app/sample-editor.c:1988 +#: app/audioconfig.c:358 app/gui-settings.c:547 app/sample-editor.c:1990 #: app/tips-dialog.c:165 app/transposition.c:313 msgid "Close" msgstr "" @@ -66,27 +66,27 @@ msgstr "" #: app/drivers/alsa-input.c:193 app/drivers/alsa-output.c:199 -#: app/drivers/oss-output.c:188 +#: app/drivers/oss-output.c:199 msgid "These changes won't take effect until you restart playing." msgstr "" #: app/drivers/alsa-input.c:205 app/drivers/alsa-output.c:211 -#: app/drivers/oss-output.c:200 app/sample-editor.c:1502 +#: app/drivers/oss-output.c:227 app/sample-editor.c:1504 msgid "Resolution:" msgstr "" #: app/drivers/alsa-input.c:215 app/drivers/alsa-output.c:221 -#: app/drivers/oss-output.c:210 app/sample-editor.c:1532 +#: app/drivers/oss-output.c:237 app/sample-editor.c:1534 msgid "Channels:" msgstr "" #: app/drivers/alsa-input.c:225 app/drivers/alsa-output.c:231 -#: app/drivers/oss-output.c:220 +#: app/drivers/oss-output.c:247 msgid "Frequency [Hz]:" msgstr "" #: app/drivers/alsa-input.c:235 app/drivers/alsa-output.c:241 -#: app/drivers/oss-output.c:230 +#: app/drivers/oss-output.c:257 msgid "Buffer Size:" msgstr "" @@ -106,7 +106,7 @@ msgstr "" #: app/drivers/alsa-input.c:426 app/drivers/alsa-output.c:426 -#: app/drivers/oss-input.c:221 app/drivers/oss-output.c:390 +#: app/drivers/oss-input.c:261 app/drivers/oss-output.c:418 msgid "Required sound output format not supported.\n" msgstr "" @@ -114,7 +114,7 @@ msgid "Required sound output parameters not supported.\n" msgstr "" -#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:139 +#: app/drivers/alsa-output.c:137 app/drivers/oss-output.c:143 #, c-format msgid "Estimated audio delay: %f milliseconds" msgstr "" @@ -141,30 +141,42 @@ "%s" msgstr "" -#: app/drivers/file-output.c:86 app/drivers/oss-input.c:90 +#: app/drivers/file-output.c:86 msgid "no settings (yet), sorry!" msgstr "" -#: app/drivers/file-output.c:161 app/sample-editor.c:1664 +#: app/drivers/file-output.c:161 app/sample-editor.c:1666 msgid "Can't open file for writing." msgstr "" -#: app/drivers/oss-input.c:188 +#: app/drivers/oss-input.c:105 +msgid "These changes won't take effect until you restart sampling." +msgstr "" + +#: app/drivers/oss-input.c:117 +msgid "Input device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-input.c:228 #, c-format msgid "" -"Couldn't open /dev/dsp for sampling:\n" +"Couldn't open %s for sampling:\n" "%s" msgstr "" -#: app/drivers/oss-output.c:173 +#: app/drivers/oss-output.c:177 #, c-format msgid "(%d samples)" msgstr "" -#: app/drivers/oss-output.c:357 +#: app/drivers/oss-output.c:211 +msgid "Output device (e.g. '/dev/dsp'):" +msgstr "" + +#: app/drivers/oss-output.c:385 #, c-format msgid "" -"Couldn't open /dev/dsp for sound output:\n" +"Couldn't open %s for sound output:\n" "%s" msgstr "" @@ -213,11 +225,11 @@ msgid "Loop" msgstr "" -#: app/envelope-box.c:1015 app/sample-editor.c:243 +#: app/envelope-box.c:1015 app/sample-editor.c:244 msgid "Start" msgstr "" -#: app/envelope-box.c:1016 app/sample-editor.c:244 +#: app/envelope-box.c:1016 app/sample-editor.c:245 msgid "End" msgstr "" @@ -237,7 +249,7 @@ msgid "Save Song" msgstr "" -#: app/file-operations.c:157 app/sample-editor.c:351 +#: app/file-operations.c:157 app/sample-editor.c:352 msgid "Load Sample" msgstr "" @@ -397,8 +409,8 @@ msgid "Question" msgstr "" -#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1414 -#: app/sample-editor.c:1551 app/sample-editor.c:1766 +#: app/gui-subs.c:487 app/keys.c:705 app/sample-editor.c:1416 +#: app/sample-editor.c:1553 app/sample-editor.c:1768 msgid "Cancel" msgstr "" @@ -1145,7 +1157,7 @@ msgid "Linear" msgstr "" -#: app/module-info.c:117 app/sample-editor.c:203 +#: app/module-info.c:117 app/sample-editor.c:204 msgid "Amiga" msgstr "" @@ -1183,147 +1195,147 @@ "home directory to store configuration files.\n" msgstr "" -#: app/sample-editor.c:202 +#: app/sample-editor.c:203 msgid "No loop" msgstr "" -#: app/sample-editor.c:204 +#: app/sample-editor.c:205 msgid "PingPong" msgstr "" -#: app/sample-editor.c:208 +#: app/sample-editor.c:209 msgid "8 bits" msgstr "" -#: app/sample-editor.c:209 +#: app/sample-editor.c:210 msgid "16 bits" msgstr "" -#: app/sample-editor.c:215 +#: app/sample-editor.c:216 msgid "Sample Editor" msgstr "" -#: app/sample-editor.c:255 +#: app/sample-editor.c:256 msgid "Volume" msgstr "" -#: app/sample-editor.c:256 +#: app/sample-editor.c:257 msgid "Panning" msgstr "" -#: app/sample-editor.c:257 +#: app/sample-editor.c:258 msgid "Finetune" msgstr "" -#: app/sample-editor.c:277 +#: app/sample-editor.c:278 msgid "Selection:" msgstr "" -#: app/sample-editor.c:281 app/track-editor.c:170 app/track-editor.c:180 +#: app/sample-editor.c:282 app/track-editor.c:170 app/track-editor.c:180 msgid "None" msgstr "" -#: app/sample-editor.c:287 +#: app/sample-editor.c:288 msgid "All" msgstr "" -#: app/sample-editor.c:308 +#: app/sample-editor.c:309 msgid "Length:" msgstr "" -#: app/sample-editor.c:324 +#: app/sample-editor.c:325 msgid "Set as loop" msgstr "" -#: app/sample-editor.c:332 +#: app/sample-editor.c:333 msgid "RelNote" msgstr "" -#: app/sample-editor.c:343 +#: app/sample-editor.c:344 msgid "Load Sample..." msgstr "" -#: app/sample-editor.c:345 +#: app/sample-editor.c:346 msgid "Save WAV..." msgstr "" -#: app/sample-editor.c:347 +#: app/sample-editor.c:348 msgid "Save region as WAV..." msgstr "" -#: app/sample-editor.c:360 +#: app/sample-editor.c:361 msgid "Save WAV" msgstr "" -#: app/sample-editor.c:370 +#: app/sample-editor.c:371 msgid "Save Region" msgstr "" -#: app/sample-editor.c:381 +#: app/sample-editor.c:382 msgid "Monitor" msgstr "" -#: app/sample-editor.c:387 +#: app/sample-editor.c:388 msgid "Volume Ramp" msgstr "" -#: app/sample-editor.c:397 +#: app/sample-editor.c:398 msgid "Zoom to selection" msgstr "" -#: app/sample-editor.c:403 +#: app/sample-editor.c:404 msgid "Show all" msgstr "" -#: app/sample-editor.c:409 +#: app/sample-editor.c:410 msgid "Zoom in (+50%)" msgstr "" -#: app/sample-editor.c:415 +#: app/sample-editor.c:416 msgid "Zoom out (-50%)" msgstr "" -#: app/sample-editor.c:421 +#: app/sample-editor.c:422 msgid "Reverse" msgstr "" -#: app/sample-editor.c:431 +#: app/sample-editor.c:432 msgid "Cut" msgstr "" -#: app/sample-editor.c:437 +#: app/sample-editor.c:438 msgid "Remove" msgstr "" -#: app/sample-editor.c:443 +#: app/sample-editor.c:444 msgid "Copy" msgstr "" -#: app/sample-editor.c:449 +#: app/sample-editor.c:450 msgid "Paste" msgstr "" -#: app/sample-editor.c:455 +#: app/sample-editor.c:456 msgid "Clear Sample" msgstr "" -#: app/sample-editor.c:505 +#: app/sample-editor.c:506 msgid "(no selection)" msgstr "" -#: app/sample-editor.c:1104 +#: app/sample-editor.c:1106 msgid "" msgstr "" -#: app/sample-editor.c:1221 app/sample-editor.c:1233 +#: app/sample-editor.c:1223 app/sample-editor.c:1235 msgid "Read error." msgstr "" -#: app/sample-editor.c:1370 +#: app/sample-editor.c:1372 msgid "Load stereo sample" msgstr "" -#: app/sample-editor.c:1378 +#: app/sample-editor.c:1380 msgid "" "You have selected a stereo sample!\n" "(SoundTracker can only handle mono samples!)\n" @@ -1331,23 +1343,23 @@ "Please choose which channel to load:" msgstr "" -#: app/sample-editor.c:1389 +#: app/sample-editor.c:1391 msgid "Left" msgstr "" -#: app/sample-editor.c:1395 +#: app/sample-editor.c:1397 msgid "Mix" msgstr "" -#: app/sample-editor.c:1401 +#: app/sample-editor.c:1403 msgid "Right" msgstr "" -#: app/sample-editor.c:1479 +#: app/sample-editor.c:1481 msgid "Load raw sample" msgstr "" -#: app/sample-editor.c:1487 +#: app/sample-editor.c:1489 msgid "" "You have selected a sample that is not\n" "in a known format. You can load the raw data now.\n" @@ -1355,79 +1367,79 @@ "Please choose a format:" msgstr "" -#: app/sample-editor.c:1513 +#: app/sample-editor.c:1515 msgid "Wortformat:" msgstr "" -#: app/sample-editor.c:1545 app/sample-editor.c:1751 +#: app/sample-editor.c:1547 app/sample-editor.c:1753 msgid "OK" msgstr "" -#: app/sample-editor.c:1591 +#: app/sample-editor.c:1593 msgid "Can't read sample" msgstr "" -#: app/sample-editor.c:1600 +#: app/sample-editor.c:1602 msgid "Sample is too long for current mixer module. Loading anyway." msgstr "" -#: app/sample-editor.c:1614 +#: app/sample-editor.c:1616 msgid "Can only handle 8 and 16 bit samples with up to 2 channels" msgstr "" -#: app/sample-editor.c:1724 +#: app/sample-editor.c:1726 msgid "Nothing to save." msgstr "" -#: app/sample-editor.c:1759 +#: app/sample-editor.c:1761 msgid "Start sampling" msgstr "" -#: app/sample-editor.c:1789 +#: app/sample-editor.c:1791 msgid "No sampling driver available" msgstr "" -#: app/sample-editor.c:1799 app/sample-editor.c:1802 +#: app/sample-editor.c:1801 app/sample-editor.c:1804 msgid "Sampling Window" msgstr "" -#: app/sample-editor.c:1902 +#: app/sample-editor.c:1904 msgid "" msgstr "" -#: app/sample-editor.c:1933 +#: app/sample-editor.c:1935 msgid "Recorded sample is too long for current mixer module. Using it anyway." msgstr "" -#: app/sample-editor.c:1986 +#: app/sample-editor.c:1988 msgid "Normalize" msgstr "" -#: app/sample-editor.c:1987 +#: app/sample-editor.c:1989 msgid "Execute" msgstr "" -#: app/sample-editor.c:1997 app/sample-editor.c:2000 +#: app/sample-editor.c:1999 app/sample-editor.c:2002 msgid "Volume Ramping" msgstr "" -#: app/sample-editor.c:2016 +#: app/sample-editor.c:2018 msgid "Perform linear volume fade on Selection" msgstr "" -#: app/sample-editor.c:2028 +#: app/sample-editor.c:2030 msgid "Left [%]:" msgstr "" -#: app/sample-editor.c:2031 app/sample-editor.c:2048 +#: app/sample-editor.c:2033 app/sample-editor.c:2050 msgid "H" msgstr "" -#: app/sample-editor.c:2037 app/sample-editor.c:2054 +#: app/sample-editor.c:2039 app/sample-editor.c:2056 msgid "D" msgstr "" -#: app/sample-editor.c:2045 +#: app/sample-editor.c:2047 msgid "Right [%]:" msgstr "" @@ -1479,6 +1491,12 @@ "You can assign samples of an instrument to the individual keys by\n" "activating its sample and then clicking on the keyboard in the\n" "instrument editor page." +msgstr "" + +#: app/tips-dialog.c:270 +msgid "" +"Is your cursor trapped in a number entry field?\n" +"Just press Return or Tab to free yourself!" msgstr "" #: app/track-editor.c:85 diff -urN soundtracker-0.6.3/soundtracker.spec soundtracker-0.6.4/soundtracker.spec --- soundtracker-0.6.3/soundtracker.spec Thu May 24 20:19:00 2001 +++ soundtracker-0.6.4/soundtracker.spec Sun Aug 12 12:07:12 2001 @@ -1,6 +1,6 @@ %define name soundtracker -%define version 0.6.3 -%define release 25 +%define version 0.6.4 +%define release 26 %define prefix /usr Summary: Sound modules editor/player @@ -26,8 +26,8 @@ %setup %build -LINGUAS="de es fr it pl ja ru sl" CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} -gmake +LINGUAS="de es fr gl it pl ja ru sl" CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --disable-alsa +make %install if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi